composer.lock 188 KB

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