composer.lock 196 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. "hash": "1205c19862d30b1e5135fea732809a72",
  8. "content-hash": "ca089bd944842e20cdbdf556dad7c4f0",
  9. "packages": [
  10. {
  11. "name": "composer/ca-bundle",
  12. "version": "1.0.4",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/composer/ca-bundle.git",
  16. "reference": "ec21a59414b99501e723b63fd664aa8ead9c5680"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/ec21a59414b99501e723b63fd664aa8ead9c5680",
  21. "reference": "ec21a59414b99501e723b63fd664aa8ead9c5680",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "ext-openssl": "*",
  26. "ext-pcre": "*",
  27. "php": "^5.3.2 || ^7.0"
  28. },
  29. "require-dev": {
  30. "psr/log": "^1.0",
  31. "symfony/process": "^2.5 || ^3.0"
  32. },
  33. "suggest": {
  34. "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+"
  35. },
  36. "type": "library",
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "1.x-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "Composer\\CaBundle\\": "src"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Jordi Boggiano",
  54. "email": "j.boggiano@seld.be",
  55. "homepage": "http://seld.be"
  56. }
  57. ],
  58. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  59. "keywords": [
  60. "cabundle",
  61. "cacert",
  62. "certificate",
  63. "ssl",
  64. "tls"
  65. ],
  66. "time": "2016-09-04 19:00:06"
  67. },
  68. {
  69. "name": "composer/composer",
  70. "version": "dev-master",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/composer/composer.git",
  74. "reference": "0f2e89534d673c1e63e1eca6ca1807391ffdfeae"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/composer/composer/zipball/0f2e89534d673c1e63e1eca6ca1807391ffdfeae",
  79. "reference": "0f2e89534d673c1e63e1eca6ca1807391ffdfeae",
  80. "shasum": ""
  81. },
  82. "require": {
  83. "composer/ca-bundle": "^1.0",
  84. "composer/semver": "^1.0",
  85. "composer/spdx-licenses": "^1.0",
  86. "justinrainbow/json-schema": "^1.6 || ^2.0",
  87. "php": "^5.3.2 || ^7.0",
  88. "psr/log": "^1.0",
  89. "seld/cli-prompt": "^1.0",
  90. "seld/jsonlint": "^1.4",
  91. "seld/phar-utils": "^1.0",
  92. "symfony/console": "^2.5 || ^3.0",
  93. "symfony/filesystem": "^2.5 || ^3.0",
  94. "symfony/finder": "^2.2 || ^3.0",
  95. "symfony/process": "^2.1 || ^3.0"
  96. },
  97. "require-dev": {
  98. "phpunit/phpunit": "^4.5 || ^5.0.5",
  99. "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
  100. },
  101. "suggest": {
  102. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  103. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  104. "ext-zlib": "Allow gzip compression of HTTP requests"
  105. },
  106. "bin": [
  107. "bin/composer"
  108. ],
  109. "type": "library",
  110. "extra": {
  111. "branch-alias": {
  112. "dev-master": "1.2-dev"
  113. }
  114. },
  115. "autoload": {
  116. "psr-4": {
  117. "Composer\\": "src/Composer"
  118. }
  119. },
  120. "notification-url": "https://packagist.org/downloads/",
  121. "license": [
  122. "MIT"
  123. ],
  124. "authors": [
  125. {
  126. "name": "Nils Adermann",
  127. "email": "naderman@naderman.de",
  128. "homepage": "http://www.naderman.de"
  129. },
  130. {
  131. "name": "Jordi Boggiano",
  132. "email": "j.boggiano@seld.be",
  133. "homepage": "http://seld.be"
  134. }
  135. ],
  136. "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
  137. "homepage": "https://getcomposer.org/",
  138. "keywords": [
  139. "autoload",
  140. "dependency",
  141. "package"
  142. ],
  143. "time": "2016-09-08 10:35:48"
  144. },
  145. {
  146. "name": "composer/semver",
  147. "version": "1.4.2",
  148. "source": {
  149. "type": "git",
  150. "url": "https://github.com/composer/semver.git",
  151. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  152. },
  153. "dist": {
  154. "type": "zip",
  155. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  156. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  157. "shasum": ""
  158. },
  159. "require": {
  160. "php": "^5.3.2 || ^7.0"
  161. },
  162. "require-dev": {
  163. "phpunit/phpunit": "^4.5 || ^5.0.5",
  164. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  165. },
  166. "type": "library",
  167. "extra": {
  168. "branch-alias": {
  169. "dev-master": "1.x-dev"
  170. }
  171. },
  172. "autoload": {
  173. "psr-4": {
  174. "Composer\\Semver\\": "src"
  175. }
  176. },
  177. "notification-url": "https://packagist.org/downloads/",
  178. "license": [
  179. "MIT"
  180. ],
  181. "authors": [
  182. {
  183. "name": "Nils Adermann",
  184. "email": "naderman@naderman.de",
  185. "homepage": "http://www.naderman.de"
  186. },
  187. {
  188. "name": "Jordi Boggiano",
  189. "email": "j.boggiano@seld.be",
  190. "homepage": "http://seld.be"
  191. },
  192. {
  193. "name": "Rob Bast",
  194. "email": "rob.bast@gmail.com",
  195. "homepage": "http://robbast.nl"
  196. }
  197. ],
  198. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  199. "keywords": [
  200. "semantic",
  201. "semver",
  202. "validation",
  203. "versioning"
  204. ],
  205. "time": "2016-08-30 16:08:34"
  206. },
  207. {
  208. "name": "composer/spdx-licenses",
  209. "version": "1.1.4",
  210. "source": {
  211. "type": "git",
  212. "url": "https://github.com/composer/spdx-licenses.git",
  213. "reference": "88c26372b1afac36d8db601cdf04ad8716f53d88"
  214. },
  215. "dist": {
  216. "type": "zip",
  217. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/88c26372b1afac36d8db601cdf04ad8716f53d88",
  218. "reference": "88c26372b1afac36d8db601cdf04ad8716f53d88",
  219. "shasum": ""
  220. },
  221. "require": {
  222. "php": "^5.3.2 || ^7.0"
  223. },
  224. "require-dev": {
  225. "phpunit/phpunit": "^4.5 || ^5.0.5",
  226. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  227. },
  228. "type": "library",
  229. "extra": {
  230. "branch-alias": {
  231. "dev-master": "1.x-dev"
  232. }
  233. },
  234. "autoload": {
  235. "psr-4": {
  236. "Composer\\Spdx\\": "src"
  237. }
  238. },
  239. "notification-url": "https://packagist.org/downloads/",
  240. "license": [
  241. "MIT"
  242. ],
  243. "authors": [
  244. {
  245. "name": "Nils Adermann",
  246. "email": "naderman@naderman.de",
  247. "homepage": "http://www.naderman.de"
  248. },
  249. {
  250. "name": "Jordi Boggiano",
  251. "email": "j.boggiano@seld.be",
  252. "homepage": "http://seld.be"
  253. },
  254. {
  255. "name": "Rob Bast",
  256. "email": "rob.bast@gmail.com",
  257. "homepage": "http://robbast.nl"
  258. }
  259. ],
  260. "description": "SPDX licenses list and validation library.",
  261. "keywords": [
  262. "license",
  263. "spdx",
  264. "validator"
  265. ],
  266. "time": "2016-05-04 12:27:30"
  267. },
  268. {
  269. "name": "container-interop/container-interop",
  270. "version": "1.1.0",
  271. "source": {
  272. "type": "git",
  273. "url": "https://github.com/container-interop/container-interop.git",
  274. "reference": "fc08354828f8fd3245f77a66b9e23a6bca48297e"
  275. },
  276. "dist": {
  277. "type": "zip",
  278. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/fc08354828f8fd3245f77a66b9e23a6bca48297e",
  279. "reference": "fc08354828f8fd3245f77a66b9e23a6bca48297e",
  280. "shasum": ""
  281. },
  282. "type": "library",
  283. "autoload": {
  284. "psr-4": {
  285. "Interop\\Container\\": "src/Interop/Container/"
  286. }
  287. },
  288. "notification-url": "https://packagist.org/downloads/",
  289. "license": [
  290. "MIT"
  291. ],
  292. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  293. "time": "2014-12-30 15:22:37"
  294. },
  295. {
  296. "name": "doctrine/annotations",
  297. "version": "v1.2.7",
  298. "source": {
  299. "type": "git",
  300. "url": "https://github.com/doctrine/annotations.git",
  301. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  302. },
  303. "dist": {
  304. "type": "zip",
  305. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  306. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  307. "shasum": ""
  308. },
  309. "require": {
  310. "doctrine/lexer": "1.*",
  311. "php": ">=5.3.2"
  312. },
  313. "require-dev": {
  314. "doctrine/cache": "1.*",
  315. "phpunit/phpunit": "4.*"
  316. },
  317. "type": "library",
  318. "extra": {
  319. "branch-alias": {
  320. "dev-master": "1.3.x-dev"
  321. }
  322. },
  323. "autoload": {
  324. "psr-0": {
  325. "Doctrine\\Common\\Annotations\\": "lib/"
  326. }
  327. },
  328. "notification-url": "https://packagist.org/downloads/",
  329. "license": [
  330. "MIT"
  331. ],
  332. "authors": [
  333. {
  334. "name": "Roman Borschel",
  335. "email": "roman@code-factory.org"
  336. },
  337. {
  338. "name": "Benjamin Eberlei",
  339. "email": "kontakt@beberlei.de"
  340. },
  341. {
  342. "name": "Guilherme Blanco",
  343. "email": "guilhermeblanco@gmail.com"
  344. },
  345. {
  346. "name": "Jonathan Wage",
  347. "email": "jonwage@gmail.com"
  348. },
  349. {
  350. "name": "Johannes Schmitt",
  351. "email": "schmittjoh@gmail.com"
  352. }
  353. ],
  354. "description": "Docblock Annotations Parser",
  355. "homepage": "http://www.doctrine-project.org",
  356. "keywords": [
  357. "annotations",
  358. "docblock",
  359. "parser"
  360. ],
  361. "time": "2015-08-31 12:32:49"
  362. },
  363. {
  364. "name": "doctrine/cache",
  365. "version": "v1.6.0",
  366. "source": {
  367. "type": "git",
  368. "url": "https://github.com/doctrine/cache.git",
  369. "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6"
  370. },
  371. "dist": {
  372. "type": "zip",
  373. "url": "https://api.github.com/repos/doctrine/cache/zipball/f8af318d14bdb0eff0336795b428b547bd39ccb6",
  374. "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6",
  375. "shasum": ""
  376. },
  377. "require": {
  378. "php": "~5.5|~7.0"
  379. },
  380. "conflict": {
  381. "doctrine/common": ">2.2,<2.4"
  382. },
  383. "require-dev": {
  384. "phpunit/phpunit": "~4.8|~5.0",
  385. "predis/predis": "~1.0",
  386. "satooshi/php-coveralls": "~0.6"
  387. },
  388. "type": "library",
  389. "extra": {
  390. "branch-alias": {
  391. "dev-master": "1.6.x-dev"
  392. }
  393. },
  394. "autoload": {
  395. "psr-4": {
  396. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  397. }
  398. },
  399. "notification-url": "https://packagist.org/downloads/",
  400. "license": [
  401. "MIT"
  402. ],
  403. "authors": [
  404. {
  405. "name": "Roman Borschel",
  406. "email": "roman@code-factory.org"
  407. },
  408. {
  409. "name": "Benjamin Eberlei",
  410. "email": "kontakt@beberlei.de"
  411. },
  412. {
  413. "name": "Guilherme Blanco",
  414. "email": "guilhermeblanco@gmail.com"
  415. },
  416. {
  417. "name": "Jonathan Wage",
  418. "email": "jonwage@gmail.com"
  419. },
  420. {
  421. "name": "Johannes Schmitt",
  422. "email": "schmittjoh@gmail.com"
  423. }
  424. ],
  425. "description": "Caching library offering an object-oriented API for many cache backends",
  426. "homepage": "http://www.doctrine-project.org",
  427. "keywords": [
  428. "cache",
  429. "caching"
  430. ],
  431. "time": "2015-12-31 16:37:02"
  432. },
  433. {
  434. "name": "doctrine/collections",
  435. "version": "v1.3.0",
  436. "source": {
  437. "type": "git",
  438. "url": "https://github.com/doctrine/collections.git",
  439. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a"
  440. },
  441. "dist": {
  442. "type": "zip",
  443. "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  444. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  445. "shasum": ""
  446. },
  447. "require": {
  448. "php": ">=5.3.2"
  449. },
  450. "require-dev": {
  451. "phpunit/phpunit": "~4.0"
  452. },
  453. "type": "library",
  454. "extra": {
  455. "branch-alias": {
  456. "dev-master": "1.2.x-dev"
  457. }
  458. },
  459. "autoload": {
  460. "psr-0": {
  461. "Doctrine\\Common\\Collections\\": "lib/"
  462. }
  463. },
  464. "notification-url": "https://packagist.org/downloads/",
  465. "license": [
  466. "MIT"
  467. ],
  468. "authors": [
  469. {
  470. "name": "Roman Borschel",
  471. "email": "roman@code-factory.org"
  472. },
  473. {
  474. "name": "Benjamin Eberlei",
  475. "email": "kontakt@beberlei.de"
  476. },
  477. {
  478. "name": "Guilherme Blanco",
  479. "email": "guilhermeblanco@gmail.com"
  480. },
  481. {
  482. "name": "Jonathan Wage",
  483. "email": "jonwage@gmail.com"
  484. },
  485. {
  486. "name": "Johannes Schmitt",
  487. "email": "schmittjoh@gmail.com"
  488. }
  489. ],
  490. "description": "Collections Abstraction library",
  491. "homepage": "http://www.doctrine-project.org",
  492. "keywords": [
  493. "array",
  494. "collections",
  495. "iterator"
  496. ],
  497. "time": "2015-04-14 22:21:58"
  498. },
  499. {
  500. "name": "doctrine/common",
  501. "version": "v2.6.1",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/doctrine/common.git",
  505. "reference": "a579557bc689580c19fee4e27487a67fe60defc0"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/doctrine/common/zipball/a579557bc689580c19fee4e27487a67fe60defc0",
  510. "reference": "a579557bc689580c19fee4e27487a67fe60defc0",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "doctrine/annotations": "1.*",
  515. "doctrine/cache": "1.*",
  516. "doctrine/collections": "1.*",
  517. "doctrine/inflector": "1.*",
  518. "doctrine/lexer": "1.*",
  519. "php": "~5.5|~7.0"
  520. },
  521. "require-dev": {
  522. "phpunit/phpunit": "~4.8|~5.0"
  523. },
  524. "type": "library",
  525. "extra": {
  526. "branch-alias": {
  527. "dev-master": "2.7.x-dev"
  528. }
  529. },
  530. "autoload": {
  531. "psr-4": {
  532. "Doctrine\\Common\\": "lib/Doctrine/Common"
  533. }
  534. },
  535. "notification-url": "https://packagist.org/downloads/",
  536. "license": [
  537. "MIT"
  538. ],
  539. "authors": [
  540. {
  541. "name": "Roman Borschel",
  542. "email": "roman@code-factory.org"
  543. },
  544. {
  545. "name": "Benjamin Eberlei",
  546. "email": "kontakt@beberlei.de"
  547. },
  548. {
  549. "name": "Guilherme Blanco",
  550. "email": "guilhermeblanco@gmail.com"
  551. },
  552. {
  553. "name": "Jonathan Wage",
  554. "email": "jonwage@gmail.com"
  555. },
  556. {
  557. "name": "Johannes Schmitt",
  558. "email": "schmittjoh@gmail.com"
  559. }
  560. ],
  561. "description": "Common Library for Doctrine projects",
  562. "homepage": "http://www.doctrine-project.org",
  563. "keywords": [
  564. "annotations",
  565. "collections",
  566. "eventmanager",
  567. "persistence",
  568. "spl"
  569. ],
  570. "time": "2015-12-25 13:18:31"
  571. },
  572. {
  573. "name": "doctrine/dbal",
  574. "version": "v2.5.5",
  575. "source": {
  576. "type": "git",
  577. "url": "https://github.com/doctrine/dbal.git",
  578. "reference": "9f8c05cd5225a320d56d4bfdb4772f10d045a0c9"
  579. },
  580. "dist": {
  581. "type": "zip",
  582. "url": "https://api.github.com/repos/doctrine/dbal/zipball/9f8c05cd5225a320d56d4bfdb4772f10d045a0c9",
  583. "reference": "9f8c05cd5225a320d56d4bfdb4772f10d045a0c9",
  584. "shasum": ""
  585. },
  586. "require": {
  587. "doctrine/common": ">=2.4,<2.7-dev",
  588. "php": ">=5.3.2"
  589. },
  590. "require-dev": {
  591. "phpunit/phpunit": "4.*",
  592. "symfony/console": "2.*||^3.0"
  593. },
  594. "suggest": {
  595. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  596. },
  597. "bin": [
  598. "bin/doctrine-dbal"
  599. ],
  600. "type": "library",
  601. "extra": {
  602. "branch-alias": {
  603. "dev-master": "2.5.x-dev"
  604. }
  605. },
  606. "autoload": {
  607. "psr-0": {
  608. "Doctrine\\DBAL\\": "lib/"
  609. }
  610. },
  611. "notification-url": "https://packagist.org/downloads/",
  612. "license": [
  613. "MIT"
  614. ],
  615. "authors": [
  616. {
  617. "name": "Roman Borschel",
  618. "email": "roman@code-factory.org"
  619. },
  620. {
  621. "name": "Benjamin Eberlei",
  622. "email": "kontakt@beberlei.de"
  623. },
  624. {
  625. "name": "Guilherme Blanco",
  626. "email": "guilhermeblanco@gmail.com"
  627. },
  628. {
  629. "name": "Jonathan Wage",
  630. "email": "jonwage@gmail.com"
  631. }
  632. ],
  633. "description": "Database Abstraction Layer",
  634. "homepage": "http://www.doctrine-project.org",
  635. "keywords": [
  636. "database",
  637. "dbal",
  638. "persistence",
  639. "queryobject"
  640. ],
  641. "time": "2016-09-09 19:13:33"
  642. },
  643. {
  644. "name": "doctrine/doctrine-bundle",
  645. "version": "1.6.4",
  646. "source": {
  647. "type": "git",
  648. "url": "https://github.com/doctrine/DoctrineBundle.git",
  649. "reference": "dd40b0a7fb16658cda9def9786992b8df8a49be7"
  650. },
  651. "dist": {
  652. "type": "zip",
  653. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/dd40b0a7fb16658cda9def9786992b8df8a49be7",
  654. "reference": "dd40b0a7fb16658cda9def9786992b8df8a49be7",
  655. "shasum": ""
  656. },
  657. "require": {
  658. "doctrine/dbal": "~2.3",
  659. "doctrine/doctrine-cache-bundle": "~1.0",
  660. "jdorn/sql-formatter": "~1.1",
  661. "php": ">=5.3.2",
  662. "symfony/console": "~2.3|~3.0",
  663. "symfony/dependency-injection": "~2.3|~3.0",
  664. "symfony/doctrine-bridge": "~2.2|~3.0",
  665. "symfony/framework-bundle": "~2.3|~3.0"
  666. },
  667. "require-dev": {
  668. "doctrine/orm": "~2.3",
  669. "phpunit/phpunit": "~4",
  670. "satooshi/php-coveralls": "~0.6.1",
  671. "symfony/phpunit-bridge": "~2.7|~3.0",
  672. "symfony/property-info": "~2.8|~3.0",
  673. "symfony/validator": "~2.2|~3.0",
  674. "symfony/yaml": "~2.2|~3.0",
  675. "twig/twig": "~1.10"
  676. },
  677. "suggest": {
  678. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  679. "symfony/web-profiler-bundle": "To use the data collector."
  680. },
  681. "type": "symfony-bundle",
  682. "extra": {
  683. "branch-alias": {
  684. "dev-master": "1.6.x-dev"
  685. }
  686. },
  687. "autoload": {
  688. "psr-4": {
  689. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  690. }
  691. },
  692. "notification-url": "https://packagist.org/downloads/",
  693. "license": [
  694. "MIT"
  695. ],
  696. "authors": [
  697. {
  698. "name": "Symfony Community",
  699. "homepage": "http://symfony.com/contributors"
  700. },
  701. {
  702. "name": "Benjamin Eberlei",
  703. "email": "kontakt@beberlei.de"
  704. },
  705. {
  706. "name": "Doctrine Project",
  707. "homepage": "http://www.doctrine-project.org/"
  708. },
  709. {
  710. "name": "Fabien Potencier",
  711. "email": "fabien@symfony.com"
  712. }
  713. ],
  714. "description": "Symfony DoctrineBundle",
  715. "homepage": "http://www.doctrine-project.org",
  716. "keywords": [
  717. "database",
  718. "dbal",
  719. "orm",
  720. "persistence"
  721. ],
  722. "time": "2016-08-10 15:35:22"
  723. },
  724. {
  725. "name": "doctrine/doctrine-cache-bundle",
  726. "version": "1.3.0",
  727. "source": {
  728. "type": "git",
  729. "url": "https://github.com/doctrine/DoctrineCacheBundle.git",
  730. "reference": "18c600a9b82f6454d2e81ca4957cdd56a1cf3504"
  731. },
  732. "dist": {
  733. "type": "zip",
  734. "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/18c600a9b82f6454d2e81ca4957cdd56a1cf3504",
  735. "reference": "18c600a9b82f6454d2e81ca4957cdd56a1cf3504",
  736. "shasum": ""
  737. },
  738. "require": {
  739. "doctrine/cache": "^1.4.2",
  740. "doctrine/inflector": "~1.0",
  741. "php": ">=5.3.2",
  742. "symfony/doctrine-bridge": "~2.2|~3.0"
  743. },
  744. "require-dev": {
  745. "instaclick/coding-standard": "~1.1",
  746. "instaclick/object-calisthenics-sniffs": "dev-master",
  747. "instaclick/symfony2-coding-standard": "dev-remaster",
  748. "phpunit/phpunit": "~4",
  749. "predis/predis": "~0.8",
  750. "satooshi/php-coveralls": "~0.6.1",
  751. "squizlabs/php_codesniffer": "~1.5",
  752. "symfony/console": "~2.2|~3.0",
  753. "symfony/finder": "~2.2|~3.0",
  754. "symfony/framework-bundle": "~2.2|~3.0",
  755. "symfony/phpunit-bridge": "~2.7|~3.0",
  756. "symfony/security-acl": "~2.3|~3.0",
  757. "symfony/validator": "~2.2|~3.0",
  758. "symfony/yaml": "~2.2|~3.0"
  759. },
  760. "suggest": {
  761. "symfony/security-acl": "For using this bundle to cache ACLs"
  762. },
  763. "type": "symfony-bundle",
  764. "extra": {
  765. "branch-alias": {
  766. "dev-master": "1.2.x-dev"
  767. }
  768. },
  769. "autoload": {
  770. "psr-4": {
  771. "Doctrine\\Bundle\\DoctrineCacheBundle\\": ""
  772. }
  773. },
  774. "notification-url": "https://packagist.org/downloads/",
  775. "license": [
  776. "MIT"
  777. ],
  778. "authors": [
  779. {
  780. "name": "Symfony Community",
  781. "homepage": "http://symfony.com/contributors"
  782. },
  783. {
  784. "name": "Benjamin Eberlei",
  785. "email": "kontakt@beberlei.de"
  786. },
  787. {
  788. "name": "Fabio B. Silva",
  789. "email": "fabio.bat.silva@gmail.com"
  790. },
  791. {
  792. "name": "Guilherme Blanco",
  793. "email": "guilhermeblanco@hotmail.com"
  794. },
  795. {
  796. "name": "Doctrine Project",
  797. "homepage": "http://www.doctrine-project.org/"
  798. },
  799. {
  800. "name": "Fabien Potencier",
  801. "email": "fabien@symfony.com"
  802. }
  803. ],
  804. "description": "Symfony Bundle for Doctrine Cache",
  805. "homepage": "http://www.doctrine-project.org",
  806. "keywords": [
  807. "cache",
  808. "caching"
  809. ],
  810. "time": "2016-01-26 17:28:51"
  811. },
  812. {
  813. "name": "doctrine/inflector",
  814. "version": "v1.1.0",
  815. "source": {
  816. "type": "git",
  817. "url": "https://github.com/doctrine/inflector.git",
  818. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
  819. },
  820. "dist": {
  821. "type": "zip",
  822. "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae",
  823. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
  824. "shasum": ""
  825. },
  826. "require": {
  827. "php": ">=5.3.2"
  828. },
  829. "require-dev": {
  830. "phpunit/phpunit": "4.*"
  831. },
  832. "type": "library",
  833. "extra": {
  834. "branch-alias": {
  835. "dev-master": "1.1.x-dev"
  836. }
  837. },
  838. "autoload": {
  839. "psr-0": {
  840. "Doctrine\\Common\\Inflector\\": "lib/"
  841. }
  842. },
  843. "notification-url": "https://packagist.org/downloads/",
  844. "license": [
  845. "MIT"
  846. ],
  847. "authors": [
  848. {
  849. "name": "Roman Borschel",
  850. "email": "roman@code-factory.org"
  851. },
  852. {
  853. "name": "Benjamin Eberlei",
  854. "email": "kontakt@beberlei.de"
  855. },
  856. {
  857. "name": "Guilherme Blanco",
  858. "email": "guilhermeblanco@gmail.com"
  859. },
  860. {
  861. "name": "Jonathan Wage",
  862. "email": "jonwage@gmail.com"
  863. },
  864. {
  865. "name": "Johannes Schmitt",
  866. "email": "schmittjoh@gmail.com"
  867. }
  868. ],
  869. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  870. "homepage": "http://www.doctrine-project.org",
  871. "keywords": [
  872. "inflection",
  873. "pluralize",
  874. "singularize",
  875. "string"
  876. ],
  877. "time": "2015-11-06 14:35:42"
  878. },
  879. {
  880. "name": "doctrine/instantiator",
  881. "version": "1.0.5",
  882. "source": {
  883. "type": "git",
  884. "url": "https://github.com/doctrine/instantiator.git",
  885. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  886. },
  887. "dist": {
  888. "type": "zip",
  889. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  890. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  891. "shasum": ""
  892. },
  893. "require": {
  894. "php": ">=5.3,<8.0-DEV"
  895. },
  896. "require-dev": {
  897. "athletic/athletic": "~0.1.8",
  898. "ext-pdo": "*",
  899. "ext-phar": "*",
  900. "phpunit/phpunit": "~4.0",
  901. "squizlabs/php_codesniffer": "~2.0"
  902. },
  903. "type": "library",
  904. "extra": {
  905. "branch-alias": {
  906. "dev-master": "1.0.x-dev"
  907. }
  908. },
  909. "autoload": {
  910. "psr-4": {
  911. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  912. }
  913. },
  914. "notification-url": "https://packagist.org/downloads/",
  915. "license": [
  916. "MIT"
  917. ],
  918. "authors": [
  919. {
  920. "name": "Marco Pivetta",
  921. "email": "ocramius@gmail.com",
  922. "homepage": "http://ocramius.github.com/"
  923. }
  924. ],
  925. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  926. "homepage": "https://github.com/doctrine/instantiator",
  927. "keywords": [
  928. "constructor",
  929. "instantiate"
  930. ],
  931. "time": "2015-06-14 21:17:01"
  932. },
  933. {
  934. "name": "doctrine/lexer",
  935. "version": "v1.0.1",
  936. "source": {
  937. "type": "git",
  938. "url": "https://github.com/doctrine/lexer.git",
  939. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  940. },
  941. "dist": {
  942. "type": "zip",
  943. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  944. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  945. "shasum": ""
  946. },
  947. "require": {
  948. "php": ">=5.3.2"
  949. },
  950. "type": "library",
  951. "extra": {
  952. "branch-alias": {
  953. "dev-master": "1.0.x-dev"
  954. }
  955. },
  956. "autoload": {
  957. "psr-0": {
  958. "Doctrine\\Common\\Lexer\\": "lib/"
  959. }
  960. },
  961. "notification-url": "https://packagist.org/downloads/",
  962. "license": [
  963. "MIT"
  964. ],
  965. "authors": [
  966. {
  967. "name": "Roman Borschel",
  968. "email": "roman@code-factory.org"
  969. },
  970. {
  971. "name": "Guilherme Blanco",
  972. "email": "guilhermeblanco@gmail.com"
  973. },
  974. {
  975. "name": "Johannes Schmitt",
  976. "email": "schmittjoh@gmail.com"
  977. }
  978. ],
  979. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  980. "homepage": "http://www.doctrine-project.org",
  981. "keywords": [
  982. "lexer",
  983. "parser"
  984. ],
  985. "time": "2014-09-09 13:34:57"
  986. },
  987. {
  988. "name": "doctrine/orm",
  989. "version": "v2.5.4",
  990. "source": {
  991. "type": "git",
  992. "url": "https://github.com/doctrine/doctrine2.git",
  993. "reference": "bc4ddbfb0114cb33438cc811c9a740d8aa304aab"
  994. },
  995. "dist": {
  996. "type": "zip",
  997. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/bc4ddbfb0114cb33438cc811c9a740d8aa304aab",
  998. "reference": "bc4ddbfb0114cb33438cc811c9a740d8aa304aab",
  999. "shasum": ""
  1000. },
  1001. "require": {
  1002. "doctrine/cache": "~1.4",
  1003. "doctrine/collections": "~1.2",
  1004. "doctrine/common": ">=2.5-dev,<2.7-dev",
  1005. "doctrine/dbal": ">=2.5-dev,<2.6-dev",
  1006. "doctrine/instantiator": "~1.0.1",
  1007. "ext-pdo": "*",
  1008. "php": ">=5.4",
  1009. "symfony/console": "~2.5|~3.0"
  1010. },
  1011. "require-dev": {
  1012. "phpunit/phpunit": "~4.0",
  1013. "symfony/yaml": "~2.3|~3.0"
  1014. },
  1015. "suggest": {
  1016. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1017. },
  1018. "bin": [
  1019. "bin/doctrine",
  1020. "bin/doctrine.php"
  1021. ],
  1022. "type": "library",
  1023. "extra": {
  1024. "branch-alias": {
  1025. "dev-master": "2.6.x-dev"
  1026. }
  1027. },
  1028. "autoload": {
  1029. "psr-0": {
  1030. "Doctrine\\ORM\\": "lib/"
  1031. }
  1032. },
  1033. "notification-url": "https://packagist.org/downloads/",
  1034. "license": [
  1035. "MIT"
  1036. ],
  1037. "authors": [
  1038. {
  1039. "name": "Roman Borschel",
  1040. "email": "roman@code-factory.org"
  1041. },
  1042. {
  1043. "name": "Benjamin Eberlei",
  1044. "email": "kontakt@beberlei.de"
  1045. },
  1046. {
  1047. "name": "Guilherme Blanco",
  1048. "email": "guilhermeblanco@gmail.com"
  1049. },
  1050. {
  1051. "name": "Jonathan Wage",
  1052. "email": "jonwage@gmail.com"
  1053. }
  1054. ],
  1055. "description": "Object-Relational-Mapper for PHP",
  1056. "homepage": "http://www.doctrine-project.org",
  1057. "keywords": [
  1058. "database",
  1059. "orm"
  1060. ],
  1061. "time": "2016-01-05 21:34:58"
  1062. },
  1063. {
  1064. "name": "ezyang/htmlpurifier",
  1065. "version": "v4.8.0",
  1066. "source": {
  1067. "type": "git",
  1068. "url": "https://github.com/ezyang/htmlpurifier.git",
  1069. "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2"
  1070. },
  1071. "dist": {
  1072. "type": "zip",
  1073. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2",
  1074. "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2",
  1075. "shasum": ""
  1076. },
  1077. "require": {
  1078. "php": ">=5.2"
  1079. },
  1080. "type": "library",
  1081. "autoload": {
  1082. "psr-0": {
  1083. "HTMLPurifier": "library/"
  1084. },
  1085. "files": [
  1086. "library/HTMLPurifier.composer.php"
  1087. ]
  1088. },
  1089. "notification-url": "https://packagist.org/downloads/",
  1090. "license": [
  1091. "LGPL"
  1092. ],
  1093. "authors": [
  1094. {
  1095. "name": "Edward Z. Yang",
  1096. "email": "admin@htmlpurifier.org",
  1097. "homepage": "http://ezyang.com"
  1098. }
  1099. ],
  1100. "description": "Standards compliant HTML filter written in PHP",
  1101. "homepage": "http://htmlpurifier.org/",
  1102. "keywords": [
  1103. "html"
  1104. ],
  1105. "time": "2016-07-16 12:58:58"
  1106. },
  1107. {
  1108. "name": "friendsofsymfony/user-bundle",
  1109. "version": "dev-master",
  1110. "source": {
  1111. "type": "git",
  1112. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle.git",
  1113. "reference": "528f0a93aebb641a0bc6471cc24562fbd01432cb"
  1114. },
  1115. "dist": {
  1116. "type": "zip",
  1117. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/528f0a93aebb641a0bc6471cc24562fbd01432cb",
  1118. "reference": "528f0a93aebb641a0bc6471cc24562fbd01432cb",
  1119. "shasum": ""
  1120. },
  1121. "require": {
  1122. "php": ">=5.3.9",
  1123. "symfony/form": "~2.3|~3.0",
  1124. "symfony/framework-bundle": "~2.3|~3.0",
  1125. "symfony/security-bundle": "~2.3|~3.0",
  1126. "symfony/twig-bundle": "~2.3|~3.0"
  1127. },
  1128. "conflict": {
  1129. "symfony/doctrine-bridge": "<2.3"
  1130. },
  1131. "require-dev": {
  1132. "doctrine/doctrine-bundle": "~1.3",
  1133. "swiftmailer/swiftmailer": "~4.3|~5",
  1134. "symfony/console": "~2.3|~3.0",
  1135. "symfony/phpunit-bridge": "~2.7|~3.0",
  1136. "symfony/validator": "~2.3|~3.0",
  1137. "symfony/yaml": "~2.3|~3.0",
  1138. "willdurand/propel-typehintable-behavior": "~1.0"
  1139. },
  1140. "suggest": {
  1141. "willdurand/propel-typehintable-behavior": "Needed when using the propel implementation"
  1142. },
  1143. "type": "symfony-bundle",
  1144. "extra": {
  1145. "branch-alias": {
  1146. "dev-master": "2.0.x-dev"
  1147. }
  1148. },
  1149. "autoload": {
  1150. "psr-4": {
  1151. "FOS\\UserBundle\\": ""
  1152. }
  1153. },
  1154. "notification-url": "https://packagist.org/downloads/",
  1155. "license": [
  1156. "MIT"
  1157. ],
  1158. "authors": [
  1159. {
  1160. "name": "Christophe Coevoet",
  1161. "email": "stof@notk.org"
  1162. },
  1163. {
  1164. "name": "FriendsOfSymfony Community",
  1165. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  1166. },
  1167. {
  1168. "name": "Thibault Duplessis",
  1169. "email": "thibault.duplessis@gmail.com"
  1170. }
  1171. ],
  1172. "description": "Symfony FOSUserBundle",
  1173. "homepage": "http://friendsofsymfony.github.com",
  1174. "keywords": [
  1175. "User management"
  1176. ],
  1177. "time": "2016-09-09 10:00:40"
  1178. },
  1179. {
  1180. "name": "hwi/oauth-bundle",
  1181. "version": "0.4.2",
  1182. "source": {
  1183. "type": "git",
  1184. "url": "https://github.com/hwi/HWIOAuthBundle.git",
  1185. "reference": "2554f2b2947d1614d9e8b04800967b175b0afd8a"
  1186. },
  1187. "dist": {
  1188. "type": "zip",
  1189. "url": "https://api.github.com/repos/hwi/HWIOAuthBundle/zipball/2554f2b2947d1614d9e8b04800967b175b0afd8a",
  1190. "reference": "2554f2b2947d1614d9e8b04800967b175b0afd8a",
  1191. "shasum": ""
  1192. },
  1193. "require": {
  1194. "kriswallsmith/buzz": "~0.13",
  1195. "php": ">=5.3.3",
  1196. "symfony/form": "~2.3",
  1197. "symfony/framework-bundle": "~2.3",
  1198. "symfony/options-resolver": "~2.3",
  1199. "symfony/security-bundle": "~2.3",
  1200. "symfony/yaml": "~2.3"
  1201. },
  1202. "conflict": {
  1203. "twig/twig": "<1.12"
  1204. },
  1205. "require-dev": {
  1206. "doctrine/orm": "~2.3",
  1207. "friendsofsymfony/user-bundle": "~1.3|~2.0",
  1208. "phpunit/phpunit": "~4.8|~5.0",
  1209. "symfony/phpunit-bridge": "~2.7",
  1210. "symfony/property-access": "~2.3",
  1211. "symfony/twig-bundle": "~2.3",
  1212. "symfony/validator": "~2.3"
  1213. },
  1214. "suggest": {
  1215. "doctrine/doctrine-bundle": "to use Doctrine user provider",
  1216. "friendsofsymfony/user-bundle": "to connect FOSUB with this bundle",
  1217. "symfony/property-access": "to use FOSUB integration with this bundle",
  1218. "symfony/twig-bundle": "to use the Twig hwi_oauth_* functions"
  1219. },
  1220. "type": "symfony-bundle",
  1221. "extra": {
  1222. "branch-alias": {
  1223. "dev-master": "0.4-dev"
  1224. }
  1225. },
  1226. "autoload": {
  1227. "psr-4": {
  1228. "HWI\\Bundle\\OAuthBundle\\": ""
  1229. }
  1230. },
  1231. "notification-url": "https://packagist.org/downloads/",
  1232. "license": [
  1233. "MIT"
  1234. ],
  1235. "authors": [
  1236. {
  1237. "name": "Contributors",
  1238. "homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
  1239. },
  1240. {
  1241. "name": "Joseph Bielawski",
  1242. "email": "stloyd@gmail.com"
  1243. },
  1244. {
  1245. "name": "Alexander",
  1246. "email": "iam.asm89@gmail.com"
  1247. },
  1248. {
  1249. "name": "Geoffrey Bachelet",
  1250. "email": "geoffrey.bachelet@gmail.com"
  1251. }
  1252. ],
  1253. "description": "Support for authenticating users using both OAuth1.0a and OAuth2 in Symfony2.",
  1254. "homepage": "http://github.com/hwi/HWIOAuthBundle",
  1255. "keywords": [
  1256. "37signals",
  1257. "Authentication",
  1258. "Deezer",
  1259. "EVE Online",
  1260. "amazon",
  1261. "auth0",
  1262. "azure",
  1263. "bitbucket",
  1264. "bitly",
  1265. "box",
  1266. "bufferapp",
  1267. "dailymotion",
  1268. "deviantart",
  1269. "discogs",
  1270. "disqus",
  1271. "dropbox",
  1272. "eventbrite",
  1273. "facebook",
  1274. "firewall",
  1275. "fiware",
  1276. "flickr",
  1277. "foursquare",
  1278. "github",
  1279. "google",
  1280. "hubic",
  1281. "instagram",
  1282. "jira",
  1283. "linkedin",
  1284. "mail.ru",
  1285. "oauth",
  1286. "oauth1",
  1287. "oauth2",
  1288. "odnoklassniki",
  1289. "paypal",
  1290. "qq",
  1291. "reddit",
  1292. "runkeeper",
  1293. "salesforce",
  1294. "security",
  1295. "sensio connect",
  1296. "sina weibo",
  1297. "slack",
  1298. "sound cloud",
  1299. "spotify",
  1300. "stack exchange",
  1301. "stereomood",
  1302. "strava",
  1303. "toshl",
  1304. "trakt",
  1305. "trello",
  1306. "twitch",
  1307. "twitter",
  1308. "vkontakte",
  1309. "wechat",
  1310. "windows live",
  1311. "wordpress",
  1312. "xing",
  1313. "yahoo",
  1314. "yandex",
  1315. "youtube"
  1316. ],
  1317. "time": "2016-07-27 14:43:30"
  1318. },
  1319. {
  1320. "name": "ircmaxell/password-compat",
  1321. "version": "v1.0.4",
  1322. "source": {
  1323. "type": "git",
  1324. "url": "https://github.com/ircmaxell/password_compat.git",
  1325. "reference": "5c5cde8822a69545767f7c7f3058cb15ff84614c"
  1326. },
  1327. "dist": {
  1328. "type": "zip",
  1329. "url": "https://api.github.com/repos/ircmaxell/password_compat/zipball/5c5cde8822a69545767f7c7f3058cb15ff84614c",
  1330. "reference": "5c5cde8822a69545767f7c7f3058cb15ff84614c",
  1331. "shasum": ""
  1332. },
  1333. "require-dev": {
  1334. "phpunit/phpunit": "4.*"
  1335. },
  1336. "type": "library",
  1337. "autoload": {
  1338. "files": [
  1339. "lib/password.php"
  1340. ]
  1341. },
  1342. "notification-url": "https://packagist.org/downloads/",
  1343. "license": [
  1344. "MIT"
  1345. ],
  1346. "authors": [
  1347. {
  1348. "name": "Anthony Ferrara",
  1349. "email": "ircmaxell@php.net",
  1350. "homepage": "http://blog.ircmaxell.com"
  1351. }
  1352. ],
  1353. "description": "A compatibility library for the proposed simplified password hashing algorithm: https://wiki.php.net/rfc/password_hash",
  1354. "homepage": "https://github.com/ircmaxell/password_compat",
  1355. "keywords": [
  1356. "hashing",
  1357. "password"
  1358. ],
  1359. "time": "2014-11-20 16:49:30"
  1360. },
  1361. {
  1362. "name": "jdorn/sql-formatter",
  1363. "version": "v1.2.17",
  1364. "source": {
  1365. "type": "git",
  1366. "url": "https://github.com/jdorn/sql-formatter.git",
  1367. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  1368. },
  1369. "dist": {
  1370. "type": "zip",
  1371. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  1372. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  1373. "shasum": ""
  1374. },
  1375. "require": {
  1376. "php": ">=5.2.4"
  1377. },
  1378. "require-dev": {
  1379. "phpunit/phpunit": "3.7.*"
  1380. },
  1381. "type": "library",
  1382. "extra": {
  1383. "branch-alias": {
  1384. "dev-master": "1.3.x-dev"
  1385. }
  1386. },
  1387. "autoload": {
  1388. "classmap": [
  1389. "lib"
  1390. ]
  1391. },
  1392. "notification-url": "https://packagist.org/downloads/",
  1393. "license": [
  1394. "MIT"
  1395. ],
  1396. "authors": [
  1397. {
  1398. "name": "Jeremy Dorn",
  1399. "email": "jeremy@jeremydorn.com",
  1400. "homepage": "http://jeremydorn.com/"
  1401. }
  1402. ],
  1403. "description": "a PHP SQL highlighting library",
  1404. "homepage": "https://github.com/jdorn/sql-formatter/",
  1405. "keywords": [
  1406. "highlight",
  1407. "sql"
  1408. ],
  1409. "time": "2014-01-12 16:20:24"
  1410. },
  1411. {
  1412. "name": "jms/aop-bundle",
  1413. "version": "1.2.0",
  1414. "source": {
  1415. "type": "git",
  1416. "url": "https://github.com/schmittjoh/JMSAopBundle.git",
  1417. "reference": "78000d007e74283cc564a58e184d7f62548ad394"
  1418. },
  1419. "dist": {
  1420. "type": "zip",
  1421. "url": "https://api.github.com/repos/schmittjoh/JMSAopBundle/zipball/78000d007e74283cc564a58e184d7f62548ad394",
  1422. "reference": "78000d007e74283cc564a58e184d7f62548ad394",
  1423. "shasum": ""
  1424. },
  1425. "require": {
  1426. "jms/cg": "^1.1",
  1427. "php": ">=5.3.9",
  1428. "symfony/framework-bundle": "^2.3|^3.0"
  1429. },
  1430. "require-dev": {
  1431. "symfony/phpunit-bridge": "^2.7"
  1432. },
  1433. "type": "symfony-bundle",
  1434. "extra": {
  1435. "branch-alias": {
  1436. "dev-master": "1.1.x-dev"
  1437. }
  1438. },
  1439. "autoload": {
  1440. "psr-4": {
  1441. "JMS\\AopBundle\\": ""
  1442. }
  1443. },
  1444. "notification-url": "https://packagist.org/downloads/",
  1445. "license": [
  1446. "Apache-2.0"
  1447. ],
  1448. "authors": [
  1449. {
  1450. "name": "Johannes M. Schmitt",
  1451. "email": "schmittjoh@gmail.com"
  1452. }
  1453. ],
  1454. "description": "Adds AOP capabilities to Symfony2",
  1455. "keywords": [
  1456. "annotations",
  1457. "aop"
  1458. ],
  1459. "time": "2015-12-09 16:30:46"
  1460. },
  1461. {
  1462. "name": "jms/cg",
  1463. "version": "1.2.0",
  1464. "source": {
  1465. "type": "git",
  1466. "url": "https://github.com/schmittjoh/cg-library.git",
  1467. "reference": "2152ea2c48f746a676debb841644ae64cae27835"
  1468. },
  1469. "dist": {
  1470. "type": "zip",
  1471. "url": "https://api.github.com/repos/schmittjoh/cg-library/zipball/2152ea2c48f746a676debb841644ae64cae27835",
  1472. "reference": "2152ea2c48f746a676debb841644ae64cae27835",
  1473. "shasum": ""
  1474. },
  1475. "require": {
  1476. "php": ">=5.3.0"
  1477. },
  1478. "require-dev": {
  1479. "phpunit/phpunit": ">=4.5"
  1480. },
  1481. "type": "library",
  1482. "extra": {
  1483. "branch-alias": {
  1484. "dev-master": "1.1-dev"
  1485. }
  1486. },
  1487. "autoload": {
  1488. "psr-0": {
  1489. "CG\\": "src/"
  1490. }
  1491. },
  1492. "notification-url": "https://packagist.org/downloads/",
  1493. "license": [
  1494. "Apache2"
  1495. ],
  1496. "authors": [
  1497. {
  1498. "name": "Johannes M. Schmitt",
  1499. "email": "schmittjoh@gmail.com"
  1500. }
  1501. ],
  1502. "description": "Toolset for generating PHP code",
  1503. "keywords": [
  1504. "code generation"
  1505. ],
  1506. "time": "2016-04-07 10:21:44"
  1507. },
  1508. {
  1509. "name": "jms/di-extra-bundle",
  1510. "version": "1.8.0",
  1511. "source": {
  1512. "type": "git",
  1513. "url": "https://github.com/schmittjoh/JMSDiExtraBundle.git",
  1514. "reference": "7c8e23ffd65eb05f7b76869aa8ef1949e90789c7"
  1515. },
  1516. "dist": {
  1517. "type": "zip",
  1518. "url": "https://api.github.com/repos/schmittjoh/JMSDiExtraBundle/zipball/7c8e23ffd65eb05f7b76869aa8ef1949e90789c7",
  1519. "reference": "7c8e23ffd65eb05f7b76869aa8ef1949e90789c7",
  1520. "shasum": ""
  1521. },
  1522. "require": {
  1523. "jms/aop-bundle": "~1.1",
  1524. "jms/metadata": "~1.0",
  1525. "php": "~5.3|~7.0",
  1526. "symfony/dependency-injection": "~2.3|~3.0",
  1527. "symfony/finder": "~2.3|~3.0",
  1528. "symfony/framework-bundle": "~2.3|~3.0",
  1529. "symfony/http-kernel": "^2.3.24|~3.0",
  1530. "symfony/process": "~2.3|~3.0",
  1531. "symfony/routing": "~2.3|~3.0"
  1532. },
  1533. "require-dev": {
  1534. "doctrine/doctrine-bundle": "~1.5",
  1535. "doctrine/orm": "~2.3",
  1536. "jms/security-extra-bundle": "~1.0",
  1537. "phpcollection/phpcollection": ">=0.2,<0.3-dev",
  1538. "sensio/framework-extra-bundle": "~2.0|~3.0",
  1539. "symfony/browser-kit": "~2.3|~3.0",
  1540. "symfony/class-loader": "~2.3|~3.0",
  1541. "symfony/expression-language": "~2.6|~3.0",
  1542. "symfony/form": "~2.3|~3.0",
  1543. "symfony/phpunit-bridge": "~2.7",
  1544. "symfony/security-bundle": "~2.3",
  1545. "symfony/twig-bundle": "~2.3|~3.0",
  1546. "symfony/validator": "~2.3|~3.0",
  1547. "symfony/yaml": "~2.3|~3.0"
  1548. },
  1549. "type": "symfony-bundle",
  1550. "extra": {
  1551. "branch-alias": {
  1552. "dev-master": "1.7-dev"
  1553. }
  1554. },
  1555. "autoload": {
  1556. "psr-4": {
  1557. "JMS\\DiExtraBundle\\": ""
  1558. }
  1559. },
  1560. "notification-url": "https://packagist.org/downloads/",
  1561. "license": [
  1562. "Apache-2.0"
  1563. ],
  1564. "authors": [
  1565. {
  1566. "name": "Johannes M. Schmitt",
  1567. "email": "schmittjoh@gmail.com"
  1568. }
  1569. ],
  1570. "description": "Allows to configure dependency injection using annotations",
  1571. "homepage": "http://jmsyst.com/bundles/JMSDiExtraBundle",
  1572. "keywords": [
  1573. "annotations",
  1574. "dependency injection"
  1575. ],
  1576. "time": "2016-09-09 12:35:58"
  1577. },
  1578. {
  1579. "name": "jms/metadata",
  1580. "version": "1.5.1",
  1581. "source": {
  1582. "type": "git",
  1583. "url": "https://github.com/schmittjoh/metadata.git",
  1584. "reference": "22b72455559a25777cfd28c4ffda81ff7639f353"
  1585. },
  1586. "dist": {
  1587. "type": "zip",
  1588. "url": "https://api.github.com/repos/schmittjoh/metadata/zipball/22b72455559a25777cfd28c4ffda81ff7639f353",
  1589. "reference": "22b72455559a25777cfd28c4ffda81ff7639f353",
  1590. "shasum": ""
  1591. },
  1592. "require": {
  1593. "php": ">=5.3.0"
  1594. },
  1595. "require-dev": {
  1596. "doctrine/cache": "~1.0"
  1597. },
  1598. "type": "library",
  1599. "extra": {
  1600. "branch-alias": {
  1601. "dev-master": "1.5.x-dev"
  1602. }
  1603. },
  1604. "autoload": {
  1605. "psr-0": {
  1606. "Metadata\\": "src/"
  1607. }
  1608. },
  1609. "notification-url": "https://packagist.org/downloads/",
  1610. "license": [
  1611. "Apache"
  1612. ],
  1613. "authors": [
  1614. {
  1615. "name": "Johannes Schmitt",
  1616. "email": "schmittjoh@gmail.com",
  1617. "homepage": "https://github.com/schmittjoh",
  1618. "role": "Developer of wrapped JMSSerializerBundle"
  1619. }
  1620. ],
  1621. "description": "Class/method/property metadata management in PHP",
  1622. "keywords": [
  1623. "annotations",
  1624. "metadata",
  1625. "xml",
  1626. "yaml"
  1627. ],
  1628. "time": "2014-07-12 07:13:19"
  1629. },
  1630. {
  1631. "name": "jms/parser-lib",
  1632. "version": "1.0.0",
  1633. "source": {
  1634. "type": "git",
  1635. "url": "https://github.com/schmittjoh/parser-lib.git",
  1636. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d"
  1637. },
  1638. "dist": {
  1639. "type": "zip",
  1640. "url": "https://api.github.com/repos/schmittjoh/parser-lib/zipball/c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1641. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1642. "shasum": ""
  1643. },
  1644. "require": {
  1645. "phpoption/phpoption": ">=0.9,<2.0-dev"
  1646. },
  1647. "type": "library",
  1648. "extra": {
  1649. "branch-alias": {
  1650. "dev-master": "1.0-dev"
  1651. }
  1652. },
  1653. "autoload": {
  1654. "psr-0": {
  1655. "JMS\\": "src/"
  1656. }
  1657. },
  1658. "notification-url": "https://packagist.org/downloads/",
  1659. "license": [
  1660. "Apache2"
  1661. ],
  1662. "description": "A library for easily creating recursive-descent parsers.",
  1663. "time": "2012-11-18 18:08:43"
  1664. },
  1665. {
  1666. "name": "jms/security-extra-bundle",
  1667. "version": "1.6.0",
  1668. "source": {
  1669. "type": "git",
  1670. "url": "https://github.com/schmittjoh/JMSSecurityExtraBundle.git",
  1671. "reference": "d70399b25f41afd8277335cedc3c9b3acdc3759d"
  1672. },
  1673. "dist": {
  1674. "type": "zip",
  1675. "url": "https://api.github.com/repos/schmittjoh/JMSSecurityExtraBundle/zipball/d70399b25f41afd8277335cedc3c9b3acdc3759d",
  1676. "reference": "d70399b25f41afd8277335cedc3c9b3acdc3759d",
  1677. "shasum": ""
  1678. },
  1679. "require": {
  1680. "jms/aop-bundle": "~1.0",
  1681. "jms/di-extra-bundle": "~1.4",
  1682. "jms/metadata": "~1.0",
  1683. "jms/parser-lib": "~1.0",
  1684. "php": "~5.3|~7.0",
  1685. "symfony/dependency-injection": "~2.3|~3.0",
  1686. "symfony/framework-bundle": "~2.3|~3.0",
  1687. "symfony/routing": "~2.3|~3.0",
  1688. "symfony/security-acl": "~2.2|~3.0",
  1689. "symfony/security-bundle": "~2.3|~3.0"
  1690. },
  1691. "require-dev": {
  1692. "doctrine/common": "~2.3",
  1693. "doctrine/doctrine-bundle": "~1.0",
  1694. "doctrine/orm": "~2.3",
  1695. "sensio/framework-extra-bundle": "^2.2.1|~3.0",
  1696. "symfony/browser-kit": "~2.0|~3.0",
  1697. "symfony/class-loader": "~2.1|~3.0",
  1698. "symfony/css-selector": "^2.0.5|~3.0",
  1699. "symfony/finder": "^2.0.5|~3.0",
  1700. "symfony/form": "~2.2|~3.0",
  1701. "symfony/phpunit-bridge": "~2.7|~3.0",
  1702. "symfony/process": "^2.0.5|~3.0",
  1703. "symfony/twig-bridge": "^2.2.6|~3.0",
  1704. "symfony/twig-bundle": "~2.2|~3.0",
  1705. "symfony/validator": "~2.2|~3.0",
  1706. "symfony/yaml": "^2.2.11|~3.0",
  1707. "twig/twig": "^1.23.1"
  1708. },
  1709. "type": "symfony-bundle",
  1710. "extra": {
  1711. "branch-alias": {
  1712. "dev-master": "1.6-dev"
  1713. }
  1714. },
  1715. "autoload": {
  1716. "psr-4": {
  1717. "JMS\\SecurityExtraBundle\\": ""
  1718. }
  1719. },
  1720. "notification-url": "https://packagist.org/downloads/",
  1721. "license": [
  1722. "Apache2"
  1723. ],
  1724. "authors": [
  1725. {
  1726. "name": "Johannes M. Schmitt",
  1727. "email": "schmittjoh@gmail.com"
  1728. }
  1729. ],
  1730. "description": "Enhances the Symfony2 Security Component by adding several new features",
  1731. "homepage": "http://jmsyst.com/bundles/JMSSecurityExtraBundle",
  1732. "keywords": [
  1733. "annotations",
  1734. "authorization",
  1735. "expression",
  1736. "secure",
  1737. "security"
  1738. ],
  1739. "time": "2016-02-03 15:29:16"
  1740. },
  1741. {
  1742. "name": "justinrainbow/json-schema",
  1743. "version": "2.0.5",
  1744. "source": {
  1745. "type": "git",
  1746. "url": "https://github.com/justinrainbow/json-schema.git",
  1747. "reference": "6b2a33e6a768f96bdc2ead5600af0822eed17d67"
  1748. },
  1749. "dist": {
  1750. "type": "zip",
  1751. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/6b2a33e6a768f96bdc2ead5600af0822eed17d67",
  1752. "reference": "6b2a33e6a768f96bdc2ead5600af0822eed17d67",
  1753. "shasum": ""
  1754. },
  1755. "require": {
  1756. "php": ">=5.3.3"
  1757. },
  1758. "require-dev": {
  1759. "json-schema/json-schema-test-suite": "1.2.0",
  1760. "phpdocumentor/phpdocumentor": "~2",
  1761. "phpunit/phpunit": "^4.8.22"
  1762. },
  1763. "bin": [
  1764. "bin/validate-json"
  1765. ],
  1766. "type": "library",
  1767. "extra": {
  1768. "branch-alias": {
  1769. "dev-master": "2.0.x-dev"
  1770. }
  1771. },
  1772. "autoload": {
  1773. "psr-4": {
  1774. "JsonSchema\\": "src/JsonSchema/"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "Bruno Prieto Reis",
  1784. "email": "bruno.p.reis@gmail.com"
  1785. },
  1786. {
  1787. "name": "Justin Rainbow",
  1788. "email": "justin.rainbow@gmail.com"
  1789. },
  1790. {
  1791. "name": "Igor Wiedler",
  1792. "email": "igor@wiedler.ch"
  1793. },
  1794. {
  1795. "name": "Robert Schönthal",
  1796. "email": "seroscho@googlemail.com"
  1797. }
  1798. ],
  1799. "description": "A library to validate a json schema.",
  1800. "homepage": "https://github.com/justinrainbow/json-schema",
  1801. "keywords": [
  1802. "json",
  1803. "schema"
  1804. ],
  1805. "time": "2016-06-02 10:59:52"
  1806. },
  1807. {
  1808. "name": "knplabs/knp-menu",
  1809. "version": "v2.1.1",
  1810. "source": {
  1811. "type": "git",
  1812. "url": "https://github.com/KnpLabs/KnpMenu.git",
  1813. "reference": "9917b999a3c3d3901386d60c4888b07679291031"
  1814. },
  1815. "dist": {
  1816. "type": "zip",
  1817. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/9917b999a3c3d3901386d60c4888b07679291031",
  1818. "reference": "9917b999a3c3d3901386d60c4888b07679291031",
  1819. "shasum": ""
  1820. },
  1821. "require": {
  1822. "php": ">=5.3.0"
  1823. },
  1824. "require-dev": {
  1825. "pimple/pimple": "~1.0",
  1826. "silex/silex": "~1.0",
  1827. "symfony/phpunit-bridge": "~2.7|~3.0",
  1828. "symfony/routing": "~2.3|~3.0",
  1829. "twig/twig": "~1.16|~2.0"
  1830. },
  1831. "suggest": {
  1832. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  1833. "silex/silex": "for the integration with your silex application",
  1834. "twig/twig": "for the TwigRenderer and the integration with your templates"
  1835. },
  1836. "type": "library",
  1837. "extra": {
  1838. "branch-alias": {
  1839. "dev-master": "2.1-dev"
  1840. }
  1841. },
  1842. "autoload": {
  1843. "psr-4": {
  1844. "Knp\\Menu\\": "src/Knp/Menu"
  1845. }
  1846. },
  1847. "notification-url": "https://packagist.org/downloads/",
  1848. "license": [
  1849. "MIT"
  1850. ],
  1851. "authors": [
  1852. {
  1853. "name": "Christophe Coevoet",
  1854. "email": "stof@notk.org"
  1855. },
  1856. {
  1857. "name": "KnpLabs",
  1858. "homepage": "http://knplabs.com"
  1859. },
  1860. {
  1861. "name": "Symfony Community",
  1862. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  1863. }
  1864. ],
  1865. "description": "An object oriented menu library",
  1866. "homepage": "http://knplabs.com",
  1867. "keywords": [
  1868. "menu",
  1869. "tree"
  1870. ],
  1871. "time": "2016-01-08 15:42:54"
  1872. },
  1873. {
  1874. "name": "knplabs/knp-menu-bundle",
  1875. "version": "2.1.2",
  1876. "source": {
  1877. "type": "git",
  1878. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  1879. "reference": "42ff1953c3a79d0b31aba2ece8c03fbd70e7f1ca"
  1880. },
  1881. "dist": {
  1882. "type": "zip",
  1883. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/42ff1953c3a79d0b31aba2ece8c03fbd70e7f1ca",
  1884. "reference": "42ff1953c3a79d0b31aba2ece8c03fbd70e7f1ca",
  1885. "shasum": ""
  1886. },
  1887. "require": {
  1888. "knplabs/knp-menu": "~2.1",
  1889. "symfony/framework-bundle": "~2.3|~3.0"
  1890. },
  1891. "require-dev": {
  1892. "symfony/expression-language": "~2.4|~3.0",
  1893. "symfony/phpunit-bridge": "~2.7|~3.0"
  1894. },
  1895. "type": "symfony-bundle",
  1896. "extra": {
  1897. "branch-alias": {
  1898. "dev-master": "2.1.x-dev"
  1899. }
  1900. },
  1901. "autoload": {
  1902. "psr-4": {
  1903. "Knp\\Bundle\\MenuBundle\\": ""
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "MIT"
  1909. ],
  1910. "authors": [
  1911. {
  1912. "name": "Christophe Coevoet",
  1913. "email": "stof@notk.org"
  1914. },
  1915. {
  1916. "name": "KnpLabs",
  1917. "homepage": "http://knplabs.com"
  1918. },
  1919. {
  1920. "name": "Symfony Community",
  1921. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  1922. }
  1923. ],
  1924. "description": "This bundle provides an integration of the KnpMenu library",
  1925. "keywords": [
  1926. "menu"
  1927. ],
  1928. "time": "2016-06-21 06:53:03"
  1929. },
  1930. {
  1931. "name": "kriswallsmith/buzz",
  1932. "version": "v0.15",
  1933. "source": {
  1934. "type": "git",
  1935. "url": "https://github.com/kriswallsmith/Buzz.git",
  1936. "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8"
  1937. },
  1938. "dist": {
  1939. "type": "zip",
  1940. "url": "https://api.github.com/repos/kriswallsmith/Buzz/zipball/d4041666c3ffb379af02a92dabe81c904b35fab8",
  1941. "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8",
  1942. "shasum": ""
  1943. },
  1944. "require": {
  1945. "php": ">=5.3.0"
  1946. },
  1947. "require-dev": {
  1948. "phpunit/phpunit": "3.7.*"
  1949. },
  1950. "suggest": {
  1951. "ext-curl": "*"
  1952. },
  1953. "type": "library",
  1954. "autoload": {
  1955. "psr-0": {
  1956. "Buzz": "lib/"
  1957. }
  1958. },
  1959. "notification-url": "https://packagist.org/downloads/",
  1960. "license": [
  1961. "MIT"
  1962. ],
  1963. "authors": [
  1964. {
  1965. "name": "Kris Wallsmith",
  1966. "email": "kris.wallsmith@gmail.com",
  1967. "homepage": "http://kriswallsmith.net/"
  1968. }
  1969. ],
  1970. "description": "Lightweight HTTP client",
  1971. "homepage": "https://github.com/kriswallsmith/Buzz",
  1972. "keywords": [
  1973. "curl",
  1974. "http client"
  1975. ],
  1976. "time": "2015-06-25 17:26:56"
  1977. },
  1978. {
  1979. "name": "monolog/monolog",
  1980. "version": "1.21.0",
  1981. "source": {
  1982. "type": "git",
  1983. "url": "https://github.com/Seldaek/monolog.git",
  1984. "reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952"
  1985. },
  1986. "dist": {
  1987. "type": "zip",
  1988. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f42fbdfd53e306bda545845e4dbfd3e72edb4952",
  1989. "reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952",
  1990. "shasum": ""
  1991. },
  1992. "require": {
  1993. "php": ">=5.3.0",
  1994. "psr/log": "~1.0"
  1995. },
  1996. "provide": {
  1997. "psr/log-implementation": "1.0.0"
  1998. },
  1999. "require-dev": {
  2000. "aws/aws-sdk-php": "^2.4.9",
  2001. "doctrine/couchdb": "~1.0@dev",
  2002. "graylog2/gelf-php": "~1.0",
  2003. "jakub-onderka/php-parallel-lint": "0.9",
  2004. "php-amqplib/php-amqplib": "~2.4",
  2005. "php-console/php-console": "^3.1.3",
  2006. "phpunit/phpunit": "~4.5",
  2007. "phpunit/phpunit-mock-objects": "2.3.0",
  2008. "ruflin/elastica": ">=0.90 <3.0",
  2009. "sentry/sentry": "^0.13",
  2010. "swiftmailer/swiftmailer": "~5.3"
  2011. },
  2012. "suggest": {
  2013. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2014. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2015. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2016. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2017. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2018. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2019. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2020. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2021. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2022. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2023. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2024. },
  2025. "type": "library",
  2026. "extra": {
  2027. "branch-alias": {
  2028. "dev-master": "2.0.x-dev"
  2029. }
  2030. },
  2031. "autoload": {
  2032. "psr-4": {
  2033. "Monolog\\": "src/Monolog"
  2034. }
  2035. },
  2036. "notification-url": "https://packagist.org/downloads/",
  2037. "license": [
  2038. "MIT"
  2039. ],
  2040. "authors": [
  2041. {
  2042. "name": "Jordi Boggiano",
  2043. "email": "j.boggiano@seld.be",
  2044. "homepage": "http://seld.be"
  2045. }
  2046. ],
  2047. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2048. "homepage": "http://github.com/Seldaek/monolog",
  2049. "keywords": [
  2050. "log",
  2051. "logging",
  2052. "psr-3"
  2053. ],
  2054. "time": "2016-07-29 03:23:52"
  2055. },
  2056. {
  2057. "name": "nelmio/cors-bundle",
  2058. "version": "1.4.1",
  2059. "source": {
  2060. "type": "git",
  2061. "url": "https://github.com/nelmio/NelmioCorsBundle.git",
  2062. "reference": "fa14a81737c605bf4766054cdcb72a16a433d537"
  2063. },
  2064. "dist": {
  2065. "type": "zip",
  2066. "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/fa14a81737c605bf4766054cdcb72a16a433d537",
  2067. "reference": "fa14a81737c605bf4766054cdcb72a16a433d537",
  2068. "shasum": ""
  2069. },
  2070. "require": {
  2071. "symfony/framework-bundle": "^2.2 || ^3.0"
  2072. },
  2073. "require-dev": {
  2074. "matthiasnoback/symfony-dependency-injection-test": "^0.7.6",
  2075. "mockery/mockery": "0.9.*"
  2076. },
  2077. "type": "symfony-bundle",
  2078. "extra": {
  2079. "branch-alias": {
  2080. "dev-master": "1.4.x-dev"
  2081. }
  2082. },
  2083. "autoload": {
  2084. "psr-4": {
  2085. "Nelmio\\CorsBundle\\": ""
  2086. },
  2087. "exclude-from-classmap": [
  2088. "/Tests/"
  2089. ]
  2090. },
  2091. "notification-url": "https://packagist.org/downloads/",
  2092. "license": [
  2093. "MIT"
  2094. ],
  2095. "authors": [
  2096. {
  2097. "name": "Nelmio",
  2098. "homepage": "http://nelm.io"
  2099. },
  2100. {
  2101. "name": "Symfony Community",
  2102. "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors"
  2103. }
  2104. ],
  2105. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony2 application",
  2106. "keywords": [
  2107. "api",
  2108. "cors",
  2109. "crossdomain"
  2110. ],
  2111. "time": "2015-12-09 17:26:34"
  2112. },
  2113. {
  2114. "name": "nelmio/security-bundle",
  2115. "version": "1.10.0",
  2116. "source": {
  2117. "type": "git",
  2118. "url": "https://github.com/nelmio/NelmioSecurityBundle.git",
  2119. "reference": "4be243f1fc85ff85f10aadcf88c8c11ba2096cd9"
  2120. },
  2121. "dist": {
  2122. "type": "zip",
  2123. "url": "https://api.github.com/repos/nelmio/NelmioSecurityBundle/zipball/4be243f1fc85ff85f10aadcf88c8c11ba2096cd9",
  2124. "reference": "4be243f1fc85ff85f10aadcf88c8c11ba2096cd9",
  2125. "shasum": ""
  2126. },
  2127. "require": {
  2128. "symfony/framework-bundle": "~2.3|~3.0",
  2129. "symfony/security": "~2.3|~3.0"
  2130. },
  2131. "require-dev": {
  2132. "phpunit/phpunit": "^5.2"
  2133. },
  2134. "type": "symfony-bundle",
  2135. "extra": {
  2136. "branch-alias": {
  2137. "dev-master": "1.10.x-dev"
  2138. }
  2139. },
  2140. "autoload": {
  2141. "psr-4": {
  2142. "Nelmio\\SecurityBundle\\": ""
  2143. }
  2144. },
  2145. "notification-url": "https://packagist.org/downloads/",
  2146. "license": [
  2147. "MIT"
  2148. ],
  2149. "authors": [
  2150. {
  2151. "name": "Nelmio",
  2152. "homepage": "http://nelm.io"
  2153. },
  2154. {
  2155. "name": "Symfony Community",
  2156. "homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors"
  2157. }
  2158. ],
  2159. "description": "Extra security-related features for Symfony: signed/encrypted cookies, HTTPS/SSL/HSTS handling, cookie session storage, ...",
  2160. "keywords": [
  2161. "security"
  2162. ],
  2163. "time": "2016-02-23 10:42:13"
  2164. },
  2165. {
  2166. "name": "nelmio/solarium-bundle",
  2167. "version": "v1.1.0",
  2168. "target-dir": "Nelmio/SolariumBundle",
  2169. "source": {
  2170. "type": "git",
  2171. "url": "https://github.com/nelmio/NelmioSolariumBundle.git",
  2172. "reference": "693700c4deeb04997b90aca659dd881409f33eb9"
  2173. },
  2174. "dist": {
  2175. "type": "zip",
  2176. "url": "https://api.github.com/repos/nelmio/NelmioSolariumBundle/zipball/693700c4deeb04997b90aca659dd881409f33eb9",
  2177. "reference": "693700c4deeb04997b90aca659dd881409f33eb9",
  2178. "shasum": ""
  2179. },
  2180. "require": {
  2181. "solarium/solarium": "~2.4.0",
  2182. "symfony/framework-bundle": "2.*"
  2183. },
  2184. "require-dev": {
  2185. "symfony/yaml": "2.*"
  2186. },
  2187. "type": "symfony-bundle",
  2188. "extra": {
  2189. "branch-alias": {
  2190. "dev-master": "1.1-dev"
  2191. }
  2192. },
  2193. "autoload": {
  2194. "psr-0": {
  2195. "Nelmio\\SolariumBundle": ""
  2196. }
  2197. },
  2198. "notification-url": "https://packagist.org/downloads/",
  2199. "license": [
  2200. "MIT"
  2201. ],
  2202. "authors": [
  2203. {
  2204. "name": "Nelmio",
  2205. "homepage": "http://nelm.io"
  2206. },
  2207. {
  2208. "name": "Symfony Community",
  2209. "homepage": "https://github.com/nelmio/NelmioSolariumBundle/contributors"
  2210. }
  2211. ],
  2212. "description": "Integration with solarium solr client.",
  2213. "keywords": [
  2214. "search",
  2215. "solarium",
  2216. "solr"
  2217. ],
  2218. "time": "2013-01-07 10:35:43"
  2219. },
  2220. {
  2221. "name": "pagerfanta/pagerfanta",
  2222. "version": "v1.0.3",
  2223. "source": {
  2224. "type": "git",
  2225. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  2226. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb"
  2227. },
  2228. "dist": {
  2229. "type": "zip",
  2230. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/a874d3612d954dcbbb49e5ffe178890918fb76fb",
  2231. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb",
  2232. "shasum": ""
  2233. },
  2234. "require": {
  2235. "php": ">=5.3.0"
  2236. },
  2237. "require-dev": {
  2238. "doctrine/orm": "~2.3",
  2239. "doctrine/phpcr-odm": "1.*",
  2240. "jackalope/jackalope-doctrine-dbal": "1.*",
  2241. "jmikola/geojson": "~1.0",
  2242. "mandango/mandango": "~1.0@dev",
  2243. "mandango/mondator": "~1.0@dev",
  2244. "phpunit/phpunit": "~4",
  2245. "propel/propel1": "~1.6",
  2246. "ruflin/elastica": "~1.3",
  2247. "solarium/solarium": "~3.1"
  2248. },
  2249. "suggest": {
  2250. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  2251. "doctrine/orm": "To use the DoctrineORMAdapter.",
  2252. "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
  2253. "mandango/mandango": "To use the MandangoAdapter.",
  2254. "propel/propel1": "To use the PropelAdapter",
  2255. "solarium/solarium": "To use the SolariumAdapter."
  2256. },
  2257. "type": "library",
  2258. "extra": {
  2259. "branch-alias": {
  2260. "dev-master": "1.0.x-dev"
  2261. }
  2262. },
  2263. "autoload": {
  2264. "psr-0": {
  2265. "Pagerfanta\\": "src/"
  2266. }
  2267. },
  2268. "notification-url": "https://packagist.org/downloads/",
  2269. "license": [
  2270. "MIT"
  2271. ],
  2272. "authors": [
  2273. {
  2274. "name": "Pablo Díez",
  2275. "email": "pablodip@gmail.com"
  2276. }
  2277. ],
  2278. "description": "Pagination for PHP 5.3",
  2279. "keywords": [
  2280. "page",
  2281. "pagination",
  2282. "paginator",
  2283. "paging"
  2284. ],
  2285. "time": "2014-10-06 10:57:25"
  2286. },
  2287. {
  2288. "name": "paragonie/random_compat",
  2289. "version": "v2.0.2",
  2290. "source": {
  2291. "type": "git",
  2292. "url": "https://github.com/paragonie/random_compat.git",
  2293. "reference": "088c04e2f261c33bed6ca5245491cfca69195ccf"
  2294. },
  2295. "dist": {
  2296. "type": "zip",
  2297. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/088c04e2f261c33bed6ca5245491cfca69195ccf",
  2298. "reference": "088c04e2f261c33bed6ca5245491cfca69195ccf",
  2299. "shasum": ""
  2300. },
  2301. "require": {
  2302. "php": ">=5.2.0"
  2303. },
  2304. "require-dev": {
  2305. "phpunit/phpunit": "4.*|5.*"
  2306. },
  2307. "suggest": {
  2308. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2309. },
  2310. "type": "library",
  2311. "autoload": {
  2312. "files": [
  2313. "lib/random.php"
  2314. ]
  2315. },
  2316. "notification-url": "https://packagist.org/downloads/",
  2317. "license": [
  2318. "MIT"
  2319. ],
  2320. "authors": [
  2321. {
  2322. "name": "Paragon Initiative Enterprises",
  2323. "email": "security@paragonie.com",
  2324. "homepage": "https://paragonie.com"
  2325. }
  2326. ],
  2327. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2328. "keywords": [
  2329. "csprng",
  2330. "pseudorandom",
  2331. "random"
  2332. ],
  2333. "time": "2016-04-03 06:00:07"
  2334. },
  2335. {
  2336. "name": "phpoption/phpoption",
  2337. "version": "1.5.0",
  2338. "source": {
  2339. "type": "git",
  2340. "url": "https://github.com/schmittjoh/php-option.git",
  2341. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  2342. },
  2343. "dist": {
  2344. "type": "zip",
  2345. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2346. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2347. "shasum": ""
  2348. },
  2349. "require": {
  2350. "php": ">=5.3.0"
  2351. },
  2352. "require-dev": {
  2353. "phpunit/phpunit": "4.7.*"
  2354. },
  2355. "type": "library",
  2356. "extra": {
  2357. "branch-alias": {
  2358. "dev-master": "1.3-dev"
  2359. }
  2360. },
  2361. "autoload": {
  2362. "psr-0": {
  2363. "PhpOption\\": "src/"
  2364. }
  2365. },
  2366. "notification-url": "https://packagist.org/downloads/",
  2367. "license": [
  2368. "Apache2"
  2369. ],
  2370. "authors": [
  2371. {
  2372. "name": "Johannes M. Schmitt",
  2373. "email": "schmittjoh@gmail.com"
  2374. }
  2375. ],
  2376. "description": "Option Type for PHP",
  2377. "keywords": [
  2378. "language",
  2379. "option",
  2380. "php",
  2381. "type"
  2382. ],
  2383. "time": "2015-07-25 16:39:46"
  2384. },
  2385. {
  2386. "name": "predis/predis",
  2387. "version": "v1.1.1",
  2388. "source": {
  2389. "type": "git",
  2390. "url": "https://github.com/nrk/predis.git",
  2391. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  2392. },
  2393. "dist": {
  2394. "type": "zip",
  2395. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  2396. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  2397. "shasum": ""
  2398. },
  2399. "require": {
  2400. "php": ">=5.3.9"
  2401. },
  2402. "require-dev": {
  2403. "phpunit/phpunit": "~4.8"
  2404. },
  2405. "suggest": {
  2406. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  2407. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  2408. },
  2409. "type": "library",
  2410. "autoload": {
  2411. "psr-4": {
  2412. "Predis\\": "src/"
  2413. }
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "MIT"
  2418. ],
  2419. "authors": [
  2420. {
  2421. "name": "Daniele Alessandri",
  2422. "email": "suppakilla@gmail.com",
  2423. "homepage": "http://clorophilla.net"
  2424. }
  2425. ],
  2426. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  2427. "homepage": "http://github.com/nrk/predis",
  2428. "keywords": [
  2429. "nosql",
  2430. "predis",
  2431. "redis"
  2432. ],
  2433. "time": "2016-06-16 16:22:20"
  2434. },
  2435. {
  2436. "name": "psr/log",
  2437. "version": "1.0.0",
  2438. "source": {
  2439. "type": "git",
  2440. "url": "https://github.com/php-fig/log.git",
  2441. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  2442. },
  2443. "dist": {
  2444. "type": "zip",
  2445. "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  2446. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  2447. "shasum": ""
  2448. },
  2449. "type": "library",
  2450. "autoload": {
  2451. "psr-0": {
  2452. "Psr\\Log\\": ""
  2453. }
  2454. },
  2455. "notification-url": "https://packagist.org/downloads/",
  2456. "license": [
  2457. "MIT"
  2458. ],
  2459. "authors": [
  2460. {
  2461. "name": "PHP-FIG",
  2462. "homepage": "http://www.php-fig.org/"
  2463. }
  2464. ],
  2465. "description": "Common interface for logging libraries",
  2466. "keywords": [
  2467. "log",
  2468. "psr",
  2469. "psr-3"
  2470. ],
  2471. "time": "2012-12-21 11:40:51"
  2472. },
  2473. {
  2474. "name": "seld/cli-prompt",
  2475. "version": "1.0.2",
  2476. "source": {
  2477. "type": "git",
  2478. "url": "https://github.com/Seldaek/cli-prompt.git",
  2479. "reference": "8cbe10923cae5bcd7c5a713f6703fc4727c8c1b4"
  2480. },
  2481. "dist": {
  2482. "type": "zip",
  2483. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/8cbe10923cae5bcd7c5a713f6703fc4727c8c1b4",
  2484. "reference": "8cbe10923cae5bcd7c5a713f6703fc4727c8c1b4",
  2485. "shasum": ""
  2486. },
  2487. "require": {
  2488. "php": ">=5.3"
  2489. },
  2490. "type": "library",
  2491. "extra": {
  2492. "branch-alias": {
  2493. "dev-master": "1.x-dev"
  2494. }
  2495. },
  2496. "autoload": {
  2497. "psr-4": {
  2498. "Seld\\CliPrompt\\": "src/"
  2499. }
  2500. },
  2501. "notification-url": "https://packagist.org/downloads/",
  2502. "license": [
  2503. "MIT"
  2504. ],
  2505. "authors": [
  2506. {
  2507. "name": "Jordi Boggiano",
  2508. "email": "j.boggiano@seld.be"
  2509. }
  2510. ],
  2511. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  2512. "keywords": [
  2513. "cli",
  2514. "console",
  2515. "hidden",
  2516. "input",
  2517. "prompt"
  2518. ],
  2519. "time": "2016-04-18 09:31:41"
  2520. },
  2521. {
  2522. "name": "seld/jsonlint",
  2523. "version": "1.4.0",
  2524. "source": {
  2525. "type": "git",
  2526. "url": "https://github.com/Seldaek/jsonlint.git",
  2527. "reference": "66834d3e3566bb5798db7294619388786ae99394"
  2528. },
  2529. "dist": {
  2530. "type": "zip",
  2531. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/66834d3e3566bb5798db7294619388786ae99394",
  2532. "reference": "66834d3e3566bb5798db7294619388786ae99394",
  2533. "shasum": ""
  2534. },
  2535. "require": {
  2536. "php": "^5.3 || ^7.0"
  2537. },
  2538. "bin": [
  2539. "bin/jsonlint"
  2540. ],
  2541. "type": "library",
  2542. "autoload": {
  2543. "psr-4": {
  2544. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  2545. }
  2546. },
  2547. "notification-url": "https://packagist.org/downloads/",
  2548. "license": [
  2549. "MIT"
  2550. ],
  2551. "authors": [
  2552. {
  2553. "name": "Jordi Boggiano",
  2554. "email": "j.boggiano@seld.be",
  2555. "homepage": "http://seld.be"
  2556. }
  2557. ],
  2558. "description": "JSON Linter",
  2559. "keywords": [
  2560. "json",
  2561. "linter",
  2562. "parser",
  2563. "validator"
  2564. ],
  2565. "time": "2015-11-21 02:21:41"
  2566. },
  2567. {
  2568. "name": "seld/phar-utils",
  2569. "version": "1.0.1",
  2570. "source": {
  2571. "type": "git",
  2572. "url": "https://github.com/Seldaek/phar-utils.git",
  2573. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  2574. },
  2575. "dist": {
  2576. "type": "zip",
  2577. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  2578. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  2579. "shasum": ""
  2580. },
  2581. "require": {
  2582. "php": ">=5.3"
  2583. },
  2584. "type": "library",
  2585. "extra": {
  2586. "branch-alias": {
  2587. "dev-master": "1.x-dev"
  2588. }
  2589. },
  2590. "autoload": {
  2591. "psr-4": {
  2592. "Seld\\PharUtils\\": "src/"
  2593. }
  2594. },
  2595. "notification-url": "https://packagist.org/downloads/",
  2596. "license": [
  2597. "MIT"
  2598. ],
  2599. "authors": [
  2600. {
  2601. "name": "Jordi Boggiano",
  2602. "email": "j.boggiano@seld.be"
  2603. }
  2604. ],
  2605. "description": "PHAR file format utilities, for when PHP phars you up",
  2606. "keywords": [
  2607. "phra"
  2608. ],
  2609. "time": "2015-10-13 18:44:15"
  2610. },
  2611. {
  2612. "name": "sensio/distribution-bundle",
  2613. "version": "v5.0.9",
  2614. "source": {
  2615. "type": "git",
  2616. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  2617. "reference": "e5e0d8d06b07864b2752bd865537b0817edf4c5a"
  2618. },
  2619. "dist": {
  2620. "type": "zip",
  2621. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/e5e0d8d06b07864b2752bd865537b0817edf4c5a",
  2622. "reference": "e5e0d8d06b07864b2752bd865537b0817edf4c5a",
  2623. "shasum": ""
  2624. },
  2625. "require": {
  2626. "php": ">=5.3.9",
  2627. "sensiolabs/security-checker": "~3.0",
  2628. "symfony/class-loader": "~2.3|~3.0",
  2629. "symfony/config": "~2.3|~3.0",
  2630. "symfony/dependency-injection": "~2.3|~3.0",
  2631. "symfony/filesystem": "~2.3|~3.0",
  2632. "symfony/http-kernel": "~2.3|~3.0",
  2633. "symfony/process": "~2.3|~3.0"
  2634. },
  2635. "type": "symfony-bundle",
  2636. "extra": {
  2637. "branch-alias": {
  2638. "dev-master": "5.0.x-dev"
  2639. }
  2640. },
  2641. "autoload": {
  2642. "psr-4": {
  2643. "Sensio\\Bundle\\DistributionBundle\\": ""
  2644. }
  2645. },
  2646. "notification-url": "https://packagist.org/downloads/",
  2647. "license": [
  2648. "MIT"
  2649. ],
  2650. "authors": [
  2651. {
  2652. "name": "Fabien Potencier",
  2653. "email": "fabien@symfony.com"
  2654. }
  2655. ],
  2656. "description": "Base bundle for Symfony Distributions",
  2657. "keywords": [
  2658. "configuration",
  2659. "distribution"
  2660. ],
  2661. "time": "2016-09-06 01:05:01"
  2662. },
  2663. {
  2664. "name": "sensio/framework-extra-bundle",
  2665. "version": "v3.0.16",
  2666. "source": {
  2667. "type": "git",
  2668. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2669. "reference": "507a15f56fa7699f6cc8c2c7de4080b19ce22546"
  2670. },
  2671. "dist": {
  2672. "type": "zip",
  2673. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/507a15f56fa7699f6cc8c2c7de4080b19ce22546",
  2674. "reference": "507a15f56fa7699f6cc8c2c7de4080b19ce22546",
  2675. "shasum": ""
  2676. },
  2677. "require": {
  2678. "doctrine/common": "~2.2",
  2679. "symfony/dependency-injection": "~2.3|~3.0",
  2680. "symfony/framework-bundle": "~2.3|~3.0"
  2681. },
  2682. "require-dev": {
  2683. "symfony/browser-kit": "~2.3|~3.0",
  2684. "symfony/dom-crawler": "~2.3|~3.0",
  2685. "symfony/expression-language": "~2.4|~3.0",
  2686. "symfony/finder": "~2.3|~3.0",
  2687. "symfony/phpunit-bridge": "~2.7|~3.0",
  2688. "symfony/security-bundle": "~2.4|~3.0",
  2689. "symfony/twig-bundle": "~2.3|~3.0",
  2690. "twig/twig": "~1.11|~2.0"
  2691. },
  2692. "suggest": {
  2693. "symfony/expression-language": "",
  2694. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  2695. "symfony/security-bundle": ""
  2696. },
  2697. "type": "symfony-bundle",
  2698. "extra": {
  2699. "branch-alias": {
  2700. "dev-master": "3.0.x-dev"
  2701. }
  2702. },
  2703. "autoload": {
  2704. "psr-4": {
  2705. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  2706. }
  2707. },
  2708. "notification-url": "https://packagist.org/downloads/",
  2709. "license": [
  2710. "MIT"
  2711. ],
  2712. "authors": [
  2713. {
  2714. "name": "Fabien Potencier",
  2715. "email": "fabien@symfony.com"
  2716. }
  2717. ],
  2718. "description": "This bundle provides a way to configure your controllers with annotations",
  2719. "keywords": [
  2720. "annotations",
  2721. "controllers"
  2722. ],
  2723. "time": "2016-03-25 17:08:27"
  2724. },
  2725. {
  2726. "name": "sensio/generator-bundle",
  2727. "version": "v3.0.8",
  2728. "source": {
  2729. "type": "git",
  2730. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  2731. "reference": "3c20d16512f37d2be159eca0411b99a141b90fa4"
  2732. },
  2733. "dist": {
  2734. "type": "zip",
  2735. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/3c20d16512f37d2be159eca0411b99a141b90fa4",
  2736. "reference": "3c20d16512f37d2be159eca0411b99a141b90fa4",
  2737. "shasum": ""
  2738. },
  2739. "require": {
  2740. "symfony/console": "~2.7|~3.0",
  2741. "symfony/framework-bundle": "~2.7|~3.0",
  2742. "symfony/process": "~2.7|~3.0",
  2743. "symfony/yaml": "~2.7|~3.0"
  2744. },
  2745. "require-dev": {
  2746. "doctrine/orm": "~2.4",
  2747. "symfony/doctrine-bridge": "~2.7|~3.0",
  2748. "twig/twig": "~1.18"
  2749. },
  2750. "type": "symfony-bundle",
  2751. "extra": {
  2752. "branch-alias": {
  2753. "dev-master": "3.0.x-dev"
  2754. }
  2755. },
  2756. "autoload": {
  2757. "psr-4": {
  2758. "Sensio\\Bundle\\GeneratorBundle\\": ""
  2759. },
  2760. "exclude-from-classmap": [
  2761. "/Tests/"
  2762. ]
  2763. },
  2764. "notification-url": "https://packagist.org/downloads/",
  2765. "license": [
  2766. "MIT"
  2767. ],
  2768. "authors": [
  2769. {
  2770. "name": "Fabien Potencier",
  2771. "email": "fabien@symfony.com"
  2772. }
  2773. ],
  2774. "description": "This bundle generates code for you",
  2775. "time": "2016-09-06 01:30:19"
  2776. },
  2777. {
  2778. "name": "sensiolabs/security-checker",
  2779. "version": "v3.0.2",
  2780. "source": {
  2781. "type": "git",
  2782. "url": "https://github.com/sensiolabs/security-checker.git",
  2783. "reference": "21696b0daa731064c23cfb694c60a2584a7b6e93"
  2784. },
  2785. "dist": {
  2786. "type": "zip",
  2787. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/21696b0daa731064c23cfb694c60a2584a7b6e93",
  2788. "reference": "21696b0daa731064c23cfb694c60a2584a7b6e93",
  2789. "shasum": ""
  2790. },
  2791. "require": {
  2792. "symfony/console": "~2.0|~3.0"
  2793. },
  2794. "bin": [
  2795. "security-checker"
  2796. ],
  2797. "type": "library",
  2798. "extra": {
  2799. "branch-alias": {
  2800. "dev-master": "3.0-dev"
  2801. }
  2802. },
  2803. "autoload": {
  2804. "psr-0": {
  2805. "SensioLabs\\Security": ""
  2806. }
  2807. },
  2808. "notification-url": "https://packagist.org/downloads/",
  2809. "license": [
  2810. "MIT"
  2811. ],
  2812. "authors": [
  2813. {
  2814. "name": "Fabien Potencier",
  2815. "email": "fabien.potencier@gmail.com"
  2816. }
  2817. ],
  2818. "description": "A security checker for your composer.lock",
  2819. "time": "2015-11-07 08:07:40"
  2820. },
  2821. {
  2822. "name": "snc/redis-bundle",
  2823. "version": "2.0.0",
  2824. "source": {
  2825. "type": "git",
  2826. "url": "https://github.com/snc/SncRedisBundle.git",
  2827. "reference": "b8aa1a966b32c4fba6b7dac4532d5eeb1d890afb"
  2828. },
  2829. "dist": {
  2830. "type": "zip",
  2831. "url": "https://api.github.com/repos/snc/SncRedisBundle/zipball/b8aa1a966b32c4fba6b7dac4532d5eeb1d890afb",
  2832. "reference": "b8aa1a966b32c4fba6b7dac4532d5eeb1d890afb",
  2833. "shasum": ""
  2834. },
  2835. "require": {
  2836. "php": ">=5.3.3",
  2837. "symfony/framework-bundle": "^2.7 || ^3.0",
  2838. "symfony/yaml": "^2.7 || ^3.0"
  2839. },
  2840. "require-dev": {
  2841. "doctrine/cache": "1.*",
  2842. "phpunit/phpunit": "4.8.*",
  2843. "predis/predis": "^1.0",
  2844. "symfony/console": "^2.7 || ^3.0",
  2845. "symfony/phpunit-bridge": "^2.7 || ^3.0"
  2846. },
  2847. "suggest": {
  2848. "monolog/monolog": "If you want to use the monolog redis handler.",
  2849. "predis/predis": "If you want to use predis.",
  2850. "symfony/console": "If you want to use commands to interact with the redis database"
  2851. },
  2852. "type": "symfony-bundle",
  2853. "extra": {
  2854. "branch-alias": {
  2855. "dev-master": "2.x-dev"
  2856. }
  2857. },
  2858. "autoload": {
  2859. "psr-4": {
  2860. "Snc\\RedisBundle\\": ""
  2861. }
  2862. },
  2863. "notification-url": "https://packagist.org/downloads/",
  2864. "license": [
  2865. "MIT"
  2866. ],
  2867. "authors": [
  2868. {
  2869. "name": "Henrik Westphal",
  2870. "email": "henrik.westphal@gmail.com"
  2871. },
  2872. {
  2873. "name": "Community contributors",
  2874. "homepage": "https://github.com/snc/SncRedisBundle/contributors"
  2875. }
  2876. ],
  2877. "description": "A Redis bundle for Symfony",
  2878. "homepage": "https://github.com/snc/SncRedisBundle",
  2879. "keywords": [
  2880. "nosql",
  2881. "redis",
  2882. "symfony"
  2883. ],
  2884. "time": "2016-06-17 11:50:26"
  2885. },
  2886. {
  2887. "name": "solarium/solarium",
  2888. "version": "2.4.1",
  2889. "source": {
  2890. "type": "git",
  2891. "url": "https://github.com/solariumphp/solarium.git",
  2892. "reference": "f7c55cf42d14bb70f534128da3e343bb98fcb504"
  2893. },
  2894. "dist": {
  2895. "type": "zip",
  2896. "url": "https://api.github.com/repos/solariumphp/solarium/zipball/f7c55cf42d14bb70f534128da3e343bb98fcb504",
  2897. "reference": "f7c55cf42d14bb70f534128da3e343bb98fcb504",
  2898. "shasum": ""
  2899. },
  2900. "require": {
  2901. "php": ">=5.2.0"
  2902. },
  2903. "type": "library",
  2904. "autoload": {
  2905. "psr-0": {
  2906. "Solarium": "library/"
  2907. }
  2908. },
  2909. "notification-url": "https://packagist.org/downloads/",
  2910. "license": [
  2911. "NewBSD"
  2912. ],
  2913. "authors": [
  2914. {
  2915. "name": "See GitHub contributors",
  2916. "homepage": "https://github.com/basdenooijer/solarium/contributors"
  2917. }
  2918. ],
  2919. "description": "PHP Solr client",
  2920. "homepage": "http://www.solarium-project.org",
  2921. "keywords": [
  2922. "php",
  2923. "search",
  2924. "solr"
  2925. ],
  2926. "time": "2013-02-11 13:12:43"
  2927. },
  2928. {
  2929. "name": "swiftmailer/swiftmailer",
  2930. "version": "v5.4.3",
  2931. "source": {
  2932. "type": "git",
  2933. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2934. "reference": "4cc92842069c2bbc1f28daaaf1d2576ec4dfe153"
  2935. },
  2936. "dist": {
  2937. "type": "zip",
  2938. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/4cc92842069c2bbc1f28daaaf1d2576ec4dfe153",
  2939. "reference": "4cc92842069c2bbc1f28daaaf1d2576ec4dfe153",
  2940. "shasum": ""
  2941. },
  2942. "require": {
  2943. "php": ">=5.3.3"
  2944. },
  2945. "require-dev": {
  2946. "mockery/mockery": "~0.9.1"
  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-07-08 11:51:25"
  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-13 16:21:01"
  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-18 14:26:46"
  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-18 14:26:46"
  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-18 14:26:46"
  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-18 14:26:46"
  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-18 14:26:46"
  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-18 14:26:46"
  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-18 14:26:46"
  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-18 14:26:46"
  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-28 09:39:46"
  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-15 16:41:20"
  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-07 02:04:25"
  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-22 16:38:35"
  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-01 17:50:53"
  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-04 15:48:14"
  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-30 19:48:38"
  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-11 18:54:29"
  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-04 21:20:26"
  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-01 19:03:15"
  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-12 21:19:36"
  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-17 22:38:51"
  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-23 13:44:31"
  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-04 15:41:05"
  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-06 16:07:05"
  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-27 11:43:31"
  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-10 09:48:41"
  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-10 07:14:17"
  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-07 08:13:47"
  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-26 14:39:29"
  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-21 13:08:43"
  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-21 13:50:34"
  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-12 18:03:57"
  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-15 10:49:45"
  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-26 07:11:44"
  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-06 16:07:45"
  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-13 06:45:14"
  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-26 15:48:44"
  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-08 07:14:41"
  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-18 05:49:44"
  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-17 09:04:28"
  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-12 03:26:01"
  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-28 13:25:10"
  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-11 19:50:13"
  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-28 20:34:47"
  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-04 12:56:52"
  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-19 06:48:39"
  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-09 15:02:57"
  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. }