composer.lock 201 KB

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