composer.lock 198 KB

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