composer.lock 210 KB

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