composer.lock 268 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563
  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": "c4b8ac3ab71fbcec8f0e39cb340f36ab",
  8. "packages": [
  9. {
  10. "name": "algolia/algoliasearch-client-php",
  11. "version": "2.2.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/algolia/algoliasearch-client-php.git",
  15. "reference": "7423057ca904f676307eddf300e08a26e2d194e0"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/algolia/algoliasearch-client-php/zipball/7423057ca904f676307eddf300e08a26e2d194e0",
  20. "reference": "7423057ca904f676307eddf300e08a26e2d194e0",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-curl": "*",
  25. "ext-json": "*",
  26. "ext-mbstring": "*",
  27. "php": "^5.3 || ^7.0",
  28. "psr/http-message": "^1.0",
  29. "psr/log": "^1.0",
  30. "psr/simple-cache": "^1.0"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "^4.8",
  34. "symfony/yaml": "^2.0 || ^4.0"
  35. },
  36. "suggest": {
  37. "guzzlehttp/guzzle": "If you prefer to use Guzzle HTTP client instead of the Http Client implementation provided by the package"
  38. },
  39. "bin": [
  40. "bin/algolia-doctor"
  41. ],
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-2.0": "2.0.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Algolia\\AlgoliaSearch\\": "src/"
  51. },
  52. "files": [
  53. "src/Http/Psr7/functions.php",
  54. "src/functions.php"
  55. ]
  56. },
  57. "notification-url": "https://packagist.org/downloads/",
  58. "license": [
  59. "MIT"
  60. ],
  61. "authors": [
  62. {
  63. "name": "Algolia Team",
  64. "email": "contact@algolia.com"
  65. }
  66. ],
  67. "description": "Algolia Search API Client for PHP",
  68. "keywords": [
  69. "algolia",
  70. "api",
  71. "client",
  72. "php",
  73. "search"
  74. ],
  75. "time": "2019-02-26T15:58:17+00:00"
  76. },
  77. {
  78. "name": "bacon/bacon-qr-code",
  79. "version": "2.0.0",
  80. "source": {
  81. "type": "git",
  82. "url": "https://github.com/Bacon/BaconQrCode.git",
  83. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0"
  84. },
  85. "dist": {
  86. "type": "zip",
  87. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/eaac909da3ccc32b748a65b127acd8918f58d9b0",
  88. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0",
  89. "shasum": ""
  90. },
  91. "require": {
  92. "dasprid/enum": "^1.0",
  93. "ext-iconv": "*",
  94. "php": "^7.1"
  95. },
  96. "require-dev": {
  97. "phly/keep-a-changelog": "^1.4",
  98. "phpunit/phpunit": "^6.4",
  99. "squizlabs/php_codesniffer": "^3.1"
  100. },
  101. "suggest": {
  102. "ext-imagick": "to generate QR code images"
  103. },
  104. "type": "library",
  105. "autoload": {
  106. "psr-4": {
  107. "BaconQrCode\\": "src/"
  108. }
  109. },
  110. "notification-url": "https://packagist.org/downloads/",
  111. "license": [
  112. "BSD-2-Clause"
  113. ],
  114. "authors": [
  115. {
  116. "name": "Ben Scholzen 'DASPRiD'",
  117. "email": "mail@dasprids.de",
  118. "homepage": "http://www.dasprids.de",
  119. "role": "Developer"
  120. }
  121. ],
  122. "description": "BaconQrCode is a QR code generator for PHP.",
  123. "homepage": "https://github.com/Bacon/BaconQrCode",
  124. "time": "2018-04-25T17:53:56+00:00"
  125. },
  126. {
  127. "name": "beberlei/assert",
  128. "version": "v3.2.3",
  129. "source": {
  130. "type": "git",
  131. "url": "https://github.com/beberlei/assert.git",
  132. "reference": "65b8152224aef7d3c197d5db05211d4319711b66"
  133. },
  134. "dist": {
  135. "type": "zip",
  136. "url": "https://api.github.com/repos/beberlei/assert/zipball/65b8152224aef7d3c197d5db05211d4319711b66",
  137. "reference": "65b8152224aef7d3c197d5db05211d4319711b66",
  138. "shasum": ""
  139. },
  140. "require": {
  141. "ext-ctype": "*",
  142. "ext-intl": "*",
  143. "ext-json": "*",
  144. "ext-mbstring": "*",
  145. "ext-simplexml": "*",
  146. "php": "^7"
  147. },
  148. "require-dev": {
  149. "friendsofphp/php-cs-fixer": "*",
  150. "phpstan/phpstan-shim": "*",
  151. "phpunit/phpunit": ">=6.0.0 <8"
  152. },
  153. "type": "library",
  154. "autoload": {
  155. "psr-4": {
  156. "Assert\\": "lib/Assert"
  157. },
  158. "files": [
  159. "lib/Assert/functions.php"
  160. ]
  161. },
  162. "notification-url": "https://packagist.org/downloads/",
  163. "license": [
  164. "BSD-2-Clause"
  165. ],
  166. "authors": [
  167. {
  168. "name": "Benjamin Eberlei",
  169. "email": "kontakt@beberlei.de",
  170. "role": "Lead Developer"
  171. },
  172. {
  173. "name": "Richard Quadling",
  174. "email": "rquadling@gmail.com",
  175. "role": "Collaborator"
  176. }
  177. ],
  178. "description": "Thin assertion library for input validation in business models.",
  179. "keywords": [
  180. "assert",
  181. "assertion",
  182. "validation"
  183. ],
  184. "time": "2019-08-23T17:56:26+00:00"
  185. },
  186. {
  187. "name": "cebe/markdown",
  188. "version": "1.2.1",
  189. "source": {
  190. "type": "git",
  191. "url": "https://github.com/cebe/markdown.git",
  192. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
  193. },
  194. "dist": {
  195. "type": "zip",
  196. "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  197. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  198. "shasum": ""
  199. },
  200. "require": {
  201. "lib-pcre": "*",
  202. "php": ">=5.4.0"
  203. },
  204. "require-dev": {
  205. "cebe/indent": "*",
  206. "facebook/xhprof": "*@dev",
  207. "phpunit/phpunit": "4.1.*"
  208. },
  209. "bin": [
  210. "bin/markdown"
  211. ],
  212. "type": "library",
  213. "extra": {
  214. "branch-alias": {
  215. "dev-master": "1.2.x-dev"
  216. }
  217. },
  218. "autoload": {
  219. "psr-4": {
  220. "cebe\\markdown\\": ""
  221. }
  222. },
  223. "notification-url": "https://packagist.org/downloads/",
  224. "license": [
  225. "MIT"
  226. ],
  227. "authors": [
  228. {
  229. "name": "Carsten Brandt",
  230. "email": "mail@cebe.cc",
  231. "homepage": "http://cebe.cc/",
  232. "role": "Creator"
  233. }
  234. ],
  235. "description": "A super fast, highly extensible markdown parser for PHP",
  236. "homepage": "https://github.com/cebe/markdown#readme",
  237. "keywords": [
  238. "extensible",
  239. "fast",
  240. "gfm",
  241. "markdown",
  242. "markdown-extra"
  243. ],
  244. "time": "2018-03-26T11:24:36+00:00"
  245. },
  246. {
  247. "name": "clue/stream-filter",
  248. "version": "v1.4.0",
  249. "source": {
  250. "type": "git",
  251. "url": "https://github.com/clue/php-stream-filter.git",
  252. "reference": "d80fdee9b3a7e0d16fc330a22f41f3ad0eeb09d0"
  253. },
  254. "dist": {
  255. "type": "zip",
  256. "url": "https://api.github.com/repos/clue/php-stream-filter/zipball/d80fdee9b3a7e0d16fc330a22f41f3ad0eeb09d0",
  257. "reference": "d80fdee9b3a7e0d16fc330a22f41f3ad0eeb09d0",
  258. "shasum": ""
  259. },
  260. "require": {
  261. "php": ">=5.3"
  262. },
  263. "require-dev": {
  264. "phpunit/phpunit": "^5.0 || ^4.8"
  265. },
  266. "type": "library",
  267. "autoload": {
  268. "psr-4": {
  269. "Clue\\StreamFilter\\": "src/"
  270. },
  271. "files": [
  272. "src/functions.php"
  273. ]
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Christian Lück",
  282. "email": "christian@lueck.tv"
  283. }
  284. ],
  285. "description": "A simple and modern approach to stream filtering in PHP",
  286. "homepage": "https://github.com/clue/php-stream-filter",
  287. "keywords": [
  288. "bucket brigade",
  289. "callback",
  290. "filter",
  291. "php_user_filter",
  292. "stream",
  293. "stream_filter_append",
  294. "stream_filter_register"
  295. ],
  296. "time": "2017-08-18T09:54:01+00:00"
  297. },
  298. {
  299. "name": "composer/ca-bundle",
  300. "version": "1.1.4",
  301. "source": {
  302. "type": "git",
  303. "url": "https://github.com/composer/ca-bundle.git",
  304. "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d"
  305. },
  306. "dist": {
  307. "type": "zip",
  308. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/558f321c52faeb4828c03e7dc0cfe39a09e09a2d",
  309. "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d",
  310. "shasum": ""
  311. },
  312. "require": {
  313. "ext-openssl": "*",
  314. "ext-pcre": "*",
  315. "php": "^5.3.2 || ^7.0"
  316. },
  317. "require-dev": {
  318. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  319. "psr/log": "^1.0",
  320. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  321. },
  322. "type": "library",
  323. "extra": {
  324. "branch-alias": {
  325. "dev-master": "1.x-dev"
  326. }
  327. },
  328. "autoload": {
  329. "psr-4": {
  330. "Composer\\CaBundle\\": "src"
  331. }
  332. },
  333. "notification-url": "https://packagist.org/downloads/",
  334. "license": [
  335. "MIT"
  336. ],
  337. "authors": [
  338. {
  339. "name": "Jordi Boggiano",
  340. "email": "j.boggiano@seld.be",
  341. "homepage": "http://seld.be"
  342. }
  343. ],
  344. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  345. "keywords": [
  346. "cabundle",
  347. "cacert",
  348. "certificate",
  349. "ssl",
  350. "tls"
  351. ],
  352. "time": "2019-01-28T09:30:10+00:00"
  353. },
  354. {
  355. "name": "composer/composer",
  356. "version": "dev-master",
  357. "source": {
  358. "type": "git",
  359. "url": "https://github.com/composer/composer.git",
  360. "reference": "88852fbf1adfc1ffeb91e2db7cbbe1aa7f0321f9"
  361. },
  362. "dist": {
  363. "type": "zip",
  364. "url": "https://api.github.com/repos/composer/composer/zipball/88852fbf1adfc1ffeb91e2db7cbbe1aa7f0321f9",
  365. "reference": "88852fbf1adfc1ffeb91e2db7cbbe1aa7f0321f9",
  366. "shasum": ""
  367. },
  368. "require": {
  369. "composer/ca-bundle": "^1.0",
  370. "composer/semver": "^1.0",
  371. "composer/spdx-licenses": "^1.2",
  372. "composer/xdebug-handler": "^1.1",
  373. "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
  374. "php": "^5.3.2 || ^7.0",
  375. "psr/log": "^1.0",
  376. "seld/jsonlint": "^1.4",
  377. "seld/phar-utils": "^1.0",
  378. "symfony/console": "^2.7 || ^3.0 || ^4.0",
  379. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0",
  380. "symfony/finder": "^2.7 || ^3.0 || ^4.0",
  381. "symfony/process": "^2.7 || ^3.0 || ^4.0"
  382. },
  383. "conflict": {
  384. "symfony/console": "2.8.38"
  385. },
  386. "require-dev": {
  387. "phpunit/phpunit": "^4.8.35 || ^5.7",
  388. "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
  389. },
  390. "suggest": {
  391. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  392. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  393. "ext-zlib": "Allow gzip compression of HTTP requests"
  394. },
  395. "bin": [
  396. "bin/composer"
  397. ],
  398. "type": "library",
  399. "extra": {
  400. "branch-alias": {
  401. "dev-master": "1.9-dev"
  402. }
  403. },
  404. "autoload": {
  405. "psr-4": {
  406. "Composer\\": "src/Composer"
  407. }
  408. },
  409. "notification-url": "https://packagist.org/downloads/",
  410. "license": [
  411. "MIT"
  412. ],
  413. "authors": [
  414. {
  415. "name": "Nils Adermann",
  416. "email": "naderman@naderman.de",
  417. "homepage": "http://www.naderman.de"
  418. },
  419. {
  420. "name": "Jordi Boggiano",
  421. "email": "j.boggiano@seld.be",
  422. "homepage": "http://seld.be"
  423. }
  424. ],
  425. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  426. "homepage": "https://getcomposer.org/",
  427. "keywords": [
  428. "autoload",
  429. "dependency",
  430. "package"
  431. ],
  432. "time": "2019-04-02T09:15:23+00:00"
  433. },
  434. {
  435. "name": "composer/semver",
  436. "version": "1.5.0",
  437. "source": {
  438. "type": "git",
  439. "url": "https://github.com/composer/semver.git",
  440. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  441. },
  442. "dist": {
  443. "type": "zip",
  444. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  445. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  446. "shasum": ""
  447. },
  448. "require": {
  449. "php": "^5.3.2 || ^7.0"
  450. },
  451. "require-dev": {
  452. "phpunit/phpunit": "^4.5 || ^5.0.5",
  453. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  454. },
  455. "type": "library",
  456. "extra": {
  457. "branch-alias": {
  458. "dev-master": "1.x-dev"
  459. }
  460. },
  461. "autoload": {
  462. "psr-4": {
  463. "Composer\\Semver\\": "src"
  464. }
  465. },
  466. "notification-url": "https://packagist.org/downloads/",
  467. "license": [
  468. "MIT"
  469. ],
  470. "authors": [
  471. {
  472. "name": "Nils Adermann",
  473. "email": "naderman@naderman.de",
  474. "homepage": "http://www.naderman.de"
  475. },
  476. {
  477. "name": "Jordi Boggiano",
  478. "email": "j.boggiano@seld.be",
  479. "homepage": "http://seld.be"
  480. },
  481. {
  482. "name": "Rob Bast",
  483. "email": "rob.bast@gmail.com",
  484. "homepage": "http://robbast.nl"
  485. }
  486. ],
  487. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  488. "keywords": [
  489. "semantic",
  490. "semver",
  491. "validation",
  492. "versioning"
  493. ],
  494. "time": "2019-03-19T17:25:45+00:00"
  495. },
  496. {
  497. "name": "composer/spdx-licenses",
  498. "version": "1.5.1",
  499. "source": {
  500. "type": "git",
  501. "url": "https://github.com/composer/spdx-licenses.git",
  502. "reference": "a1aa51cf3ab838b83b0867b14e56fc20fbd55b3d"
  503. },
  504. "dist": {
  505. "type": "zip",
  506. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/a1aa51cf3ab838b83b0867b14e56fc20fbd55b3d",
  507. "reference": "a1aa51cf3ab838b83b0867b14e56fc20fbd55b3d",
  508. "shasum": ""
  509. },
  510. "require": {
  511. "php": "^5.3.2 || ^7.0 || ^8.0"
  512. },
  513. "require-dev": {
  514. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  515. },
  516. "type": "library",
  517. "extra": {
  518. "branch-alias": {
  519. "dev-master": "1.x-dev"
  520. }
  521. },
  522. "autoload": {
  523. "psr-4": {
  524. "Composer\\Spdx\\": "src"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Nils Adermann",
  534. "email": "naderman@naderman.de",
  535. "homepage": "http://www.naderman.de"
  536. },
  537. {
  538. "name": "Jordi Boggiano",
  539. "email": "j.boggiano@seld.be",
  540. "homepage": "http://seld.be"
  541. },
  542. {
  543. "name": "Rob Bast",
  544. "email": "rob.bast@gmail.com",
  545. "homepage": "http://robbast.nl"
  546. }
  547. ],
  548. "description": "SPDX licenses list and validation library.",
  549. "keywords": [
  550. "license",
  551. "spdx",
  552. "validator"
  553. ],
  554. "time": "2019-03-26T10:23:26+00:00"
  555. },
  556. {
  557. "name": "composer/xdebug-handler",
  558. "version": "1.3.2",
  559. "source": {
  560. "type": "git",
  561. "url": "https://github.com/composer/xdebug-handler.git",
  562. "reference": "d17708133b6c276d6e42ef887a877866b909d892"
  563. },
  564. "dist": {
  565. "type": "zip",
  566. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/d17708133b6c276d6e42ef887a877866b909d892",
  567. "reference": "d17708133b6c276d6e42ef887a877866b909d892",
  568. "shasum": ""
  569. },
  570. "require": {
  571. "php": "^5.3.2 || ^7.0",
  572. "psr/log": "^1.0"
  573. },
  574. "require-dev": {
  575. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  576. },
  577. "type": "library",
  578. "autoload": {
  579. "psr-4": {
  580. "Composer\\XdebugHandler\\": "src"
  581. }
  582. },
  583. "notification-url": "https://packagist.org/downloads/",
  584. "license": [
  585. "MIT"
  586. ],
  587. "authors": [
  588. {
  589. "name": "John Stevenson",
  590. "email": "john-stevenson@blueyonder.co.uk"
  591. }
  592. ],
  593. "description": "Restarts a process without xdebug.",
  594. "keywords": [
  595. "Xdebug",
  596. "performance"
  597. ],
  598. "time": "2019-01-28T20:25:53+00:00"
  599. },
  600. {
  601. "name": "container-interop/container-interop",
  602. "version": "1.2.0",
  603. "source": {
  604. "type": "git",
  605. "url": "https://github.com/container-interop/container-interop.git",
  606. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  607. },
  608. "dist": {
  609. "type": "zip",
  610. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  611. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  612. "shasum": ""
  613. },
  614. "require": {
  615. "psr/container": "^1.0"
  616. },
  617. "type": "library",
  618. "autoload": {
  619. "psr-4": {
  620. "Interop\\Container\\": "src/Interop/Container/"
  621. }
  622. },
  623. "notification-url": "https://packagist.org/downloads/",
  624. "license": [
  625. "MIT"
  626. ],
  627. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  628. "homepage": "https://github.com/container-interop/container-interop",
  629. "time": "2017-02-14T19:40:03+00:00"
  630. },
  631. {
  632. "name": "dasprid/enum",
  633. "version": "1.0.0",
  634. "source": {
  635. "type": "git",
  636. "url": "https://github.com/DASPRiD/Enum.git",
  637. "reference": "631ef6e638e9494b0310837fa531bedd908fc22b"
  638. },
  639. "dist": {
  640. "type": "zip",
  641. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/631ef6e638e9494b0310837fa531bedd908fc22b",
  642. "reference": "631ef6e638e9494b0310837fa531bedd908fc22b",
  643. "shasum": ""
  644. },
  645. "require-dev": {
  646. "phpunit/phpunit": "^6.4",
  647. "squizlabs/php_codesniffer": "^3.1"
  648. },
  649. "type": "library",
  650. "autoload": {
  651. "psr-4": {
  652. "DASPRiD\\Enum\\": "src/"
  653. }
  654. },
  655. "notification-url": "https://packagist.org/downloads/",
  656. "license": [
  657. "BSD-2-Clause"
  658. ],
  659. "authors": [
  660. {
  661. "name": "Ben Scholzen 'DASPRiD'",
  662. "email": "mail@dasprids.de",
  663. "homepage": "https://dasprids.de/"
  664. }
  665. ],
  666. "description": "PHP 7.1 enum implementation",
  667. "keywords": [
  668. "enum",
  669. "map"
  670. ],
  671. "time": "2017-10-25T22:45:27+00:00"
  672. },
  673. {
  674. "name": "doctrine/annotations",
  675. "version": "v1.6.1",
  676. "source": {
  677. "type": "git",
  678. "url": "https://github.com/doctrine/annotations.git",
  679. "reference": "53120e0eb10355388d6ccbe462f1fea34ddadb24"
  680. },
  681. "dist": {
  682. "type": "zip",
  683. "url": "https://api.github.com/repos/doctrine/annotations/zipball/53120e0eb10355388d6ccbe462f1fea34ddadb24",
  684. "reference": "53120e0eb10355388d6ccbe462f1fea34ddadb24",
  685. "shasum": ""
  686. },
  687. "require": {
  688. "doctrine/lexer": "1.*",
  689. "php": "^7.1"
  690. },
  691. "require-dev": {
  692. "doctrine/cache": "1.*",
  693. "phpunit/phpunit": "^6.4"
  694. },
  695. "type": "library",
  696. "extra": {
  697. "branch-alias": {
  698. "dev-master": "1.6.x-dev"
  699. }
  700. },
  701. "autoload": {
  702. "psr-4": {
  703. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  704. }
  705. },
  706. "notification-url": "https://packagist.org/downloads/",
  707. "license": [
  708. "MIT"
  709. ],
  710. "authors": [
  711. {
  712. "name": "Roman Borschel",
  713. "email": "roman@code-factory.org"
  714. },
  715. {
  716. "name": "Benjamin Eberlei",
  717. "email": "kontakt@beberlei.de"
  718. },
  719. {
  720. "name": "Guilherme Blanco",
  721. "email": "guilhermeblanco@gmail.com"
  722. },
  723. {
  724. "name": "Jonathan Wage",
  725. "email": "jonwage@gmail.com"
  726. },
  727. {
  728. "name": "Johannes Schmitt",
  729. "email": "schmittjoh@gmail.com"
  730. }
  731. ],
  732. "description": "Docblock Annotations Parser",
  733. "homepage": "http://www.doctrine-project.org",
  734. "keywords": [
  735. "annotations",
  736. "docblock",
  737. "parser"
  738. ],
  739. "time": "2019-03-25T19:12:02+00:00"
  740. },
  741. {
  742. "name": "doctrine/cache",
  743. "version": "v1.8.0",
  744. "source": {
  745. "type": "git",
  746. "url": "https://github.com/doctrine/cache.git",
  747. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
  748. },
  749. "dist": {
  750. "type": "zip",
  751. "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
  752. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
  753. "shasum": ""
  754. },
  755. "require": {
  756. "php": "~7.1"
  757. },
  758. "conflict": {
  759. "doctrine/common": ">2.2,<2.4"
  760. },
  761. "require-dev": {
  762. "alcaeus/mongo-php-adapter": "^1.1",
  763. "doctrine/coding-standard": "^4.0",
  764. "mongodb/mongodb": "^1.1",
  765. "phpunit/phpunit": "^7.0",
  766. "predis/predis": "~1.0"
  767. },
  768. "suggest": {
  769. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  770. },
  771. "type": "library",
  772. "extra": {
  773. "branch-alias": {
  774. "dev-master": "1.8.x-dev"
  775. }
  776. },
  777. "autoload": {
  778. "psr-4": {
  779. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  780. }
  781. },
  782. "notification-url": "https://packagist.org/downloads/",
  783. "license": [
  784. "MIT"
  785. ],
  786. "description": "Caching library offering an object-oriented API for many cache backends",
  787. "homepage": "https://www.doctrine-project.org",
  788. "time": "2018-08-21T18:01:43+00:00"
  789. },
  790. {
  791. "name": "doctrine/collections",
  792. "version": "v1.6.1",
  793. "source": {
  794. "type": "git",
  795. "url": "https://github.com/doctrine/collections.git",
  796. "reference": "d2ae4ef05e25197343b6a39bae1d3c427a2f6956"
  797. },
  798. "dist": {
  799. "type": "zip",
  800. "url": "https://api.github.com/repos/doctrine/collections/zipball/d2ae4ef05e25197343b6a39bae1d3c427a2f6956",
  801. "reference": "d2ae4ef05e25197343b6a39bae1d3c427a2f6956",
  802. "shasum": ""
  803. },
  804. "require": {
  805. "php": "^7.1.3"
  806. },
  807. "require-dev": {
  808. "doctrine/coding-standard": "^6.0",
  809. "phpstan/phpstan-shim": "^0.9.2",
  810. "phpunit/phpunit": "^7.0",
  811. "vimeo/psalm": "^3.2.2"
  812. },
  813. "type": "library",
  814. "extra": {
  815. "branch-alias": {
  816. "dev-master": "1.6.x-dev"
  817. }
  818. },
  819. "autoload": {
  820. "psr-4": {
  821. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  822. }
  823. },
  824. "notification-url": "https://packagist.org/downloads/",
  825. "license": [
  826. "MIT"
  827. ],
  828. "authors": [
  829. {
  830. "name": "Roman Borschel",
  831. "email": "roman@code-factory.org"
  832. },
  833. {
  834. "name": "Benjamin Eberlei",
  835. "email": "kontakt@beberlei.de"
  836. },
  837. {
  838. "name": "Guilherme Blanco",
  839. "email": "guilhermeblanco@gmail.com"
  840. },
  841. {
  842. "name": "Jonathan Wage",
  843. "email": "jonwage@gmail.com"
  844. },
  845. {
  846. "name": "Johannes Schmitt",
  847. "email": "schmittjoh@gmail.com"
  848. }
  849. ],
  850. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  851. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  852. "keywords": [
  853. "array",
  854. "collections",
  855. "iterators",
  856. "php"
  857. ],
  858. "time": "2019-03-25T19:03:48+00:00"
  859. },
  860. {
  861. "name": "doctrine/common",
  862. "version": "v2.10.0",
  863. "source": {
  864. "type": "git",
  865. "url": "https://github.com/doctrine/common.git",
  866. "reference": "30e33f60f64deec87df728c02b107f82cdafad9d"
  867. },
  868. "dist": {
  869. "type": "zip",
  870. "url": "https://api.github.com/repos/doctrine/common/zipball/30e33f60f64deec87df728c02b107f82cdafad9d",
  871. "reference": "30e33f60f64deec87df728c02b107f82cdafad9d",
  872. "shasum": ""
  873. },
  874. "require": {
  875. "doctrine/annotations": "^1.0",
  876. "doctrine/cache": "^1.0",
  877. "doctrine/collections": "^1.0",
  878. "doctrine/event-manager": "^1.0",
  879. "doctrine/inflector": "^1.0",
  880. "doctrine/lexer": "^1.0",
  881. "doctrine/persistence": "^1.1",
  882. "doctrine/reflection": "^1.0",
  883. "php": "^7.1"
  884. },
  885. "require-dev": {
  886. "doctrine/coding-standard": "^1.0",
  887. "phpunit/phpunit": "^6.3",
  888. "squizlabs/php_codesniffer": "^3.0",
  889. "symfony/phpunit-bridge": "^4.0.5"
  890. },
  891. "type": "library",
  892. "extra": {
  893. "branch-alias": {
  894. "dev-master": "2.10.x-dev"
  895. }
  896. },
  897. "autoload": {
  898. "psr-4": {
  899. "Doctrine\\Common\\": "lib/Doctrine/Common"
  900. }
  901. },
  902. "notification-url": "https://packagist.org/downloads/",
  903. "license": [
  904. "MIT"
  905. ],
  906. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  907. "homepage": "https://www.doctrine-project.org/projects/common.html",
  908. "time": "2018-11-21T01:24:55+00:00"
  909. },
  910. {
  911. "name": "doctrine/dbal",
  912. "version": "v2.9.2",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/doctrine/dbal.git",
  916. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://api.github.com/repos/doctrine/dbal/zipball/22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  921. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  922. "shasum": ""
  923. },
  924. "require": {
  925. "doctrine/cache": "^1.0",
  926. "doctrine/event-manager": "^1.0",
  927. "ext-pdo": "*",
  928. "php": "^7.1"
  929. },
  930. "require-dev": {
  931. "doctrine/coding-standard": "^5.0",
  932. "jetbrains/phpstorm-stubs": "^2018.1.2",
  933. "phpstan/phpstan": "^0.10.1",
  934. "phpunit/phpunit": "^7.4",
  935. "symfony/console": "^2.0.5|^3.0|^4.0",
  936. "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
  937. },
  938. "suggest": {
  939. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  940. },
  941. "bin": [
  942. "bin/doctrine-dbal"
  943. ],
  944. "type": "library",
  945. "extra": {
  946. "branch-alias": {
  947. "dev-master": "2.9.x-dev",
  948. "dev-develop": "3.0.x-dev"
  949. }
  950. },
  951. "autoload": {
  952. "psr-4": {
  953. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  954. }
  955. },
  956. "notification-url": "https://packagist.org/downloads/",
  957. "license": [
  958. "MIT"
  959. ],
  960. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  961. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  962. "time": "2018-12-31T03:27:51+00:00"
  963. },
  964. {
  965. "name": "doctrine/doctrine-bundle",
  966. "version": "1.10.2",
  967. "source": {
  968. "type": "git",
  969. "url": "https://github.com/doctrine/DoctrineBundle.git",
  970. "reference": "1f99e6645030542079c57d4680601a4a8778a1bd"
  971. },
  972. "dist": {
  973. "type": "zip",
  974. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/1f99e6645030542079c57d4680601a4a8778a1bd",
  975. "reference": "1f99e6645030542079c57d4680601a4a8778a1bd",
  976. "shasum": ""
  977. },
  978. "require": {
  979. "doctrine/dbal": "^2.5.12",
  980. "doctrine/doctrine-cache-bundle": "~1.2",
  981. "jdorn/sql-formatter": "^1.2.16",
  982. "php": "^5.5.9|^7.0",
  983. "symfony/console": "~2.7|~3.0|~4.0",
  984. "symfony/dependency-injection": "~2.7|~3.0|~4.0",
  985. "symfony/doctrine-bridge": "~2.7|~3.0|~4.0",
  986. "symfony/framework-bundle": "^2.7.22|~3.0|~4.0"
  987. },
  988. "conflict": {
  989. "symfony/http-foundation": "<2.6"
  990. },
  991. "require-dev": {
  992. "doctrine/orm": "~2.4",
  993. "php-coveralls/php-coveralls": "^2.1",
  994. "phpunit/phpunit": "^4.8.36|^5.7|^6.4",
  995. "symfony/phpunit-bridge": "~2.7|~3.0|~4.0",
  996. "symfony/property-info": "~2.8|~3.0|~4.0",
  997. "symfony/validator": "~2.7|~3.0|~4.0",
  998. "symfony/web-profiler-bundle": "~2.7|~3.0|~4.0",
  999. "symfony/yaml": "~2.7|~3.0|~4.0",
  1000. "twig/twig": "~1.26|~2.0"
  1001. },
  1002. "suggest": {
  1003. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  1004. "symfony/web-profiler-bundle": "To use the data collector."
  1005. },
  1006. "type": "symfony-bundle",
  1007. "extra": {
  1008. "branch-alias": {
  1009. "dev-master": "1.9.x-dev"
  1010. }
  1011. },
  1012. "autoload": {
  1013. "psr-4": {
  1014. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  1015. }
  1016. },
  1017. "notification-url": "https://packagist.org/downloads/",
  1018. "license": [
  1019. "MIT"
  1020. ],
  1021. "description": "Symfony DoctrineBundle",
  1022. "homepage": "http://www.doctrine-project.org",
  1023. "time": "2019-02-06T13:18:04+00:00"
  1024. },
  1025. {
  1026. "name": "doctrine/doctrine-cache-bundle",
  1027. "version": "1.3.5",
  1028. "source": {
  1029. "type": "git",
  1030. "url": "https://github.com/doctrine/DoctrineCacheBundle.git",
  1031. "reference": "5514c90d9fb595e1095e6d66ebb98ce9ef049927"
  1032. },
  1033. "dist": {
  1034. "type": "zip",
  1035. "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/5514c90d9fb595e1095e6d66ebb98ce9ef049927",
  1036. "reference": "5514c90d9fb595e1095e6d66ebb98ce9ef049927",
  1037. "shasum": ""
  1038. },
  1039. "require": {
  1040. "doctrine/cache": "^1.4.2",
  1041. "doctrine/inflector": "~1.0",
  1042. "php": ">=5.3.2",
  1043. "symfony/doctrine-bridge": "~2.7|~3.3|~4.0"
  1044. },
  1045. "require-dev": {
  1046. "instaclick/coding-standard": "~1.1",
  1047. "instaclick/object-calisthenics-sniffs": "dev-master",
  1048. "instaclick/symfony2-coding-standard": "dev-remaster",
  1049. "phpunit/phpunit": "~4.8.36|~5.6|~6.5|~7.0",
  1050. "predis/predis": "~0.8",
  1051. "satooshi/php-coveralls": "^1.0",
  1052. "squizlabs/php_codesniffer": "~1.5",
  1053. "symfony/console": "~2.7|~3.3|~4.0",
  1054. "symfony/finder": "~2.7|~3.3|~4.0",
  1055. "symfony/framework-bundle": "~2.7|~3.3|~4.0",
  1056. "symfony/phpunit-bridge": "~2.7|~3.3|~4.0",
  1057. "symfony/security-acl": "~2.7|~3.3",
  1058. "symfony/validator": "~2.7|~3.3|~4.0",
  1059. "symfony/yaml": "~2.7|~3.3|~4.0"
  1060. },
  1061. "suggest": {
  1062. "symfony/security-acl": "For using this bundle to cache ACLs"
  1063. },
  1064. "type": "symfony-bundle",
  1065. "extra": {
  1066. "branch-alias": {
  1067. "dev-master": "1.3.x-dev"
  1068. }
  1069. },
  1070. "autoload": {
  1071. "psr-4": {
  1072. "Doctrine\\Bundle\\DoctrineCacheBundle\\": ""
  1073. },
  1074. "exclude-from-classmap": [
  1075. "/Tests/"
  1076. ]
  1077. },
  1078. "notification-url": "https://packagist.org/downloads/",
  1079. "license": [
  1080. "MIT"
  1081. ],
  1082. "authors": [
  1083. {
  1084. "name": "Symfony Community",
  1085. "homepage": "http://symfony.com/contributors"
  1086. },
  1087. {
  1088. "name": "Benjamin Eberlei",
  1089. "email": "kontakt@beberlei.de"
  1090. },
  1091. {
  1092. "name": "Fabio B. Silva",
  1093. "email": "fabio.bat.silva@gmail.com"
  1094. },
  1095. {
  1096. "name": "Guilherme Blanco",
  1097. "email": "guilhermeblanco@hotmail.com"
  1098. },
  1099. {
  1100. "name": "Doctrine Project",
  1101. "homepage": "http://www.doctrine-project.org/"
  1102. },
  1103. {
  1104. "name": "Fabien Potencier",
  1105. "email": "fabien@symfony.com"
  1106. }
  1107. ],
  1108. "description": "Symfony Bundle for Doctrine Cache",
  1109. "homepage": "https://www.doctrine-project.org",
  1110. "keywords": [
  1111. "cache",
  1112. "caching"
  1113. ],
  1114. "time": "2018-11-09T06:25:35+00:00"
  1115. },
  1116. {
  1117. "name": "doctrine/event-manager",
  1118. "version": "v1.0.0",
  1119. "source": {
  1120. "type": "git",
  1121. "url": "https://github.com/doctrine/event-manager.git",
  1122. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
  1123. },
  1124. "dist": {
  1125. "type": "zip",
  1126. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  1127. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  1128. "shasum": ""
  1129. },
  1130. "require": {
  1131. "php": "^7.1"
  1132. },
  1133. "conflict": {
  1134. "doctrine/common": "<2.9@dev"
  1135. },
  1136. "require-dev": {
  1137. "doctrine/coding-standard": "^4.0",
  1138. "phpunit/phpunit": "^7.0"
  1139. },
  1140. "type": "library",
  1141. "extra": {
  1142. "branch-alias": {
  1143. "dev-master": "1.0.x-dev"
  1144. }
  1145. },
  1146. "autoload": {
  1147. "psr-4": {
  1148. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1149. }
  1150. },
  1151. "notification-url": "https://packagist.org/downloads/",
  1152. "license": [
  1153. "MIT"
  1154. ],
  1155. "description": "Doctrine Event Manager component",
  1156. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1157. "time": "2018-06-11T11:59:03+00:00"
  1158. },
  1159. {
  1160. "name": "doctrine/inflector",
  1161. "version": "v1.3.0",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/doctrine/inflector.git",
  1165. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  1170. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  1171. "shasum": ""
  1172. },
  1173. "require": {
  1174. "php": "^7.1"
  1175. },
  1176. "require-dev": {
  1177. "phpunit/phpunit": "^6.2"
  1178. },
  1179. "type": "library",
  1180. "extra": {
  1181. "branch-alias": {
  1182. "dev-master": "1.3.x-dev"
  1183. }
  1184. },
  1185. "autoload": {
  1186. "psr-4": {
  1187. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1188. }
  1189. },
  1190. "notification-url": "https://packagist.org/downloads/",
  1191. "license": [
  1192. "MIT"
  1193. ],
  1194. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1195. "homepage": "http://www.doctrine-project.org",
  1196. "time": "2018-01-09T20:05:19+00:00"
  1197. },
  1198. {
  1199. "name": "doctrine/instantiator",
  1200. "version": "1.2.0",
  1201. "source": {
  1202. "type": "git",
  1203. "url": "https://github.com/doctrine/instantiator.git",
  1204. "reference": "a2c590166b2133a4633738648b6b064edae0814a"
  1205. },
  1206. "dist": {
  1207. "type": "zip",
  1208. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a",
  1209. "reference": "a2c590166b2133a4633738648b6b064edae0814a",
  1210. "shasum": ""
  1211. },
  1212. "require": {
  1213. "php": "^7.1"
  1214. },
  1215. "require-dev": {
  1216. "doctrine/coding-standard": "^6.0",
  1217. "ext-pdo": "*",
  1218. "ext-phar": "*",
  1219. "phpbench/phpbench": "^0.13",
  1220. "phpstan/phpstan-phpunit": "^0.11",
  1221. "phpstan/phpstan-shim": "^0.11",
  1222. "phpunit/phpunit": "^7.0"
  1223. },
  1224. "type": "library",
  1225. "extra": {
  1226. "branch-alias": {
  1227. "dev-master": "1.2.x-dev"
  1228. }
  1229. },
  1230. "autoload": {
  1231. "psr-4": {
  1232. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1233. }
  1234. },
  1235. "notification-url": "https://packagist.org/downloads/",
  1236. "license": [
  1237. "MIT"
  1238. ],
  1239. "authors": [
  1240. {
  1241. "name": "Marco Pivetta",
  1242. "email": "ocramius@gmail.com",
  1243. "homepage": "http://ocramius.github.com/"
  1244. }
  1245. ],
  1246. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1247. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1248. "keywords": [
  1249. "constructor",
  1250. "instantiate"
  1251. ],
  1252. "time": "2019-03-17T17:37:11+00:00"
  1253. },
  1254. {
  1255. "name": "doctrine/lexer",
  1256. "version": "v1.0.1",
  1257. "source": {
  1258. "type": "git",
  1259. "url": "https://github.com/doctrine/lexer.git",
  1260. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1261. },
  1262. "dist": {
  1263. "type": "zip",
  1264. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1265. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1266. "shasum": ""
  1267. },
  1268. "require": {
  1269. "php": ">=5.3.2"
  1270. },
  1271. "type": "library",
  1272. "extra": {
  1273. "branch-alias": {
  1274. "dev-master": "1.0.x-dev"
  1275. }
  1276. },
  1277. "autoload": {
  1278. "psr-0": {
  1279. "Doctrine\\Common\\Lexer\\": "lib/"
  1280. }
  1281. },
  1282. "notification-url": "https://packagist.org/downloads/",
  1283. "license": [
  1284. "MIT"
  1285. ],
  1286. "authors": [
  1287. {
  1288. "name": "Roman Borschel",
  1289. "email": "roman@code-factory.org"
  1290. },
  1291. {
  1292. "name": "Guilherme Blanco",
  1293. "email": "guilhermeblanco@gmail.com"
  1294. },
  1295. {
  1296. "name": "Johannes Schmitt",
  1297. "email": "schmittjoh@gmail.com"
  1298. }
  1299. ],
  1300. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1301. "homepage": "http://www.doctrine-project.org",
  1302. "keywords": [
  1303. "lexer",
  1304. "parser"
  1305. ],
  1306. "time": "2014-09-09T13:34:57+00:00"
  1307. },
  1308. {
  1309. "name": "doctrine/orm",
  1310. "version": "v2.6.3",
  1311. "source": {
  1312. "type": "git",
  1313. "url": "https://github.com/doctrine/orm.git",
  1314. "reference": "434820973cadf2da2d66e7184be370084cc32ca8"
  1315. },
  1316. "dist": {
  1317. "type": "zip",
  1318. "url": "https://api.github.com/repos/doctrine/orm/zipball/434820973cadf2da2d66e7184be370084cc32ca8",
  1319. "reference": "434820973cadf2da2d66e7184be370084cc32ca8",
  1320. "shasum": ""
  1321. },
  1322. "require": {
  1323. "doctrine/annotations": "~1.5",
  1324. "doctrine/cache": "~1.6",
  1325. "doctrine/collections": "^1.4",
  1326. "doctrine/common": "^2.7.1",
  1327. "doctrine/dbal": "^2.6",
  1328. "doctrine/instantiator": "~1.1",
  1329. "ext-pdo": "*",
  1330. "php": "^7.1",
  1331. "symfony/console": "~3.0|~4.0"
  1332. },
  1333. "require-dev": {
  1334. "doctrine/coding-standard": "^1.0",
  1335. "phpunit/phpunit": "^6.5",
  1336. "squizlabs/php_codesniffer": "^3.2",
  1337. "symfony/yaml": "~3.4|~4.0"
  1338. },
  1339. "suggest": {
  1340. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1341. },
  1342. "bin": [
  1343. "bin/doctrine"
  1344. ],
  1345. "type": "library",
  1346. "extra": {
  1347. "branch-alias": {
  1348. "dev-master": "2.6.x-dev"
  1349. }
  1350. },
  1351. "autoload": {
  1352. "psr-4": {
  1353. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1354. }
  1355. },
  1356. "notification-url": "https://packagist.org/downloads/",
  1357. "license": [
  1358. "MIT"
  1359. ],
  1360. "description": "Object-Relational-Mapper for PHP",
  1361. "homepage": "http://www.doctrine-project.org",
  1362. "time": "2018-11-20T23:46:46+00:00"
  1363. },
  1364. {
  1365. "name": "doctrine/persistence",
  1366. "version": "v1.1.0",
  1367. "source": {
  1368. "type": "git",
  1369. "url": "https://github.com/doctrine/persistence.git",
  1370. "reference": "c0f1c17602afc18b4cbd8e1c8125f264c9cf7d38"
  1371. },
  1372. "dist": {
  1373. "type": "zip",
  1374. "url": "https://api.github.com/repos/doctrine/persistence/zipball/c0f1c17602afc18b4cbd8e1c8125f264c9cf7d38",
  1375. "reference": "c0f1c17602afc18b4cbd8e1c8125f264c9cf7d38",
  1376. "shasum": ""
  1377. },
  1378. "require": {
  1379. "doctrine/annotations": "^1.0",
  1380. "doctrine/cache": "^1.0",
  1381. "doctrine/collections": "^1.0",
  1382. "doctrine/event-manager": "^1.0",
  1383. "doctrine/reflection": "^1.0",
  1384. "php": "^7.1"
  1385. },
  1386. "conflict": {
  1387. "doctrine/common": "<2.10@dev"
  1388. },
  1389. "require-dev": {
  1390. "doctrine/coding-standard": "^5.0",
  1391. "phpstan/phpstan": "^0.8",
  1392. "phpunit/phpunit": "^7.0"
  1393. },
  1394. "type": "library",
  1395. "extra": {
  1396. "branch-alias": {
  1397. "dev-master": "1.1.x-dev"
  1398. }
  1399. },
  1400. "autoload": {
  1401. "psr-4": {
  1402. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1403. }
  1404. },
  1405. "notification-url": "https://packagist.org/downloads/",
  1406. "license": [
  1407. "MIT"
  1408. ],
  1409. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1410. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1411. "time": "2018-11-21T00:33:13+00:00"
  1412. },
  1413. {
  1414. "name": "doctrine/reflection",
  1415. "version": "v1.0.0",
  1416. "source": {
  1417. "type": "git",
  1418. "url": "https://github.com/doctrine/reflection.git",
  1419. "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6"
  1420. },
  1421. "dist": {
  1422. "type": "zip",
  1423. "url": "https://api.github.com/repos/doctrine/reflection/zipball/02538d3f95e88eb397a5f86274deb2c6175c2ab6",
  1424. "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6",
  1425. "shasum": ""
  1426. },
  1427. "require": {
  1428. "doctrine/annotations": "^1.0",
  1429. "ext-tokenizer": "*",
  1430. "php": "^7.1"
  1431. },
  1432. "require-dev": {
  1433. "doctrine/coding-standard": "^4.0",
  1434. "doctrine/common": "^2.8",
  1435. "phpstan/phpstan": "^0.9.2",
  1436. "phpstan/phpstan-phpunit": "^0.9.4",
  1437. "phpunit/phpunit": "^7.0",
  1438. "squizlabs/php_codesniffer": "^3.0"
  1439. },
  1440. "type": "library",
  1441. "extra": {
  1442. "branch-alias": {
  1443. "dev-master": "1.0.x-dev"
  1444. }
  1445. },
  1446. "autoload": {
  1447. "psr-4": {
  1448. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1449. }
  1450. },
  1451. "notification-url": "https://packagist.org/downloads/",
  1452. "license": [
  1453. "MIT"
  1454. ],
  1455. "description": "Doctrine Reflection component",
  1456. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  1457. "time": "2018-06-14T14:45:07+00:00"
  1458. },
  1459. {
  1460. "name": "egulias/email-validator",
  1461. "version": "2.1.7",
  1462. "source": {
  1463. "type": "git",
  1464. "url": "https://github.com/egulias/EmailValidator.git",
  1465. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e"
  1466. },
  1467. "dist": {
  1468. "type": "zip",
  1469. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/709f21f92707308cdf8f9bcfa1af4cb26586521e",
  1470. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e",
  1471. "shasum": ""
  1472. },
  1473. "require": {
  1474. "doctrine/lexer": "^1.0.1",
  1475. "php": ">= 5.5"
  1476. },
  1477. "require-dev": {
  1478. "dominicsayers/isemail": "dev-master",
  1479. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  1480. "satooshi/php-coveralls": "^1.0.1"
  1481. },
  1482. "suggest": {
  1483. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1484. },
  1485. "type": "library",
  1486. "extra": {
  1487. "branch-alias": {
  1488. "dev-master": "2.0.x-dev"
  1489. }
  1490. },
  1491. "autoload": {
  1492. "psr-4": {
  1493. "Egulias\\EmailValidator\\": "EmailValidator"
  1494. }
  1495. },
  1496. "notification-url": "https://packagist.org/downloads/",
  1497. "license": [
  1498. "MIT"
  1499. ],
  1500. "authors": [
  1501. {
  1502. "name": "Eduardo Gulias Davis"
  1503. }
  1504. ],
  1505. "description": "A library for validating emails against several RFCs",
  1506. "homepage": "https://github.com/egulias/EmailValidator",
  1507. "keywords": [
  1508. "email",
  1509. "emailvalidation",
  1510. "emailvalidator",
  1511. "validation",
  1512. "validator"
  1513. ],
  1514. "time": "2018-12-04T22:38:24+00:00"
  1515. },
  1516. {
  1517. "name": "endroid/installer",
  1518. "version": "1.1.5",
  1519. "source": {
  1520. "type": "git",
  1521. "url": "https://github.com/endroid/installer.git",
  1522. "reference": "d4ae2bbd7977148dcb514ad625ece1a36f751a8b"
  1523. },
  1524. "dist": {
  1525. "type": "zip",
  1526. "url": "https://api.github.com/repos/endroid/installer/zipball/d4ae2bbd7977148dcb514ad625ece1a36f751a8b",
  1527. "reference": "d4ae2bbd7977148dcb514ad625ece1a36f751a8b",
  1528. "shasum": ""
  1529. },
  1530. "require": {
  1531. "composer-plugin-api": "^1.1",
  1532. "php": ">=7.2"
  1533. },
  1534. "type": "composer-plugin",
  1535. "extra": {
  1536. "branch-alias": {
  1537. "dev-master": "1.x-dev"
  1538. },
  1539. "class": "Endroid\\Installer\\Installer"
  1540. },
  1541. "autoload": {
  1542. "psr-4": {
  1543. "Endroid\\Installer\\": "src"
  1544. }
  1545. },
  1546. "notification-url": "https://packagist.org/downloads/",
  1547. "license": [
  1548. "MIT"
  1549. ],
  1550. "authors": [
  1551. {
  1552. "name": "Jeroen van den Enden",
  1553. "email": "info@endroid.nl"
  1554. }
  1555. ],
  1556. "time": "2019-03-30T21:42:01+00:00"
  1557. },
  1558. {
  1559. "name": "endroid/qr-code",
  1560. "version": "3.6.1",
  1561. "source": {
  1562. "type": "git",
  1563. "url": "https://github.com/endroid/qr-code.git",
  1564. "reference": "15641eec67291c6404b612694f65345c84a79919"
  1565. },
  1566. "dist": {
  1567. "type": "zip",
  1568. "url": "https://api.github.com/repos/endroid/qr-code/zipball/15641eec67291c6404b612694f65345c84a79919",
  1569. "reference": "15641eec67291c6404b612694f65345c84a79919",
  1570. "shasum": ""
  1571. },
  1572. "require": {
  1573. "bacon/bacon-qr-code": "^2.0",
  1574. "endroid/installer": "^1.1.5",
  1575. "ext-gd": "*",
  1576. "khanamiryan/qrcode-detector-decoder": "^1.0.2",
  1577. "myclabs/php-enum": "^1.5",
  1578. "php": ">=7.2",
  1579. "symfony/http-foundation": "^3.4|^4.0",
  1580. "symfony/options-resolver": "^3.4|^4.0",
  1581. "symfony/property-access": "^3.4|^4.0"
  1582. },
  1583. "require-dev": {
  1584. "endroid/test": "^1.1.4"
  1585. },
  1586. "type": "library",
  1587. "extra": {
  1588. "branch-alias": {
  1589. "dev-master": "3.x-dev"
  1590. }
  1591. },
  1592. "autoload": {
  1593. "psr-4": {
  1594. "Endroid\\QrCode\\": "src/"
  1595. }
  1596. },
  1597. "notification-url": "https://packagist.org/downloads/",
  1598. "license": [
  1599. "MIT"
  1600. ],
  1601. "authors": [
  1602. {
  1603. "name": "Jeroen van den Enden",
  1604. "email": "info@endroid.nl"
  1605. }
  1606. ],
  1607. "description": "Endroid QR Code",
  1608. "homepage": "https://github.com/endroid/qr-code",
  1609. "keywords": [
  1610. "bundle",
  1611. "code",
  1612. "endroid",
  1613. "php",
  1614. "qr",
  1615. "qrcode"
  1616. ],
  1617. "time": "2019-05-25T20:13:40+00:00"
  1618. },
  1619. {
  1620. "name": "endroid/qr-code-bundle",
  1621. "version": "3.3.4",
  1622. "source": {
  1623. "type": "git",
  1624. "url": "https://github.com/endroid/qr-code-bundle.git",
  1625. "reference": "975dc3d377aba75ddc9ada47315b4edd9c0687ba"
  1626. },
  1627. "dist": {
  1628. "type": "zip",
  1629. "url": "https://api.github.com/repos/endroid/qr-code-bundle/zipball/975dc3d377aba75ddc9ada47315b4edd9c0687ba",
  1630. "reference": "975dc3d377aba75ddc9ada47315b4edd9c0687ba",
  1631. "shasum": ""
  1632. },
  1633. "require": {
  1634. "endroid/qr-code": "^3.4.4",
  1635. "php": ">=7.1",
  1636. "symfony/framework-bundle": "^3.4|^4.0",
  1637. "symfony/twig-bundle": "^3.4|^4.0",
  1638. "symfony/yaml": "^3.4|^4.0"
  1639. },
  1640. "require-dev": {
  1641. "endroid/bundle-test": "dev-master"
  1642. },
  1643. "type": "symfony-bundle",
  1644. "extra": {
  1645. "branch-alias": {
  1646. "dev-master": "3.x-dev"
  1647. }
  1648. },
  1649. "autoload": {
  1650. "psr-4": {
  1651. "Endroid\\QrCodeBundle\\": "src/"
  1652. }
  1653. },
  1654. "notification-url": "https://packagist.org/downloads/",
  1655. "license": [
  1656. "MIT"
  1657. ],
  1658. "authors": [
  1659. {
  1660. "name": "Jeroen van den Enden",
  1661. "email": "info@endroid.nl"
  1662. }
  1663. ],
  1664. "description": "Endroid QR Code Bundle",
  1665. "homepage": "https://github.com/endroid/qr-code-bundle",
  1666. "keywords": [
  1667. "bundle",
  1668. "code",
  1669. "endroid",
  1670. "php",
  1671. "qr",
  1672. "symfony"
  1673. ],
  1674. "time": "2019-04-04T06:55:45+00:00"
  1675. },
  1676. {
  1677. "name": "ezyang/htmlpurifier",
  1678. "version": "v4.10.0",
  1679. "source": {
  1680. "type": "git",
  1681. "url": "https://github.com/ezyang/htmlpurifier.git",
  1682. "reference": "d85d39da4576a6934b72480be6978fb10c860021"
  1683. },
  1684. "dist": {
  1685. "type": "zip",
  1686. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d85d39da4576a6934b72480be6978fb10c860021",
  1687. "reference": "d85d39da4576a6934b72480be6978fb10c860021",
  1688. "shasum": ""
  1689. },
  1690. "require": {
  1691. "php": ">=5.2"
  1692. },
  1693. "require-dev": {
  1694. "simpletest/simpletest": "^1.1"
  1695. },
  1696. "type": "library",
  1697. "autoload": {
  1698. "psr-0": {
  1699. "HTMLPurifier": "library/"
  1700. },
  1701. "files": [
  1702. "library/HTMLPurifier.composer.php"
  1703. ]
  1704. },
  1705. "notification-url": "https://packagist.org/downloads/",
  1706. "license": [
  1707. "LGPL"
  1708. ],
  1709. "authors": [
  1710. {
  1711. "name": "Edward Z. Yang",
  1712. "email": "admin@htmlpurifier.org",
  1713. "homepage": "http://ezyang.com"
  1714. }
  1715. ],
  1716. "description": "Standards compliant HTML filter written in PHP",
  1717. "homepage": "http://htmlpurifier.org/",
  1718. "keywords": [
  1719. "html"
  1720. ],
  1721. "time": "2018-02-23T01:58:20+00:00"
  1722. },
  1723. {
  1724. "name": "fig/link-util",
  1725. "version": "1.0.0",
  1726. "source": {
  1727. "type": "git",
  1728. "url": "https://github.com/php-fig/link-util.git",
  1729. "reference": "1a07821801a148be4add11ab0603e4af55a72fac"
  1730. },
  1731. "dist": {
  1732. "type": "zip",
  1733. "url": "https://api.github.com/repos/php-fig/link-util/zipball/1a07821801a148be4add11ab0603e4af55a72fac",
  1734. "reference": "1a07821801a148be4add11ab0603e4af55a72fac",
  1735. "shasum": ""
  1736. },
  1737. "require": {
  1738. "php": ">=5.5.0",
  1739. "psr/link": "~1.0@dev"
  1740. },
  1741. "require-dev": {
  1742. "phpunit/phpunit": "^5.1",
  1743. "squizlabs/php_codesniffer": "^2.3.1"
  1744. },
  1745. "type": "library",
  1746. "extra": {
  1747. "branch-alias": {
  1748. "dev-master": "1.0.x-dev"
  1749. }
  1750. },
  1751. "autoload": {
  1752. "psr-4": {
  1753. "Fig\\Link\\": "src/"
  1754. }
  1755. },
  1756. "notification-url": "https://packagist.org/downloads/",
  1757. "license": [
  1758. "MIT"
  1759. ],
  1760. "authors": [
  1761. {
  1762. "name": "PHP-FIG",
  1763. "homepage": "http://www.php-fig.org/"
  1764. }
  1765. ],
  1766. "description": "Common utility implementations for HTTP links",
  1767. "keywords": [
  1768. "http",
  1769. "http-link",
  1770. "link",
  1771. "psr",
  1772. "psr-13",
  1773. "rest"
  1774. ],
  1775. "time": "2016-10-17T18:31:11+00:00"
  1776. },
  1777. {
  1778. "name": "friendsofsymfony/user-bundle",
  1779. "version": "v2.1.2",
  1780. "source": {
  1781. "type": "git",
  1782. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle.git",
  1783. "reference": "1049935edd24ec305cc6cfde1875372fa9600446"
  1784. },
  1785. "dist": {
  1786. "type": "zip",
  1787. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/1049935edd24ec305cc6cfde1875372fa9600446",
  1788. "reference": "1049935edd24ec305cc6cfde1875372fa9600446",
  1789. "shasum": ""
  1790. },
  1791. "require": {
  1792. "paragonie/random_compat": "^1 || ^2",
  1793. "php": "^5.5.9 || ^7.0",
  1794. "symfony/form": "^2.8 || ^3.0 || ^4.0",
  1795. "symfony/framework-bundle": "^2.8 || ^3.0 || ^4.0",
  1796. "symfony/security-bundle": "^2.8 || ^3.0 || ^4.0",
  1797. "symfony/templating": "^2.8 || ^3.0 || ^4.0",
  1798. "symfony/twig-bundle": "^2.8 || ^3.0 || ^4.0",
  1799. "symfony/validator": "^2.8 || ^3.0 || ^4.0",
  1800. "twig/twig": "^1.28 || ^2.0"
  1801. },
  1802. "conflict": {
  1803. "doctrine/doctrine-bundle": "<1.3",
  1804. "symfony/doctrine-bridge": "<2.7"
  1805. },
  1806. "require-dev": {
  1807. "doctrine/doctrine-bundle": "^1.3",
  1808. "friendsofphp/php-cs-fixer": "^2.2",
  1809. "phpunit/phpunit": "^4.8.35|^5.7.11|^6.5",
  1810. "swiftmailer/swiftmailer": "^4.3 || ^5.0 || ^6.0",
  1811. "symfony/console": "^2.8 || ^3.0 || ^4.0",
  1812. "symfony/phpunit-bridge": "^2.8 || ^3.0 || ^4.0",
  1813. "symfony/yaml": "^2.8 || ^3.0 || ^4.0"
  1814. },
  1815. "type": "symfony-bundle",
  1816. "extra": {
  1817. "branch-alias": {
  1818. "dev-master": "2.1.x-dev"
  1819. }
  1820. },
  1821. "autoload": {
  1822. "psr-4": {
  1823. "FOS\\UserBundle\\": ""
  1824. },
  1825. "exclude-from-classmap": [
  1826. "/Tests/"
  1827. ]
  1828. },
  1829. "notification-url": "https://packagist.org/downloads/",
  1830. "license": [
  1831. "MIT"
  1832. ],
  1833. "authors": [
  1834. {
  1835. "name": "Christophe Coevoet",
  1836. "email": "stof@notk.org"
  1837. },
  1838. {
  1839. "name": "FriendsOfSymfony Community",
  1840. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  1841. },
  1842. {
  1843. "name": "Thibault Duplessis"
  1844. }
  1845. ],
  1846. "description": "Symfony FOSUserBundle",
  1847. "homepage": "http://friendsofsymfony.github.com",
  1848. "keywords": [
  1849. "User management"
  1850. ],
  1851. "time": "2018-03-08T08:59:27+00:00"
  1852. },
  1853. {
  1854. "name": "graze/dog-statsd",
  1855. "version": "0.4.2",
  1856. "source": {
  1857. "type": "git",
  1858. "url": "https://github.com/graze/dog-statsd.git",
  1859. "reference": "94fe0c0d649384f13527eff556136726f6c9803e"
  1860. },
  1861. "dist": {
  1862. "type": "zip",
  1863. "url": "https://api.github.com/repos/graze/dog-statsd/zipball/94fe0c0d649384f13527eff556136726f6c9803e",
  1864. "reference": "94fe0c0d649384f13527eff556136726f6c9803e",
  1865. "shasum": ""
  1866. },
  1867. "require": {
  1868. "php": "^5.5|^7.0"
  1869. },
  1870. "require-dev": {
  1871. "graze/standards": "^2",
  1872. "johnkary/phpunit-speedtrap": "^1|^2|^3",
  1873. "phpunit/phpunit": "^5.7.21|^6|^7",
  1874. "squizlabs/php_codesniffer": "^3"
  1875. },
  1876. "type": "library",
  1877. "autoload": {
  1878. "psr-4": {
  1879. "Graze\\DogStatsD\\": "src"
  1880. }
  1881. },
  1882. "notification-url": "https://packagist.org/downloads/",
  1883. "license": [
  1884. "MIT"
  1885. ],
  1886. "authors": [
  1887. {
  1888. "name": "Harry Bragg",
  1889. "role": "Developer",
  1890. "email": "harry.bragg@graze.com"
  1891. },
  1892. {
  1893. "name": "Graze Developers",
  1894. "role": "Development Team",
  1895. "email": "developers@graze.com",
  1896. "homepage": "http://www.graze.com"
  1897. }
  1898. ],
  1899. "description": "DataDog StatsD Client",
  1900. "homepage": "https://github.com/graze/dog-statsd",
  1901. "keywords": [
  1902. "DataDog",
  1903. "dog-statsd",
  1904. "dogstatsd",
  1905. "graze",
  1906. "statsd"
  1907. ],
  1908. "time": "2019-07-29T16:45:12+00:00"
  1909. },
  1910. {
  1911. "name": "guzzlehttp/guzzle",
  1912. "version": "6.3.3",
  1913. "source": {
  1914. "type": "git",
  1915. "url": "https://github.com/guzzle/guzzle.git",
  1916. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  1917. },
  1918. "dist": {
  1919. "type": "zip",
  1920. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1921. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1922. "shasum": ""
  1923. },
  1924. "require": {
  1925. "guzzlehttp/promises": "^1.0",
  1926. "guzzlehttp/psr7": "^1.4",
  1927. "php": ">=5.5"
  1928. },
  1929. "require-dev": {
  1930. "ext-curl": "*",
  1931. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1932. "psr/log": "^1.0"
  1933. },
  1934. "suggest": {
  1935. "psr/log": "Required for using the Log middleware"
  1936. },
  1937. "type": "library",
  1938. "extra": {
  1939. "branch-alias": {
  1940. "dev-master": "6.3-dev"
  1941. }
  1942. },
  1943. "autoload": {
  1944. "files": [
  1945. "src/functions_include.php"
  1946. ],
  1947. "psr-4": {
  1948. "GuzzleHttp\\": "src/"
  1949. }
  1950. },
  1951. "notification-url": "https://packagist.org/downloads/",
  1952. "license": [
  1953. "MIT"
  1954. ],
  1955. "authors": [
  1956. {
  1957. "name": "Michael Dowling",
  1958. "email": "mtdowling@gmail.com",
  1959. "homepage": "https://github.com/mtdowling"
  1960. }
  1961. ],
  1962. "description": "Guzzle is a PHP HTTP client library",
  1963. "homepage": "http://guzzlephp.org/",
  1964. "keywords": [
  1965. "client",
  1966. "curl",
  1967. "framework",
  1968. "http",
  1969. "http client",
  1970. "rest",
  1971. "web service"
  1972. ],
  1973. "time": "2018-04-22T15:46:56+00:00"
  1974. },
  1975. {
  1976. "name": "guzzlehttp/promises",
  1977. "version": "v1.3.1",
  1978. "source": {
  1979. "type": "git",
  1980. "url": "https://github.com/guzzle/promises.git",
  1981. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1982. },
  1983. "dist": {
  1984. "type": "zip",
  1985. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1986. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1987. "shasum": ""
  1988. },
  1989. "require": {
  1990. "php": ">=5.5.0"
  1991. },
  1992. "require-dev": {
  1993. "phpunit/phpunit": "^4.0"
  1994. },
  1995. "type": "library",
  1996. "extra": {
  1997. "branch-alias": {
  1998. "dev-master": "1.4-dev"
  1999. }
  2000. },
  2001. "autoload": {
  2002. "psr-4": {
  2003. "GuzzleHttp\\Promise\\": "src/"
  2004. },
  2005. "files": [
  2006. "src/functions_include.php"
  2007. ]
  2008. },
  2009. "notification-url": "https://packagist.org/downloads/",
  2010. "license": [
  2011. "MIT"
  2012. ],
  2013. "authors": [
  2014. {
  2015. "name": "Michael Dowling",
  2016. "email": "mtdowling@gmail.com",
  2017. "homepage": "https://github.com/mtdowling"
  2018. }
  2019. ],
  2020. "description": "Guzzle promises library",
  2021. "keywords": [
  2022. "promise"
  2023. ],
  2024. "time": "2016-12-20T10:07:11+00:00"
  2025. },
  2026. {
  2027. "name": "guzzlehttp/psr7",
  2028. "version": "1.5.2",
  2029. "source": {
  2030. "type": "git",
  2031. "url": "https://github.com/guzzle/psr7.git",
  2032. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  2033. },
  2034. "dist": {
  2035. "type": "zip",
  2036. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  2037. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  2038. "shasum": ""
  2039. },
  2040. "require": {
  2041. "php": ">=5.4.0",
  2042. "psr/http-message": "~1.0",
  2043. "ralouphie/getallheaders": "^2.0.5"
  2044. },
  2045. "provide": {
  2046. "psr/http-message-implementation": "1.0"
  2047. },
  2048. "require-dev": {
  2049. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  2050. },
  2051. "type": "library",
  2052. "extra": {
  2053. "branch-alias": {
  2054. "dev-master": "1.5-dev"
  2055. }
  2056. },
  2057. "autoload": {
  2058. "psr-4": {
  2059. "GuzzleHttp\\Psr7\\": "src/"
  2060. },
  2061. "files": [
  2062. "src/functions_include.php"
  2063. ]
  2064. },
  2065. "notification-url": "https://packagist.org/downloads/",
  2066. "license": [
  2067. "MIT"
  2068. ],
  2069. "authors": [
  2070. {
  2071. "name": "Michael Dowling",
  2072. "email": "mtdowling@gmail.com",
  2073. "homepage": "https://github.com/mtdowling"
  2074. },
  2075. {
  2076. "name": "Tobias Schultze",
  2077. "homepage": "https://github.com/Tobion"
  2078. }
  2079. ],
  2080. "description": "PSR-7 message implementation that also provides common utility methods",
  2081. "keywords": [
  2082. "http",
  2083. "message",
  2084. "psr-7",
  2085. "request",
  2086. "response",
  2087. "stream",
  2088. "uri",
  2089. "url"
  2090. ],
  2091. "time": "2018-12-04T20:46:45+00:00"
  2092. },
  2093. {
  2094. "name": "hwi/oauth-bundle",
  2095. "version": "0.6.3",
  2096. "source": {
  2097. "type": "git",
  2098. "url": "https://github.com/hwi/HWIOAuthBundle.git",
  2099. "reference": "0963709b04d8ac0d6d6c0c78787f6f59bd0d9a01"
  2100. },
  2101. "dist": {
  2102. "type": "zip",
  2103. "url": "https://api.github.com/repos/hwi/HWIOAuthBundle/zipball/0963709b04d8ac0d6d6c0c78787f6f59bd0d9a01",
  2104. "reference": "0963709b04d8ac0d6d6c0c78787f6f59bd0d9a01",
  2105. "shasum": ""
  2106. },
  2107. "require": {
  2108. "php": "^5.6|^7.0",
  2109. "php-http/client-common": "^1.3",
  2110. "php-http/client-implementation": "^1.0",
  2111. "php-http/discovery": "^1.0",
  2112. "php-http/httplug": "^1.0",
  2113. "php-http/message-factory": "^1.0",
  2114. "psr/http-message": "^1.0",
  2115. "symfony/form": "^2.8|^3.0|^4.0",
  2116. "symfony/framework-bundle": "^2.8|^3.0|^4.0",
  2117. "symfony/options-resolver": "^2.8|^3.0|^4.0",
  2118. "symfony/security-bundle": "^2.8|^3.0|^4.0",
  2119. "symfony/templating": "^2.8|^3.0|^4.0",
  2120. "symfony/yaml": "^2.8|^3.0|^4.0"
  2121. },
  2122. "conflict": {
  2123. "twig/twig": "<1.12"
  2124. },
  2125. "require-dev": {
  2126. "doctrine/orm": "^2.3",
  2127. "friendsofphp/php-cs-fixer": "^2.0",
  2128. "friendsofsymfony/user-bundle": "^1.3|^2.0",
  2129. "php-http/guzzle6-adapter": "^1.1",
  2130. "php-http/httplug-bundle": "^1.7",
  2131. "phpunit/phpunit": "^5.7",
  2132. "symfony/phpunit-bridge": "^2.8|^3.0|^4.0",
  2133. "symfony/property-access": "^2.8|^3.0|^4.0",
  2134. "symfony/stopwatch": "^2.8|^3.0|^4.0",
  2135. "symfony/twig-bundle": "^2.8|^3.0|^4.0",
  2136. "symfony/validator": "^2.8|^3.0|^4.0"
  2137. },
  2138. "suggest": {
  2139. "doctrine/doctrine-bundle": "to use Doctrine user provider",
  2140. "friendsofsymfony/user-bundle": "to connect FOSUB with this bundle",
  2141. "php-http/httplug-bundle": "to provide required HTTP client with ease.",
  2142. "symfony/property-access": "to use FOSUB integration with this bundle",
  2143. "symfony/twig-bundle": "to use the Twig hwi_oauth_* functions"
  2144. },
  2145. "type": "symfony-bundle",
  2146. "extra": {
  2147. "branch-alias": {
  2148. "dev-master": "0.6-dev"
  2149. }
  2150. },
  2151. "autoload": {
  2152. "psr-4": {
  2153. "HWI\\Bundle\\OAuthBundle\\": ""
  2154. },
  2155. "exclude-from-classmap": [
  2156. "/Tests/"
  2157. ]
  2158. },
  2159. "notification-url": "https://packagist.org/downloads/",
  2160. "license": [
  2161. "MIT"
  2162. ],
  2163. "authors": [
  2164. {
  2165. "name": "Contributors",
  2166. "homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
  2167. },
  2168. {
  2169. "name": "Joseph Bielawski",
  2170. "email": "stloyd@gmail.com"
  2171. },
  2172. {
  2173. "name": "Alexander",
  2174. "email": "iam.asm89@gmail.com"
  2175. },
  2176. {
  2177. "name": "Geoffrey Bachelet",
  2178. "email": "geoffrey.bachelet@gmail.com"
  2179. }
  2180. ],
  2181. "description": "Support for authenticating users using both OAuth1.0a and OAuth2 in Symfony2.",
  2182. "homepage": "http://github.com/hwi/HWIOAuthBundle",
  2183. "keywords": [
  2184. "37signals",
  2185. "Authentication",
  2186. "Deezer",
  2187. "EVE Online",
  2188. "amazon",
  2189. "asana",
  2190. "auth0",
  2191. "azure",
  2192. "bitbucket",
  2193. "bitly",
  2194. "box",
  2195. "bufferapp",
  2196. "clever",
  2197. "dailymotion",
  2198. "deviantart",
  2199. "discogs",
  2200. "disqus",
  2201. "dropbox",
  2202. "eventbrite",
  2203. "facebook",
  2204. "firewall",
  2205. "fiware",
  2206. "flickr",
  2207. "foursquare",
  2208. "github",
  2209. "gitlab",
  2210. "google",
  2211. "hubic",
  2212. "instagram",
  2213. "jawbone",
  2214. "jira",
  2215. "linkedin",
  2216. "mail.ru",
  2217. "oauth",
  2218. "oauth1",
  2219. "oauth2",
  2220. "odnoklassniki",
  2221. "paypal",
  2222. "qq",
  2223. "reddit",
  2224. "runkeeper",
  2225. "salesforce",
  2226. "security",
  2227. "sensio connect",
  2228. "sina weibo",
  2229. "slack",
  2230. "sound cloud",
  2231. "spotify",
  2232. "stack exchange",
  2233. "stereomood",
  2234. "strava",
  2235. "toshl",
  2236. "trakt",
  2237. "trello",
  2238. "twitch",
  2239. "twitter",
  2240. "vkontakte",
  2241. "windows live",
  2242. "wordpress",
  2243. "wunderlist",
  2244. "xing",
  2245. "yahoo",
  2246. "yandex",
  2247. "youtube"
  2248. ],
  2249. "time": "2018-07-31T10:19:28+00:00"
  2250. },
  2251. {
  2252. "name": "jdorn/sql-formatter",
  2253. "version": "v1.2.17",
  2254. "source": {
  2255. "type": "git",
  2256. "url": "https://github.com/jdorn/sql-formatter.git",
  2257. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  2258. },
  2259. "dist": {
  2260. "type": "zip",
  2261. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  2262. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  2263. "shasum": ""
  2264. },
  2265. "require": {
  2266. "php": ">=5.2.4"
  2267. },
  2268. "require-dev": {
  2269. "phpunit/phpunit": "3.7.*"
  2270. },
  2271. "type": "library",
  2272. "extra": {
  2273. "branch-alias": {
  2274. "dev-master": "1.3.x-dev"
  2275. }
  2276. },
  2277. "autoload": {
  2278. "classmap": [
  2279. "lib"
  2280. ]
  2281. },
  2282. "notification-url": "https://packagist.org/downloads/",
  2283. "license": [
  2284. "MIT"
  2285. ],
  2286. "authors": [
  2287. {
  2288. "name": "Jeremy Dorn",
  2289. "email": "jeremy@jeremydorn.com",
  2290. "homepage": "http://jeremydorn.com/"
  2291. }
  2292. ],
  2293. "description": "a PHP SQL highlighting library",
  2294. "homepage": "https://github.com/jdorn/sql-formatter/",
  2295. "keywords": [
  2296. "highlight",
  2297. "sql"
  2298. ],
  2299. "time": "2014-01-12T16:20:24+00:00"
  2300. },
  2301. {
  2302. "name": "justinrainbow/json-schema",
  2303. "version": "5.2.8",
  2304. "source": {
  2305. "type": "git",
  2306. "url": "https://github.com/justinrainbow/json-schema.git",
  2307. "reference": "dcb6e1006bb5fd1e392b4daa68932880f37550d4"
  2308. },
  2309. "dist": {
  2310. "type": "zip",
  2311. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/dcb6e1006bb5fd1e392b4daa68932880f37550d4",
  2312. "reference": "dcb6e1006bb5fd1e392b4daa68932880f37550d4",
  2313. "shasum": ""
  2314. },
  2315. "require": {
  2316. "php": ">=5.3.3"
  2317. },
  2318. "require-dev": {
  2319. "friendsofphp/php-cs-fixer": "~2.2.20",
  2320. "json-schema/json-schema-test-suite": "1.2.0",
  2321. "phpunit/phpunit": "^4.8.35"
  2322. },
  2323. "bin": [
  2324. "bin/validate-json"
  2325. ],
  2326. "type": "library",
  2327. "extra": {
  2328. "branch-alias": {
  2329. "dev-master": "5.0.x-dev"
  2330. }
  2331. },
  2332. "autoload": {
  2333. "psr-4": {
  2334. "JsonSchema\\": "src/JsonSchema/"
  2335. }
  2336. },
  2337. "notification-url": "https://packagist.org/downloads/",
  2338. "license": [
  2339. "MIT"
  2340. ],
  2341. "authors": [
  2342. {
  2343. "name": "Bruno Prieto Reis",
  2344. "email": "bruno.p.reis@gmail.com"
  2345. },
  2346. {
  2347. "name": "Justin Rainbow",
  2348. "email": "justin.rainbow@gmail.com"
  2349. },
  2350. {
  2351. "name": "Igor Wiedler",
  2352. "email": "igor@wiedler.ch"
  2353. },
  2354. {
  2355. "name": "Robert Schönthal",
  2356. "email": "seroscho@googlemail.com"
  2357. }
  2358. ],
  2359. "description": "A library to validate a json schema.",
  2360. "homepage": "https://github.com/justinrainbow/json-schema",
  2361. "keywords": [
  2362. "json",
  2363. "schema"
  2364. ],
  2365. "time": "2019-01-14T23:55:14+00:00"
  2366. },
  2367. {
  2368. "name": "khanamiryan/qrcode-detector-decoder",
  2369. "version": "1.0.2",
  2370. "source": {
  2371. "type": "git",
  2372. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  2373. "reference": "a75482d3bc804e3f6702332bfda6cccbb0dfaa76"
  2374. },
  2375. "dist": {
  2376. "type": "zip",
  2377. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/a75482d3bc804e3f6702332bfda6cccbb0dfaa76",
  2378. "reference": "a75482d3bc804e3f6702332bfda6cccbb0dfaa76",
  2379. "shasum": ""
  2380. },
  2381. "require": {
  2382. "php": "^5.6|^7.0"
  2383. },
  2384. "require-dev": {
  2385. "phpunit/phpunit": "^5.7"
  2386. },
  2387. "type": "library",
  2388. "autoload": {
  2389. "psr-4": {
  2390. "Zxing\\": "lib/"
  2391. },
  2392. "files": [
  2393. "lib/Common/customFunctions.php"
  2394. ]
  2395. },
  2396. "notification-url": "https://packagist.org/downloads/",
  2397. "license": [
  2398. "MIT"
  2399. ],
  2400. "authors": [
  2401. {
  2402. "name": "Ashot Khanamiryan",
  2403. "email": "a.khanamiryan@gmail.com",
  2404. "homepage": "https://github.com/khanamiryan",
  2405. "role": "Developer"
  2406. }
  2407. ],
  2408. "description": "QR code decoder / reader",
  2409. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  2410. "keywords": [
  2411. "barcode",
  2412. "qr",
  2413. "zxing"
  2414. ],
  2415. "time": "2018-04-26T11:41:33+00:00"
  2416. },
  2417. {
  2418. "name": "knplabs/knp-menu",
  2419. "version": "2.3.0",
  2420. "source": {
  2421. "type": "git",
  2422. "url": "https://github.com/KnpLabs/KnpMenu.git",
  2423. "reference": "655630a1db0b72108262d1a844de3b1ba0885be5"
  2424. },
  2425. "dist": {
  2426. "type": "zip",
  2427. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/655630a1db0b72108262d1a844de3b1ba0885be5",
  2428. "reference": "655630a1db0b72108262d1a844de3b1ba0885be5",
  2429. "shasum": ""
  2430. },
  2431. "require": {
  2432. "php": ">=5.6.0"
  2433. },
  2434. "require-dev": {
  2435. "psr/container": "^1.0",
  2436. "symfony/http-foundation": "~2.4|~3.0|^4.0",
  2437. "symfony/phpunit-bridge": "~3.3|^4.0",
  2438. "symfony/routing": "~2.3|~3.0|^4.0",
  2439. "twig/twig": "~1.16|~2.0"
  2440. },
  2441. "suggest": {
  2442. "twig/twig": "for the TwigRenderer and the integration with your templates"
  2443. },
  2444. "type": "library",
  2445. "extra": {
  2446. "branch-alias": {
  2447. "dev-master": "2.3-dev"
  2448. }
  2449. },
  2450. "autoload": {
  2451. "psr-4": {
  2452. "Knp\\Menu\\": "src/Knp/Menu"
  2453. }
  2454. },
  2455. "notification-url": "https://packagist.org/downloads/",
  2456. "license": [
  2457. "MIT"
  2458. ],
  2459. "authors": [
  2460. {
  2461. "name": "Christophe Coevoet",
  2462. "email": "stof@notk.org"
  2463. },
  2464. {
  2465. "name": "Symfony Community",
  2466. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  2467. },
  2468. {
  2469. "name": "KnpLabs",
  2470. "homepage": "https://knplabs.com"
  2471. }
  2472. ],
  2473. "description": "An object oriented menu library",
  2474. "homepage": "https://knplabs.com",
  2475. "keywords": [
  2476. "menu",
  2477. "tree"
  2478. ],
  2479. "time": "2017-11-18T20:49:26+00:00"
  2480. },
  2481. {
  2482. "name": "knplabs/knp-menu-bundle",
  2483. "version": "v2.2.1",
  2484. "source": {
  2485. "type": "git",
  2486. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  2487. "reference": "6bea43eb84fc67c43ab2b43709194efffa8a8ac0"
  2488. },
  2489. "dist": {
  2490. "type": "zip",
  2491. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/6bea43eb84fc67c43ab2b43709194efffa8a8ac0",
  2492. "reference": "6bea43eb84fc67c43ab2b43709194efffa8a8ac0",
  2493. "shasum": ""
  2494. },
  2495. "require": {
  2496. "knplabs/knp-menu": "~2.3",
  2497. "php": "^5.6 || ^7",
  2498. "symfony/framework-bundle": "~2.7|~3.0 | ^4.0"
  2499. },
  2500. "require-dev": {
  2501. "symfony/expression-language": "~2.7|~3.0 | ^4.0",
  2502. "symfony/phpunit-bridge": "^3.3 | ^4.0",
  2503. "symfony/templating": "~2.7|~3.0 | ^4.0"
  2504. },
  2505. "type": "symfony-bundle",
  2506. "extra": {
  2507. "branch-alias": {
  2508. "dev-master": "2.2.x-dev"
  2509. }
  2510. },
  2511. "autoload": {
  2512. "psr-4": {
  2513. "Knp\\Bundle\\MenuBundle\\": "src"
  2514. }
  2515. },
  2516. "notification-url": "https://packagist.org/downloads/",
  2517. "license": [
  2518. "MIT"
  2519. ],
  2520. "authors": [
  2521. {
  2522. "name": "Christophe Coevoet",
  2523. "email": "stof@notk.org"
  2524. },
  2525. {
  2526. "name": "Knplabs",
  2527. "homepage": "http://knplabs.com"
  2528. },
  2529. {
  2530. "name": "Symfony Community",
  2531. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  2532. }
  2533. ],
  2534. "description": "This bundle provides an integration of the KnpMenu library",
  2535. "keywords": [
  2536. "menu"
  2537. ],
  2538. "time": "2017-12-24T16:32:39+00:00"
  2539. },
  2540. {
  2541. "name": "lcobucci/jwt",
  2542. "version": "3.3.1",
  2543. "source": {
  2544. "type": "git",
  2545. "url": "https://github.com/lcobucci/jwt.git",
  2546. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18"
  2547. },
  2548. "dist": {
  2549. "type": "zip",
  2550. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  2551. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  2552. "shasum": ""
  2553. },
  2554. "require": {
  2555. "ext-mbstring": "*",
  2556. "ext-openssl": "*",
  2557. "php": "^5.6 || ^7.0"
  2558. },
  2559. "require-dev": {
  2560. "mikey179/vfsstream": "~1.5",
  2561. "phpmd/phpmd": "~2.2",
  2562. "phpunit/php-invoker": "~1.1",
  2563. "phpunit/phpunit": "^5.7 || ^7.3",
  2564. "squizlabs/php_codesniffer": "~2.3"
  2565. },
  2566. "type": "library",
  2567. "extra": {
  2568. "branch-alias": {
  2569. "dev-master": "3.1-dev"
  2570. }
  2571. },
  2572. "autoload": {
  2573. "psr-4": {
  2574. "Lcobucci\\JWT\\": "src"
  2575. }
  2576. },
  2577. "notification-url": "https://packagist.org/downloads/",
  2578. "license": [
  2579. "BSD-3-Clause"
  2580. ],
  2581. "authors": [
  2582. {
  2583. "name": "Luís Otávio Cobucci Oblonczyk",
  2584. "email": "lcobucci@gmail.com",
  2585. "role": "Developer"
  2586. }
  2587. ],
  2588. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2589. "keywords": [
  2590. "JWS",
  2591. "jwt"
  2592. ],
  2593. "time": "2019-05-24T18:30:49+00:00"
  2594. },
  2595. {
  2596. "name": "monolog/monolog",
  2597. "version": "1.24.0",
  2598. "source": {
  2599. "type": "git",
  2600. "url": "https://github.com/Seldaek/monolog.git",
  2601. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  2602. },
  2603. "dist": {
  2604. "type": "zip",
  2605. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  2606. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  2607. "shasum": ""
  2608. },
  2609. "require": {
  2610. "php": ">=5.3.0",
  2611. "psr/log": "~1.0"
  2612. },
  2613. "provide": {
  2614. "psr/log-implementation": "1.0.0"
  2615. },
  2616. "require-dev": {
  2617. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2618. "doctrine/couchdb": "~1.0@dev",
  2619. "graylog2/gelf-php": "~1.0",
  2620. "jakub-onderka/php-parallel-lint": "0.9",
  2621. "php-amqplib/php-amqplib": "~2.4",
  2622. "php-console/php-console": "^3.1.3",
  2623. "phpunit/phpunit": "~4.5",
  2624. "phpunit/phpunit-mock-objects": "2.3.0",
  2625. "ruflin/elastica": ">=0.90 <3.0",
  2626. "sentry/sentry": "^0.13",
  2627. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2628. },
  2629. "suggest": {
  2630. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2631. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2632. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2633. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2634. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2635. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2636. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2637. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2638. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2639. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2640. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2641. },
  2642. "type": "library",
  2643. "extra": {
  2644. "branch-alias": {
  2645. "dev-master": "2.0.x-dev"
  2646. }
  2647. },
  2648. "autoload": {
  2649. "psr-4": {
  2650. "Monolog\\": "src/Monolog"
  2651. }
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "MIT"
  2656. ],
  2657. "authors": [
  2658. {
  2659. "name": "Jordi Boggiano",
  2660. "email": "j.boggiano@seld.be",
  2661. "homepage": "http://seld.be"
  2662. }
  2663. ],
  2664. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2665. "homepage": "http://github.com/Seldaek/monolog",
  2666. "keywords": [
  2667. "log",
  2668. "logging",
  2669. "psr-3"
  2670. ],
  2671. "time": "2018-11-05T09:00:11+00:00"
  2672. },
  2673. {
  2674. "name": "myclabs/php-enum",
  2675. "version": "1.7.2",
  2676. "source": {
  2677. "type": "git",
  2678. "url": "https://github.com/myclabs/php-enum.git",
  2679. "reference": "45f01adf6922df6082bcda36619deb466e826acf"
  2680. },
  2681. "dist": {
  2682. "type": "zip",
  2683. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/45f01adf6922df6082bcda36619deb466e826acf",
  2684. "reference": "45f01adf6922df6082bcda36619deb466e826acf",
  2685. "shasum": ""
  2686. },
  2687. "require": {
  2688. "ext-json": "*",
  2689. "php": ">=7.1"
  2690. },
  2691. "require-dev": {
  2692. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  2693. "squizlabs/php_codesniffer": "1.*"
  2694. },
  2695. "type": "library",
  2696. "autoload": {
  2697. "psr-4": {
  2698. "MyCLabs\\Enum\\": "src/"
  2699. }
  2700. },
  2701. "notification-url": "https://packagist.org/downloads/",
  2702. "license": [
  2703. "MIT"
  2704. ],
  2705. "authors": [
  2706. {
  2707. "name": "PHP Enum contributors",
  2708. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2709. }
  2710. ],
  2711. "description": "PHP Enum implementation",
  2712. "homepage": "http://github.com/myclabs/php-enum",
  2713. "keywords": [
  2714. "enum"
  2715. ],
  2716. "time": "2019-08-19T13:53:00+00:00"
  2717. },
  2718. {
  2719. "name": "nelmio/cors-bundle",
  2720. "version": "1.5.5",
  2721. "source": {
  2722. "type": "git",
  2723. "url": "https://github.com/nelmio/NelmioCorsBundle.git",
  2724. "reference": "adabee944e6fe52ee566caf1770a29355b1e8d83"
  2725. },
  2726. "dist": {
  2727. "type": "zip",
  2728. "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/adabee944e6fe52ee566caf1770a29355b1e8d83",
  2729. "reference": "adabee944e6fe52ee566caf1770a29355b1e8d83",
  2730. "shasum": ""
  2731. },
  2732. "require": {
  2733. "symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0"
  2734. },
  2735. "require-dev": {
  2736. "matthiasnoback/symfony-dependency-injection-test": "^1.0 || ^2.0",
  2737. "mockery/mockery": "^0.9 || ^1.0",
  2738. "symfony/phpunit-bridge": "^2.7 || ^3.0 || ^4.0"
  2739. },
  2740. "type": "symfony-bundle",
  2741. "extra": {
  2742. "branch-alias": {
  2743. "dev-master": "1.5.x-dev"
  2744. }
  2745. },
  2746. "autoload": {
  2747. "psr-4": {
  2748. "Nelmio\\CorsBundle\\": ""
  2749. },
  2750. "exclude-from-classmap": [
  2751. "/Tests/"
  2752. ]
  2753. },
  2754. "notification-url": "https://packagist.org/downloads/",
  2755. "license": [
  2756. "MIT"
  2757. ],
  2758. "authors": [
  2759. {
  2760. "name": "Nelmio",
  2761. "homepage": "http://nelm.io"
  2762. },
  2763. {
  2764. "name": "Symfony Community",
  2765. "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors"
  2766. }
  2767. ],
  2768. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony2 application",
  2769. "keywords": [
  2770. "api",
  2771. "cors",
  2772. "crossdomain"
  2773. ],
  2774. "time": "2019-02-27T13:13:15+00:00"
  2775. },
  2776. {
  2777. "name": "nelmio/security-bundle",
  2778. "version": "2.7.0",
  2779. "source": {
  2780. "type": "git",
  2781. "url": "https://github.com/nelmio/NelmioSecurityBundle.git",
  2782. "reference": "ce63c12665440b538dc743dfd9afad3dadf7d12c"
  2783. },
  2784. "dist": {
  2785. "type": "zip",
  2786. "url": "https://api.github.com/repos/nelmio/NelmioSecurityBundle/zipball/ce63c12665440b538dc743dfd9afad3dadf7d12c",
  2787. "reference": "ce63c12665440b538dc743dfd9afad3dadf7d12c",
  2788. "shasum": ""
  2789. },
  2790. "require": {
  2791. "paragonie/random_compat": "~1.0|~2.0|9.99.99",
  2792. "symfony/framework-bundle": "~2.3|~3.0|~4.0",
  2793. "symfony/security": "~2.3|~3.0|~4.0",
  2794. "ua-parser/uap-php": "^3.4.4"
  2795. },
  2796. "require-dev": {
  2797. "doctrine/cache": "^1.0",
  2798. "psr/cache": "^1.0",
  2799. "symfony/phpunit-bridge": "^3.4.24|~4.0",
  2800. "symfony/yaml": "~2.3|~3.0|~4.0",
  2801. "twig/twig": "^1.24"
  2802. },
  2803. "suggest": {
  2804. "ua-parser/uap-php": "To allow adapt CSP directives given the user-agent"
  2805. },
  2806. "type": "symfony-bundle",
  2807. "extra": {
  2808. "branch-alias": {
  2809. "dev-master": "2.6.x-dev"
  2810. }
  2811. },
  2812. "autoload": {
  2813. "psr-4": {
  2814. "Nelmio\\SecurityBundle\\": ""
  2815. }
  2816. },
  2817. "notification-url": "https://packagist.org/downloads/",
  2818. "license": [
  2819. "MIT"
  2820. ],
  2821. "authors": [
  2822. {
  2823. "name": "Nelmio",
  2824. "homepage": "http://nelm.io"
  2825. },
  2826. {
  2827. "name": "Symfony Community",
  2828. "homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors"
  2829. }
  2830. ],
  2831. "description": "Extra security-related features for Symfony: signed/encrypted cookies, HTTPS/SSL/HSTS handling, cookie session storage, ...",
  2832. "keywords": [
  2833. "security"
  2834. ],
  2835. "time": "2019-04-03T13:44:45+00:00"
  2836. },
  2837. {
  2838. "name": "pagerfanta/pagerfanta",
  2839. "version": "v2.1.2",
  2840. "source": {
  2841. "type": "git",
  2842. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  2843. "reference": "45a85ad426316ae37f2d007022e5b4c95bc3aef4"
  2844. },
  2845. "dist": {
  2846. "type": "zip",
  2847. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/45a85ad426316ae37f2d007022e5b4c95bc3aef4",
  2848. "reference": "45a85ad426316ae37f2d007022e5b4c95bc3aef4",
  2849. "shasum": ""
  2850. },
  2851. "require": {
  2852. "php": "^7.0"
  2853. },
  2854. "require-dev": {
  2855. "doctrine/orm": "~2.3",
  2856. "doctrine/phpcr-odm": "1.*",
  2857. "jackalope/jackalope-doctrine-dbal": "1.*",
  2858. "jmikola/geojson": "~1.0",
  2859. "mandango/mandango": "~1.0@dev",
  2860. "mandango/mondator": "~1.0@dev",
  2861. "phpunit/phpunit": "^6.5",
  2862. "propel/propel": "~2.0@dev",
  2863. "propel/propel1": "~1.6",
  2864. "ruflin/elastica": "~1.3",
  2865. "solarium/solarium": "~3.1"
  2866. },
  2867. "suggest": {
  2868. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  2869. "doctrine/orm": "To use the DoctrineORMAdapter.",
  2870. "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
  2871. "mandango/mandango": "To use the MandangoAdapter.",
  2872. "propel/propel": "To use the Propel2Adapter",
  2873. "propel/propel1": "To use the PropelAdapter",
  2874. "solarium/solarium": "To use the SolariumAdapter."
  2875. },
  2876. "type": "library",
  2877. "extra": {
  2878. "branch-alias": {
  2879. "dev-master": "1.0.x-dev"
  2880. }
  2881. },
  2882. "autoload": {
  2883. "psr-4": {
  2884. "Pagerfanta\\": "src/Pagerfanta/"
  2885. }
  2886. },
  2887. "notification-url": "https://packagist.org/downloads/",
  2888. "license": [
  2889. "MIT"
  2890. ],
  2891. "authors": [
  2892. {
  2893. "name": "Pablo Díez",
  2894. "email": "pablodip@gmail.com"
  2895. }
  2896. ],
  2897. "description": "Pagination for PHP",
  2898. "keywords": [
  2899. "page",
  2900. "pagination",
  2901. "paginator",
  2902. "paging"
  2903. ],
  2904. "time": "2019-04-02T08:50:39+00:00"
  2905. },
  2906. {
  2907. "name": "paragonie/constant_time_encoding",
  2908. "version": "v2.2.3",
  2909. "source": {
  2910. "type": "git",
  2911. "url": "https://github.com/paragonie/constant_time_encoding.git",
  2912. "reference": "55af0dc01992b4d0da7f6372e2eac097bbbaffdb"
  2913. },
  2914. "dist": {
  2915. "type": "zip",
  2916. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/55af0dc01992b4d0da7f6372e2eac097bbbaffdb",
  2917. "reference": "55af0dc01992b4d0da7f6372e2eac097bbbaffdb",
  2918. "shasum": ""
  2919. },
  2920. "require": {
  2921. "php": "^7"
  2922. },
  2923. "require-dev": {
  2924. "phpunit/phpunit": "^6|^7",
  2925. "vimeo/psalm": "^1|^2"
  2926. },
  2927. "type": "library",
  2928. "autoload": {
  2929. "psr-4": {
  2930. "ParagonIE\\ConstantTime\\": "src/"
  2931. }
  2932. },
  2933. "notification-url": "https://packagist.org/downloads/",
  2934. "license": [
  2935. "MIT"
  2936. ],
  2937. "authors": [
  2938. {
  2939. "name": "Paragon Initiative Enterprises",
  2940. "email": "security@paragonie.com",
  2941. "homepage": "https://paragonie.com",
  2942. "role": "Maintainer"
  2943. },
  2944. {
  2945. "name": "Steve 'Sc00bz' Thomas",
  2946. "email": "steve@tobtu.com",
  2947. "homepage": "https://www.tobtu.com",
  2948. "role": "Original Developer"
  2949. }
  2950. ],
  2951. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  2952. "keywords": [
  2953. "base16",
  2954. "base32",
  2955. "base32_decode",
  2956. "base32_encode",
  2957. "base64",
  2958. "base64_decode",
  2959. "base64_encode",
  2960. "bin2hex",
  2961. "encoding",
  2962. "hex",
  2963. "hex2bin",
  2964. "rfc4648"
  2965. ],
  2966. "time": "2019-01-03T20:26:31+00:00"
  2967. },
  2968. {
  2969. "name": "paragonie/random_compat",
  2970. "version": "v2.0.18",
  2971. "source": {
  2972. "type": "git",
  2973. "url": "https://github.com/paragonie/random_compat.git",
  2974. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  2975. },
  2976. "dist": {
  2977. "type": "zip",
  2978. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  2979. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  2980. "shasum": ""
  2981. },
  2982. "require": {
  2983. "php": ">=5.2.0"
  2984. },
  2985. "require-dev": {
  2986. "phpunit/phpunit": "4.*|5.*"
  2987. },
  2988. "suggest": {
  2989. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2990. },
  2991. "type": "library",
  2992. "autoload": {
  2993. "files": [
  2994. "lib/random.php"
  2995. ]
  2996. },
  2997. "notification-url": "https://packagist.org/downloads/",
  2998. "license": [
  2999. "MIT"
  3000. ],
  3001. "authors": [
  3002. {
  3003. "name": "Paragon Initiative Enterprises",
  3004. "email": "security@paragonie.com",
  3005. "homepage": "https://paragonie.com"
  3006. }
  3007. ],
  3008. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3009. "keywords": [
  3010. "csprng",
  3011. "polyfill",
  3012. "pseudorandom",
  3013. "random"
  3014. ],
  3015. "time": "2019-01-03T20:59:08+00:00"
  3016. },
  3017. {
  3018. "name": "php-http/client-common",
  3019. "version": "1.9.1",
  3020. "source": {
  3021. "type": "git",
  3022. "url": "https://github.com/php-http/client-common.git",
  3023. "reference": "0e156a12cc3e46f590c73bf57592a2252fc3dc48"
  3024. },
  3025. "dist": {
  3026. "type": "zip",
  3027. "url": "https://api.github.com/repos/php-http/client-common/zipball/0e156a12cc3e46f590c73bf57592a2252fc3dc48",
  3028. "reference": "0e156a12cc3e46f590c73bf57592a2252fc3dc48",
  3029. "shasum": ""
  3030. },
  3031. "require": {
  3032. "php": "^5.4 || ^7.0",
  3033. "php-http/httplug": "^1.1",
  3034. "php-http/message": "^1.6",
  3035. "php-http/message-factory": "^1.0",
  3036. "symfony/options-resolver": "^2.6 || ^3.0 || ^4.0"
  3037. },
  3038. "require-dev": {
  3039. "guzzlehttp/psr7": "^1.4",
  3040. "phpspec/phpspec": "^2.5 || ^3.4 || ^4.2"
  3041. },
  3042. "suggest": {
  3043. "php-http/cache-plugin": "PSR-6 Cache plugin",
  3044. "php-http/logger-plugin": "PSR-3 Logger plugin",
  3045. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  3046. },
  3047. "type": "library",
  3048. "extra": {
  3049. "branch-alias": {
  3050. "dev-master": "1.9.x-dev"
  3051. }
  3052. },
  3053. "autoload": {
  3054. "psr-4": {
  3055. "Http\\Client\\Common\\": "src/"
  3056. }
  3057. },
  3058. "notification-url": "https://packagist.org/downloads/",
  3059. "license": [
  3060. "MIT"
  3061. ],
  3062. "authors": [
  3063. {
  3064. "name": "Márk Sági-Kazár",
  3065. "email": "mark.sagikazar@gmail.com"
  3066. }
  3067. ],
  3068. "description": "Common HTTP Client implementations and tools for HTTPlug",
  3069. "homepage": "http://httplug.io",
  3070. "keywords": [
  3071. "client",
  3072. "common",
  3073. "http",
  3074. "httplug"
  3075. ],
  3076. "time": "2019-02-02T07:03:15+00:00"
  3077. },
  3078. {
  3079. "name": "php-http/discovery",
  3080. "version": "1.6.1",
  3081. "source": {
  3082. "type": "git",
  3083. "url": "https://github.com/php-http/discovery.git",
  3084. "reference": "684855f2c2e9d0a61868b8f8d6bd0295c8a4b651"
  3085. },
  3086. "dist": {
  3087. "type": "zip",
  3088. "url": "https://api.github.com/repos/php-http/discovery/zipball/684855f2c2e9d0a61868b8f8d6bd0295c8a4b651",
  3089. "reference": "684855f2c2e9d0a61868b8f8d6bd0295c8a4b651",
  3090. "shasum": ""
  3091. },
  3092. "require": {
  3093. "php": "^5.5 || ^7.0"
  3094. },
  3095. "conflict": {
  3096. "nyholm/psr7": "<1.0"
  3097. },
  3098. "require-dev": {
  3099. "php-http/httplug": "^1.0 || ^2.0",
  3100. "php-http/message-factory": "^1.0",
  3101. "phpspec/phpspec": "^2.4",
  3102. "puli/composer-plugin": "1.0.0-beta10"
  3103. },
  3104. "suggest": {
  3105. "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories",
  3106. "puli/composer-plugin": "Sets up Puli which is recommended for Discovery to work. Check http://docs.php-http.org/en/latest/discovery.html for more details."
  3107. },
  3108. "type": "library",
  3109. "extra": {
  3110. "branch-alias": {
  3111. "dev-master": "1.5-dev"
  3112. }
  3113. },
  3114. "autoload": {
  3115. "psr-4": {
  3116. "Http\\Discovery\\": "src/"
  3117. }
  3118. },
  3119. "notification-url": "https://packagist.org/downloads/",
  3120. "license": [
  3121. "MIT"
  3122. ],
  3123. "authors": [
  3124. {
  3125. "name": "Márk Sági-Kazár",
  3126. "email": "mark.sagikazar@gmail.com"
  3127. }
  3128. ],
  3129. "description": "Finds installed HTTPlug implementations and PSR-7 message factories",
  3130. "homepage": "http://php-http.org",
  3131. "keywords": [
  3132. "adapter",
  3133. "client",
  3134. "discovery",
  3135. "factory",
  3136. "http",
  3137. "message",
  3138. "psr7"
  3139. ],
  3140. "time": "2019-02-23T07:42:53+00:00"
  3141. },
  3142. {
  3143. "name": "php-http/guzzle6-adapter",
  3144. "version": "v1.1.1",
  3145. "source": {
  3146. "type": "git",
  3147. "url": "https://github.com/php-http/guzzle6-adapter.git",
  3148. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab"
  3149. },
  3150. "dist": {
  3151. "type": "zip",
  3152. "url": "https://api.github.com/repos/php-http/guzzle6-adapter/zipball/a56941f9dc6110409cfcddc91546ee97039277ab",
  3153. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab",
  3154. "shasum": ""
  3155. },
  3156. "require": {
  3157. "guzzlehttp/guzzle": "^6.0",
  3158. "php": ">=5.5.0",
  3159. "php-http/httplug": "^1.0"
  3160. },
  3161. "provide": {
  3162. "php-http/async-client-implementation": "1.0",
  3163. "php-http/client-implementation": "1.0"
  3164. },
  3165. "require-dev": {
  3166. "ext-curl": "*",
  3167. "php-http/adapter-integration-tests": "^0.4"
  3168. },
  3169. "type": "library",
  3170. "extra": {
  3171. "branch-alias": {
  3172. "dev-master": "1.2-dev"
  3173. }
  3174. },
  3175. "autoload": {
  3176. "psr-4": {
  3177. "Http\\Adapter\\Guzzle6\\": "src/"
  3178. }
  3179. },
  3180. "notification-url": "https://packagist.org/downloads/",
  3181. "license": [
  3182. "MIT"
  3183. ],
  3184. "authors": [
  3185. {
  3186. "name": "Márk Sági-Kazár",
  3187. "email": "mark.sagikazar@gmail.com"
  3188. },
  3189. {
  3190. "name": "David de Boer",
  3191. "email": "david@ddeboer.nl"
  3192. }
  3193. ],
  3194. "description": "Guzzle 6 HTTP Adapter",
  3195. "homepage": "http://httplug.io",
  3196. "keywords": [
  3197. "Guzzle",
  3198. "http"
  3199. ],
  3200. "time": "2016-05-10T06:13:32+00:00"
  3201. },
  3202. {
  3203. "name": "php-http/httplug",
  3204. "version": "v1.1.0",
  3205. "source": {
  3206. "type": "git",
  3207. "url": "https://github.com/php-http/httplug.git",
  3208. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018"
  3209. },
  3210. "dist": {
  3211. "type": "zip",
  3212. "url": "https://api.github.com/repos/php-http/httplug/zipball/1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  3213. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  3214. "shasum": ""
  3215. },
  3216. "require": {
  3217. "php": ">=5.4",
  3218. "php-http/promise": "^1.0",
  3219. "psr/http-message": "^1.0"
  3220. },
  3221. "require-dev": {
  3222. "henrikbjorn/phpspec-code-coverage": "^1.0",
  3223. "phpspec/phpspec": "^2.4"
  3224. },
  3225. "type": "library",
  3226. "extra": {
  3227. "branch-alias": {
  3228. "dev-master": "1.1-dev"
  3229. }
  3230. },
  3231. "autoload": {
  3232. "psr-4": {
  3233. "Http\\Client\\": "src/"
  3234. }
  3235. },
  3236. "notification-url": "https://packagist.org/downloads/",
  3237. "license": [
  3238. "MIT"
  3239. ],
  3240. "authors": [
  3241. {
  3242. "name": "Eric GELOEN",
  3243. "email": "geloen.eric@gmail.com"
  3244. },
  3245. {
  3246. "name": "Márk Sági-Kazár",
  3247. "email": "mark.sagikazar@gmail.com"
  3248. }
  3249. ],
  3250. "description": "HTTPlug, the HTTP client abstraction for PHP",
  3251. "homepage": "http://httplug.io",
  3252. "keywords": [
  3253. "client",
  3254. "http"
  3255. ],
  3256. "time": "2016-08-31T08:30:17+00:00"
  3257. },
  3258. {
  3259. "name": "php-http/httplug-bundle",
  3260. "version": "1.15.0",
  3261. "source": {
  3262. "type": "git",
  3263. "url": "https://github.com/php-http/HttplugBundle.git",
  3264. "reference": "8bcd1b180a3033631b7f06bff1aa27644fe0c2b7"
  3265. },
  3266. "dist": {
  3267. "type": "zip",
  3268. "url": "https://api.github.com/repos/php-http/HttplugBundle/zipball/8bcd1b180a3033631b7f06bff1aa27644fe0c2b7",
  3269. "reference": "8bcd1b180a3033631b7f06bff1aa27644fe0c2b7",
  3270. "shasum": ""
  3271. },
  3272. "require": {
  3273. "php": "^5.5 || ^7.0",
  3274. "php-http/client-common": "^1.9 || ^2.0",
  3275. "php-http/client-implementation": "^1.0",
  3276. "php-http/discovery": "^1.0",
  3277. "php-http/httplug": "^1.0 || ^2.0",
  3278. "php-http/logger-plugin": "^1.1",
  3279. "php-http/message": "^1.4",
  3280. "php-http/message-factory": "^1.0.2",
  3281. "php-http/stopwatch-plugin": "^1.2",
  3282. "psr/http-message": "^1.0",
  3283. "symfony/config": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  3284. "symfony/dependency-injection": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  3285. "symfony/event-dispatcher": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  3286. "symfony/http-kernel": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  3287. "symfony/options-resolver": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1"
  3288. },
  3289. "conflict": {
  3290. "php-http/guzzle6-adapter": "<1.1"
  3291. },
  3292. "require-dev": {
  3293. "guzzlehttp/psr7": "^1.0",
  3294. "matthiasnoback/symfony-dependency-injection-test": "^1.1 || ^2.3",
  3295. "nyholm/nsa": "^1.1",
  3296. "php-http/cache-plugin": "^1.6",
  3297. "php-http/guzzle6-adapter": "^1.1.1 || ^2.0.1",
  3298. "php-http/mock-client": "^1.2",
  3299. "php-http/promise": "^1.0",
  3300. "polishsymfonycommunity/symfony-mocker-container": "^1.0",
  3301. "symfony/browser-kit": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  3302. "symfony/cache": "^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  3303. "symfony/dom-crawler": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  3304. "symfony/framework-bundle": "^2.8.1 || ^3.0.1 || ^4.0",
  3305. "symfony/http-foundation": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  3306. "symfony/phpunit-bridge": "^3.4 || ^4.2",
  3307. "symfony/stopwatch": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  3308. "symfony/twig-bundle": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  3309. "symfony/web-profiler-bundle": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1",
  3310. "twig/twig": "^1.36 || ^2.6"
  3311. },
  3312. "suggest": {
  3313. "php-http/cache-plugin": "To configure clients that cache responses",
  3314. "php-http/mock-client": "Add this to your require-dev section to mock HTTP responses easily",
  3315. "twig/twig": "Add this to your require-dev section when using the WebProfilerBundle"
  3316. },
  3317. "type": "symfony-bundle",
  3318. "extra": {
  3319. "branch-alias": {
  3320. "dev-master": "1.x-dev"
  3321. }
  3322. },
  3323. "autoload": {
  3324. "psr-4": {
  3325. "Http\\HttplugBundle\\": "src/"
  3326. },
  3327. "exclude-from-classmap": [
  3328. "/Tests/Resources/MyPsr18TestClient.php"
  3329. ]
  3330. },
  3331. "notification-url": "https://packagist.org/downloads/",
  3332. "license": [
  3333. "MIT"
  3334. ],
  3335. "authors": [
  3336. {
  3337. "name": "David Buchmann",
  3338. "email": "mail@davidbu.ch"
  3339. },
  3340. {
  3341. "name": "Tobias Nyholm",
  3342. "email": "tobias.nyholm@gmail.com"
  3343. }
  3344. ],
  3345. "description": "Symfony integration for HTTPlug",
  3346. "homepage": "http://httplug.io",
  3347. "keywords": [
  3348. "adapter",
  3349. "bundle",
  3350. "discovery",
  3351. "factory",
  3352. "http",
  3353. "httplug",
  3354. "message",
  3355. "php-http"
  3356. ],
  3357. "time": "2019-03-29T17:15:18+00:00"
  3358. },
  3359. {
  3360. "name": "php-http/logger-plugin",
  3361. "version": "1.1.0",
  3362. "source": {
  3363. "type": "git",
  3364. "url": "https://github.com/php-http/logger-plugin.git",
  3365. "reference": "c1c6e90717ce350319b7b8bc489f1db35bb523fd"
  3366. },
  3367. "dist": {
  3368. "type": "zip",
  3369. "url": "https://api.github.com/repos/php-http/logger-plugin/zipball/c1c6e90717ce350319b7b8bc489f1db35bb523fd",
  3370. "reference": "c1c6e90717ce350319b7b8bc489f1db35bb523fd",
  3371. "shasum": ""
  3372. },
  3373. "require": {
  3374. "php": "^5.4 || ^7.0",
  3375. "php-http/client-common": "^1.9 || ^2.0",
  3376. "php-http/message": "^1.0",
  3377. "psr/log": "^1.0"
  3378. },
  3379. "require-dev": {
  3380. "henrikbjorn/phpspec-code-coverage": "^1.0",
  3381. "phpspec/phpspec": "^2.5"
  3382. },
  3383. "type": "library",
  3384. "extra": {
  3385. "branch-alias": {
  3386. "dev-master": "1.1-dev"
  3387. }
  3388. },
  3389. "autoload": {
  3390. "psr-4": {
  3391. "Http\\Client\\Common\\Plugin\\": "src/"
  3392. }
  3393. },
  3394. "notification-url": "https://packagist.org/downloads/",
  3395. "license": [
  3396. "MIT"
  3397. ],
  3398. "authors": [
  3399. {
  3400. "name": "Márk Sági-Kazár",
  3401. "email": "mark.sagikazar@gmail.com"
  3402. }
  3403. ],
  3404. "description": "PSR-3 Logger plugin for HTTPlug",
  3405. "homepage": "http://httplug.io",
  3406. "keywords": [
  3407. "http",
  3408. "httplug",
  3409. "logger",
  3410. "plugin"
  3411. ],
  3412. "time": "2019-01-30T11:48:21+00:00"
  3413. },
  3414. {
  3415. "name": "php-http/message",
  3416. "version": "1.7.2",
  3417. "source": {
  3418. "type": "git",
  3419. "url": "https://github.com/php-http/message.git",
  3420. "reference": "b159ffe570dffd335e22ef0b91a946eacb182fa1"
  3421. },
  3422. "dist": {
  3423. "type": "zip",
  3424. "url": "https://api.github.com/repos/php-http/message/zipball/b159ffe570dffd335e22ef0b91a946eacb182fa1",
  3425. "reference": "b159ffe570dffd335e22ef0b91a946eacb182fa1",
  3426. "shasum": ""
  3427. },
  3428. "require": {
  3429. "clue/stream-filter": "^1.4",
  3430. "php": "^5.4 || ^7.0",
  3431. "php-http/message-factory": "^1.0.2",
  3432. "psr/http-message": "^1.0"
  3433. },
  3434. "provide": {
  3435. "php-http/message-factory-implementation": "1.0"
  3436. },
  3437. "require-dev": {
  3438. "akeneo/phpspec-skip-example-extension": "^1.0",
  3439. "coduo/phpspec-data-provider-extension": "^1.0",
  3440. "ext-zlib": "*",
  3441. "guzzlehttp/psr7": "^1.0",
  3442. "henrikbjorn/phpspec-code-coverage": "^1.0",
  3443. "phpspec/phpspec": "^2.4",
  3444. "slim/slim": "^3.0",
  3445. "zendframework/zend-diactoros": "^1.0"
  3446. },
  3447. "suggest": {
  3448. "ext-zlib": "Used with compressor/decompressor streams",
  3449. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  3450. "slim/slim": "Used with Slim Framework PSR-7 implementation",
  3451. "zendframework/zend-diactoros": "Used with Diactoros Factories"
  3452. },
  3453. "type": "library",
  3454. "extra": {
  3455. "branch-alias": {
  3456. "dev-master": "1.6-dev"
  3457. }
  3458. },
  3459. "autoload": {
  3460. "psr-4": {
  3461. "Http\\Message\\": "src/"
  3462. },
  3463. "files": [
  3464. "src/filters.php"
  3465. ]
  3466. },
  3467. "notification-url": "https://packagist.org/downloads/",
  3468. "license": [
  3469. "MIT"
  3470. ],
  3471. "authors": [
  3472. {
  3473. "name": "Márk Sági-Kazár",
  3474. "email": "mark.sagikazar@gmail.com"
  3475. }
  3476. ],
  3477. "description": "HTTP Message related tools",
  3478. "homepage": "http://php-http.org",
  3479. "keywords": [
  3480. "http",
  3481. "message",
  3482. "psr-7"
  3483. ],
  3484. "time": "2018-11-01T09:32:41+00:00"
  3485. },
  3486. {
  3487. "name": "php-http/message-factory",
  3488. "version": "v1.0.2",
  3489. "source": {
  3490. "type": "git",
  3491. "url": "https://github.com/php-http/message-factory.git",
  3492. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  3493. },
  3494. "dist": {
  3495. "type": "zip",
  3496. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  3497. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  3498. "shasum": ""
  3499. },
  3500. "require": {
  3501. "php": ">=5.4",
  3502. "psr/http-message": "^1.0"
  3503. },
  3504. "type": "library",
  3505. "extra": {
  3506. "branch-alias": {
  3507. "dev-master": "1.0-dev"
  3508. }
  3509. },
  3510. "autoload": {
  3511. "psr-4": {
  3512. "Http\\Message\\": "src/"
  3513. }
  3514. },
  3515. "notification-url": "https://packagist.org/downloads/",
  3516. "license": [
  3517. "MIT"
  3518. ],
  3519. "authors": [
  3520. {
  3521. "name": "Márk Sági-Kazár",
  3522. "email": "mark.sagikazar@gmail.com"
  3523. }
  3524. ],
  3525. "description": "Factory interfaces for PSR-7 HTTP Message",
  3526. "homepage": "http://php-http.org",
  3527. "keywords": [
  3528. "factory",
  3529. "http",
  3530. "message",
  3531. "stream",
  3532. "uri"
  3533. ],
  3534. "time": "2015-12-19T14:08:53+00:00"
  3535. },
  3536. {
  3537. "name": "php-http/promise",
  3538. "version": "v1.0.0",
  3539. "source": {
  3540. "type": "git",
  3541. "url": "https://github.com/php-http/promise.git",
  3542. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980"
  3543. },
  3544. "dist": {
  3545. "type": "zip",
  3546. "url": "https://api.github.com/repos/php-http/promise/zipball/dc494cdc9d7160b9a09bd5573272195242ce7980",
  3547. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980",
  3548. "shasum": ""
  3549. },
  3550. "require-dev": {
  3551. "henrikbjorn/phpspec-code-coverage": "^1.0",
  3552. "phpspec/phpspec": "^2.4"
  3553. },
  3554. "type": "library",
  3555. "extra": {
  3556. "branch-alias": {
  3557. "dev-master": "1.1-dev"
  3558. }
  3559. },
  3560. "autoload": {
  3561. "psr-4": {
  3562. "Http\\Promise\\": "src/"
  3563. }
  3564. },
  3565. "notification-url": "https://packagist.org/downloads/",
  3566. "license": [
  3567. "MIT"
  3568. ],
  3569. "authors": [
  3570. {
  3571. "name": "Márk Sági-Kazár",
  3572. "email": "mark.sagikazar@gmail.com"
  3573. },
  3574. {
  3575. "name": "Joel Wurtz",
  3576. "email": "joel.wurtz@gmail.com"
  3577. }
  3578. ],
  3579. "description": "Promise used for asynchronous HTTP requests",
  3580. "homepage": "http://httplug.io",
  3581. "keywords": [
  3582. "promise"
  3583. ],
  3584. "time": "2016-01-26T13:27:02+00:00"
  3585. },
  3586. {
  3587. "name": "php-http/stopwatch-plugin",
  3588. "version": "1.2.0",
  3589. "source": {
  3590. "type": "git",
  3591. "url": "https://github.com/php-http/stopwatch-plugin.git",
  3592. "reference": "520419dd18755a1e7b29077e677fbeb16b6629e7"
  3593. },
  3594. "dist": {
  3595. "type": "zip",
  3596. "url": "https://api.github.com/repos/php-http/stopwatch-plugin/zipball/520419dd18755a1e7b29077e677fbeb16b6629e7",
  3597. "reference": "520419dd18755a1e7b29077e677fbeb16b6629e7",
  3598. "shasum": ""
  3599. },
  3600. "require": {
  3601. "php": "^5.4 || ^7.0",
  3602. "php-http/client-common": "^1.9 || ^2.0",
  3603. "symfony/stopwatch": "^2.7 || ^3.0 || ^4.0"
  3604. },
  3605. "require-dev": {
  3606. "phpspec/phpspec": "^2.5 || ^3.0 || ^4.0"
  3607. },
  3608. "type": "library",
  3609. "extra": {
  3610. "branch-alias": {
  3611. "dev-master": "1.2-dev"
  3612. }
  3613. },
  3614. "autoload": {
  3615. "psr-4": {
  3616. "Http\\Client\\Common\\Plugin\\": "src/"
  3617. }
  3618. },
  3619. "notification-url": "https://packagist.org/downloads/",
  3620. "license": [
  3621. "MIT"
  3622. ],
  3623. "authors": [
  3624. {
  3625. "name": "Márk Sági-Kazár",
  3626. "email": "mark.sagikazar@gmail.com"
  3627. }
  3628. ],
  3629. "description": "Symfony Stopwatch plugin for HTTPlug",
  3630. "homepage": "http://httplug.io",
  3631. "keywords": [
  3632. "http",
  3633. "httplug",
  3634. "plugin",
  3635. "stopwatch"
  3636. ],
  3637. "time": "2019-01-30T12:01:37+00:00"
  3638. },
  3639. {
  3640. "name": "predis/predis",
  3641. "version": "v1.1.1",
  3642. "source": {
  3643. "type": "git",
  3644. "url": "https://github.com/nrk/predis.git",
  3645. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  3646. },
  3647. "dist": {
  3648. "type": "zip",
  3649. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  3650. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  3651. "shasum": ""
  3652. },
  3653. "require": {
  3654. "php": ">=5.3.9"
  3655. },
  3656. "require-dev": {
  3657. "phpunit/phpunit": "~4.8"
  3658. },
  3659. "suggest": {
  3660. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3661. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3662. },
  3663. "type": "library",
  3664. "autoload": {
  3665. "psr-4": {
  3666. "Predis\\": "src/"
  3667. }
  3668. },
  3669. "notification-url": "https://packagist.org/downloads/",
  3670. "license": [
  3671. "MIT"
  3672. ],
  3673. "authors": [
  3674. {
  3675. "name": "Daniele Alessandri",
  3676. "email": "suppakilla@gmail.com",
  3677. "homepage": "http://clorophilla.net"
  3678. }
  3679. ],
  3680. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3681. "homepage": "http://github.com/nrk/predis",
  3682. "keywords": [
  3683. "nosql",
  3684. "predis",
  3685. "redis"
  3686. ],
  3687. "time": "2016-06-16T16:22:20+00:00"
  3688. },
  3689. {
  3690. "name": "psr/cache",
  3691. "version": "1.0.1",
  3692. "source": {
  3693. "type": "git",
  3694. "url": "https://github.com/php-fig/cache.git",
  3695. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3696. },
  3697. "dist": {
  3698. "type": "zip",
  3699. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3700. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3701. "shasum": ""
  3702. },
  3703. "require": {
  3704. "php": ">=5.3.0"
  3705. },
  3706. "type": "library",
  3707. "extra": {
  3708. "branch-alias": {
  3709. "dev-master": "1.0.x-dev"
  3710. }
  3711. },
  3712. "autoload": {
  3713. "psr-4": {
  3714. "Psr\\Cache\\": "src/"
  3715. }
  3716. },
  3717. "notification-url": "https://packagist.org/downloads/",
  3718. "license": [
  3719. "MIT"
  3720. ],
  3721. "authors": [
  3722. {
  3723. "name": "PHP-FIG",
  3724. "homepage": "http://www.php-fig.org/"
  3725. }
  3726. ],
  3727. "description": "Common interface for caching libraries",
  3728. "keywords": [
  3729. "cache",
  3730. "psr",
  3731. "psr-6"
  3732. ],
  3733. "time": "2016-08-06T20:24:11+00:00"
  3734. },
  3735. {
  3736. "name": "psr/container",
  3737. "version": "1.0.0",
  3738. "source": {
  3739. "type": "git",
  3740. "url": "https://github.com/php-fig/container.git",
  3741. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3742. },
  3743. "dist": {
  3744. "type": "zip",
  3745. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3746. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3747. "shasum": ""
  3748. },
  3749. "require": {
  3750. "php": ">=5.3.0"
  3751. },
  3752. "type": "library",
  3753. "extra": {
  3754. "branch-alias": {
  3755. "dev-master": "1.0.x-dev"
  3756. }
  3757. },
  3758. "autoload": {
  3759. "psr-4": {
  3760. "Psr\\Container\\": "src/"
  3761. }
  3762. },
  3763. "notification-url": "https://packagist.org/downloads/",
  3764. "license": [
  3765. "MIT"
  3766. ],
  3767. "authors": [
  3768. {
  3769. "name": "PHP-FIG",
  3770. "homepage": "http://www.php-fig.org/"
  3771. }
  3772. ],
  3773. "description": "Common Container Interface (PHP FIG PSR-11)",
  3774. "homepage": "https://github.com/php-fig/container",
  3775. "keywords": [
  3776. "PSR-11",
  3777. "container",
  3778. "container-interface",
  3779. "container-interop",
  3780. "psr"
  3781. ],
  3782. "time": "2017-02-14T16:28:37+00:00"
  3783. },
  3784. {
  3785. "name": "psr/http-message",
  3786. "version": "1.0.1",
  3787. "source": {
  3788. "type": "git",
  3789. "url": "https://github.com/php-fig/http-message.git",
  3790. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3791. },
  3792. "dist": {
  3793. "type": "zip",
  3794. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3795. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3796. "shasum": ""
  3797. },
  3798. "require": {
  3799. "php": ">=5.3.0"
  3800. },
  3801. "type": "library",
  3802. "extra": {
  3803. "branch-alias": {
  3804. "dev-master": "1.0.x-dev"
  3805. }
  3806. },
  3807. "autoload": {
  3808. "psr-4": {
  3809. "Psr\\Http\\Message\\": "src/"
  3810. }
  3811. },
  3812. "notification-url": "https://packagist.org/downloads/",
  3813. "license": [
  3814. "MIT"
  3815. ],
  3816. "authors": [
  3817. {
  3818. "name": "PHP-FIG",
  3819. "homepage": "http://www.php-fig.org/"
  3820. }
  3821. ],
  3822. "description": "Common interface for HTTP messages",
  3823. "homepage": "https://github.com/php-fig/http-message",
  3824. "keywords": [
  3825. "http",
  3826. "http-message",
  3827. "psr",
  3828. "psr-7",
  3829. "request",
  3830. "response"
  3831. ],
  3832. "time": "2016-08-06T14:39:51+00:00"
  3833. },
  3834. {
  3835. "name": "psr/link",
  3836. "version": "1.0.0",
  3837. "source": {
  3838. "type": "git",
  3839. "url": "https://github.com/php-fig/link.git",
  3840. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  3841. },
  3842. "dist": {
  3843. "type": "zip",
  3844. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  3845. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  3846. "shasum": ""
  3847. },
  3848. "require": {
  3849. "php": ">=5.3.0"
  3850. },
  3851. "type": "library",
  3852. "extra": {
  3853. "branch-alias": {
  3854. "dev-master": "1.0.x-dev"
  3855. }
  3856. },
  3857. "autoload": {
  3858. "psr-4": {
  3859. "Psr\\Link\\": "src/"
  3860. }
  3861. },
  3862. "notification-url": "https://packagist.org/downloads/",
  3863. "license": [
  3864. "MIT"
  3865. ],
  3866. "authors": [
  3867. {
  3868. "name": "PHP-FIG",
  3869. "homepage": "http://www.php-fig.org/"
  3870. }
  3871. ],
  3872. "description": "Common interfaces for HTTP links",
  3873. "keywords": [
  3874. "http",
  3875. "http-link",
  3876. "link",
  3877. "psr",
  3878. "psr-13",
  3879. "rest"
  3880. ],
  3881. "time": "2016-10-28T16:06:13+00:00"
  3882. },
  3883. {
  3884. "name": "psr/log",
  3885. "version": "1.1.0",
  3886. "source": {
  3887. "type": "git",
  3888. "url": "https://github.com/php-fig/log.git",
  3889. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  3890. },
  3891. "dist": {
  3892. "type": "zip",
  3893. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3894. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3895. "shasum": ""
  3896. },
  3897. "require": {
  3898. "php": ">=5.3.0"
  3899. },
  3900. "type": "library",
  3901. "extra": {
  3902. "branch-alias": {
  3903. "dev-master": "1.0.x-dev"
  3904. }
  3905. },
  3906. "autoload": {
  3907. "psr-4": {
  3908. "Psr\\Log\\": "Psr/Log/"
  3909. }
  3910. },
  3911. "notification-url": "https://packagist.org/downloads/",
  3912. "license": [
  3913. "MIT"
  3914. ],
  3915. "authors": [
  3916. {
  3917. "name": "PHP-FIG",
  3918. "homepage": "http://www.php-fig.org/"
  3919. }
  3920. ],
  3921. "description": "Common interface for logging libraries",
  3922. "homepage": "https://github.com/php-fig/log",
  3923. "keywords": [
  3924. "log",
  3925. "psr",
  3926. "psr-3"
  3927. ],
  3928. "time": "2018-11-20T15:27:04+00:00"
  3929. },
  3930. {
  3931. "name": "psr/simple-cache",
  3932. "version": "1.0.1",
  3933. "source": {
  3934. "type": "git",
  3935. "url": "https://github.com/php-fig/simple-cache.git",
  3936. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3937. },
  3938. "dist": {
  3939. "type": "zip",
  3940. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3941. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3942. "shasum": ""
  3943. },
  3944. "require": {
  3945. "php": ">=5.3.0"
  3946. },
  3947. "type": "library",
  3948. "extra": {
  3949. "branch-alias": {
  3950. "dev-master": "1.0.x-dev"
  3951. }
  3952. },
  3953. "autoload": {
  3954. "psr-4": {
  3955. "Psr\\SimpleCache\\": "src/"
  3956. }
  3957. },
  3958. "notification-url": "https://packagist.org/downloads/",
  3959. "license": [
  3960. "MIT"
  3961. ],
  3962. "authors": [
  3963. {
  3964. "name": "PHP-FIG",
  3965. "homepage": "http://www.php-fig.org/"
  3966. }
  3967. ],
  3968. "description": "Common interfaces for simple caching",
  3969. "keywords": [
  3970. "cache",
  3971. "caching",
  3972. "psr",
  3973. "psr-16",
  3974. "simple-cache"
  3975. ],
  3976. "time": "2017-10-23T01:57:42+00:00"
  3977. },
  3978. {
  3979. "name": "ralouphie/getallheaders",
  3980. "version": "2.0.5",
  3981. "source": {
  3982. "type": "git",
  3983. "url": "https://github.com/ralouphie/getallheaders.git",
  3984. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  3985. },
  3986. "dist": {
  3987. "type": "zip",
  3988. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3989. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  3990. "shasum": ""
  3991. },
  3992. "require": {
  3993. "php": ">=5.3"
  3994. },
  3995. "require-dev": {
  3996. "phpunit/phpunit": "~3.7.0",
  3997. "satooshi/php-coveralls": ">=1.0"
  3998. },
  3999. "type": "library",
  4000. "autoload": {
  4001. "files": [
  4002. "src/getallheaders.php"
  4003. ]
  4004. },
  4005. "notification-url": "https://packagist.org/downloads/",
  4006. "license": [
  4007. "MIT"
  4008. ],
  4009. "authors": [
  4010. {
  4011. "name": "Ralph Khattar",
  4012. "email": "ralph.khattar@gmail.com"
  4013. }
  4014. ],
  4015. "description": "A polyfill for getallheaders.",
  4016. "time": "2016-02-11T07:05:27+00:00"
  4017. },
  4018. {
  4019. "name": "scheb/two-factor-bundle",
  4020. "version": "v4.7.1",
  4021. "source": {
  4022. "type": "git",
  4023. "url": "https://github.com/scheb/two-factor-bundle.git",
  4024. "reference": "170895e91bdbe2c21983f195271d42e2fcfb3d62"
  4025. },
  4026. "dist": {
  4027. "type": "zip",
  4028. "url": "https://api.github.com/repos/scheb/two-factor-bundle/zipball/170895e91bdbe2c21983f195271d42e2fcfb3d62",
  4029. "reference": "170895e91bdbe2c21983f195271d42e2fcfb3d62",
  4030. "shasum": ""
  4031. },
  4032. "require": {
  4033. "lcobucci/jwt": "^3.2",
  4034. "paragonie/constant_time_encoding": "^2.2",
  4035. "php": "^7.1.3",
  4036. "spomky-labs/otphp": "^9.1",
  4037. "symfony/config": "^3.4|^4.0",
  4038. "symfony/dependency-injection": "^3.4|^4.0",
  4039. "symfony/event-dispatcher": "^3.4|^4.0",
  4040. "symfony/framework-bundle": "^3.4|^4.0",
  4041. "symfony/http-foundation": "^3.4|^4.0",
  4042. "symfony/http-kernel": "^3.4|^4.0",
  4043. "symfony/property-access": "^3.4|^4.0",
  4044. "symfony/security-bundle": "^3.4|^4.0",
  4045. "symfony/twig-bundle": "^3.4|^4.0"
  4046. },
  4047. "require-dev": {
  4048. "doctrine/lexer": "^1.0.1",
  4049. "doctrine/orm": "^2.6",
  4050. "phpunit/phpunit": "^7.0|^8.0",
  4051. "swiftmailer/swiftmailer": "^6.0",
  4052. "symfony/yaml": "^3.4|^4.0"
  4053. },
  4054. "type": "symfony-bundle",
  4055. "autoload": {
  4056. "psr-4": {
  4057. "Scheb\\TwoFactorBundle\\": ""
  4058. }
  4059. },
  4060. "notification-url": "https://packagist.org/downloads/",
  4061. "license": [
  4062. "MIT"
  4063. ],
  4064. "authors": [
  4065. {
  4066. "name": "Christian Scheb",
  4067. "email": "me@christianscheb.de"
  4068. }
  4069. ],
  4070. "description": "Provides two-factor authentication for Symfony applications",
  4071. "homepage": "https://github.com/scheb/two-factor-bundle",
  4072. "keywords": [
  4073. "Authentication",
  4074. "security",
  4075. "symfony",
  4076. "two-factor",
  4077. "two-step"
  4078. ],
  4079. "time": "2019-09-02T18:36:37+00:00"
  4080. },
  4081. {
  4082. "name": "seld/jsonlint",
  4083. "version": "1.7.1",
  4084. "source": {
  4085. "type": "git",
  4086. "url": "https://github.com/Seldaek/jsonlint.git",
  4087. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
  4088. },
  4089. "dist": {
  4090. "type": "zip",
  4091. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
  4092. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
  4093. "shasum": ""
  4094. },
  4095. "require": {
  4096. "php": "^5.3 || ^7.0"
  4097. },
  4098. "require-dev": {
  4099. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4100. },
  4101. "bin": [
  4102. "bin/jsonlint"
  4103. ],
  4104. "type": "library",
  4105. "autoload": {
  4106. "psr-4": {
  4107. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  4108. }
  4109. },
  4110. "notification-url": "https://packagist.org/downloads/",
  4111. "license": [
  4112. "MIT"
  4113. ],
  4114. "authors": [
  4115. {
  4116. "name": "Jordi Boggiano",
  4117. "email": "j.boggiano@seld.be",
  4118. "homepage": "http://seld.be"
  4119. }
  4120. ],
  4121. "description": "JSON Linter",
  4122. "keywords": [
  4123. "json",
  4124. "linter",
  4125. "parser",
  4126. "validator"
  4127. ],
  4128. "time": "2018-01-24T12:46:19+00:00"
  4129. },
  4130. {
  4131. "name": "seld/phar-utils",
  4132. "version": "1.0.1",
  4133. "source": {
  4134. "type": "git",
  4135. "url": "https://github.com/Seldaek/phar-utils.git",
  4136. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  4137. },
  4138. "dist": {
  4139. "type": "zip",
  4140. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  4141. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  4142. "shasum": ""
  4143. },
  4144. "require": {
  4145. "php": ">=5.3"
  4146. },
  4147. "type": "library",
  4148. "extra": {
  4149. "branch-alias": {
  4150. "dev-master": "1.x-dev"
  4151. }
  4152. },
  4153. "autoload": {
  4154. "psr-4": {
  4155. "Seld\\PharUtils\\": "src/"
  4156. }
  4157. },
  4158. "notification-url": "https://packagist.org/downloads/",
  4159. "license": [
  4160. "MIT"
  4161. ],
  4162. "authors": [
  4163. {
  4164. "name": "Jordi Boggiano",
  4165. "email": "j.boggiano@seld.be"
  4166. }
  4167. ],
  4168. "description": "PHAR file format utilities, for when PHP phars you up",
  4169. "keywords": [
  4170. "phra"
  4171. ],
  4172. "time": "2015-10-13T18:44:15+00:00"
  4173. },
  4174. {
  4175. "name": "seld/signal-handler",
  4176. "version": "1.1.0",
  4177. "source": {
  4178. "type": "git",
  4179. "url": "https://github.com/Seldaek/signal-handler.git",
  4180. "reference": "86f791965478b33f76878139df78bc3f369f182c"
  4181. },
  4182. "dist": {
  4183. "type": "zip",
  4184. "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/86f791965478b33f76878139df78bc3f369f182c",
  4185. "reference": "86f791965478b33f76878139df78bc3f369f182c",
  4186. "shasum": ""
  4187. },
  4188. "require": {
  4189. "php": ">=5.4.0"
  4190. },
  4191. "require-dev": {
  4192. "phpunit/phpunit": "^4.8",
  4193. "psr/log": "^1.0"
  4194. },
  4195. "type": "library",
  4196. "autoload": {
  4197. "psr-4": {
  4198. "Seld\\Signal\\": "src/"
  4199. }
  4200. },
  4201. "notification-url": "https://packagist.org/downloads/",
  4202. "license": [
  4203. "MIT"
  4204. ],
  4205. "authors": [
  4206. {
  4207. "name": "Jordi Boggiano",
  4208. "email": "j.boggiano@seld.be",
  4209. "homepage": "http://seld.be"
  4210. }
  4211. ],
  4212. "description": "Simple unix signal handler that silently fails on windows for easy cross-platform development",
  4213. "keywords": [
  4214. "posix",
  4215. "sigint",
  4216. "signal",
  4217. "sigterm",
  4218. "unix"
  4219. ],
  4220. "time": "2016-09-14T09:32:56+00:00"
  4221. },
  4222. {
  4223. "name": "sensio/distribution-bundle",
  4224. "version": "v5.0.24",
  4225. "source": {
  4226. "type": "git",
  4227. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  4228. "reference": "59eac70f15f97ee945924948a6f5e2f6f86b7a4b"
  4229. },
  4230. "dist": {
  4231. "type": "zip",
  4232. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/59eac70f15f97ee945924948a6f5e2f6f86b7a4b",
  4233. "reference": "59eac70f15f97ee945924948a6f5e2f6f86b7a4b",
  4234. "shasum": ""
  4235. },
  4236. "require": {
  4237. "php": ">=5.3.9",
  4238. "sensiolabs/security-checker": "~5.0",
  4239. "symfony/class-loader": "~2.3|~3.0",
  4240. "symfony/config": "~2.3|~3.0",
  4241. "symfony/dependency-injection": "~2.3|~3.0",
  4242. "symfony/filesystem": "~2.3|~3.0",
  4243. "symfony/http-kernel": "~2.3|~3.0",
  4244. "symfony/process": "~2.3|~3.0"
  4245. },
  4246. "type": "symfony-bundle",
  4247. "extra": {
  4248. "branch-alias": {
  4249. "dev-master": "5.0.x-dev"
  4250. }
  4251. },
  4252. "autoload": {
  4253. "psr-4": {
  4254. "Sensio\\Bundle\\DistributionBundle\\": ""
  4255. }
  4256. },
  4257. "notification-url": "https://packagist.org/downloads/",
  4258. "license": [
  4259. "MIT"
  4260. ],
  4261. "authors": [
  4262. {
  4263. "name": "Fabien Potencier",
  4264. "email": "fabien@symfony.com"
  4265. }
  4266. ],
  4267. "description": "Base bundle for Symfony Distributions",
  4268. "keywords": [
  4269. "configuration",
  4270. "distribution"
  4271. ],
  4272. "time": "2018-12-14T17:36:15+00:00"
  4273. },
  4274. {
  4275. "name": "sensio/framework-extra-bundle",
  4276. "version": "v5.2.4",
  4277. "source": {
  4278. "type": "git",
  4279. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  4280. "reference": "1fdf591c4b388e62dbb2579de89c1560b33f865d"
  4281. },
  4282. "dist": {
  4283. "type": "zip",
  4284. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/1fdf591c4b388e62dbb2579de89c1560b33f865d",
  4285. "reference": "1fdf591c4b388e62dbb2579de89c1560b33f865d",
  4286. "shasum": ""
  4287. },
  4288. "require": {
  4289. "doctrine/common": "^2.2",
  4290. "symfony/config": "^3.3|^4.0",
  4291. "symfony/dependency-injection": "^3.3|^4.0",
  4292. "symfony/framework-bundle": "^3.4|^4.0",
  4293. "symfony/http-kernel": "^3.3|^4.0"
  4294. },
  4295. "require-dev": {
  4296. "doctrine/doctrine-bundle": "^1.6",
  4297. "doctrine/orm": "^2.5",
  4298. "symfony/browser-kit": "^3.3|^4.0",
  4299. "symfony/dom-crawler": "^3.3|^4.0",
  4300. "symfony/expression-language": "^3.3|^4.0",
  4301. "symfony/finder": "^3.3|^4.0",
  4302. "symfony/monolog-bridge": "^3.0|^4.0",
  4303. "symfony/monolog-bundle": "^3.2",
  4304. "symfony/phpunit-bridge": "^3.4.19|^4.1.8",
  4305. "symfony/psr-http-message-bridge": "^0.3",
  4306. "symfony/security-bundle": "^3.3|^4.0",
  4307. "symfony/twig-bundle": "^3.3|^4.0",
  4308. "symfony/yaml": "^3.3|^4.0",
  4309. "twig/twig": "~1.12|~2.0",
  4310. "zendframework/zend-diactoros": "^1.3"
  4311. },
  4312. "suggest": {
  4313. "symfony/expression-language": "",
  4314. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  4315. "symfony/security-bundle": ""
  4316. },
  4317. "type": "symfony-bundle",
  4318. "extra": {
  4319. "branch-alias": {
  4320. "dev-master": "5.2.x-dev"
  4321. }
  4322. },
  4323. "autoload": {
  4324. "psr-4": {
  4325. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  4326. }
  4327. },
  4328. "notification-url": "https://packagist.org/downloads/",
  4329. "license": [
  4330. "MIT"
  4331. ],
  4332. "authors": [
  4333. {
  4334. "name": "Fabien Potencier",
  4335. "email": "fabien@symfony.com"
  4336. }
  4337. ],
  4338. "description": "This bundle provides a way to configure your controllers with annotations",
  4339. "keywords": [
  4340. "annotations",
  4341. "controllers"
  4342. ],
  4343. "time": "2018-12-11T16:59:23+00:00"
  4344. },
  4345. {
  4346. "name": "sensio/generator-bundle",
  4347. "version": "v3.1.7",
  4348. "source": {
  4349. "type": "git",
  4350. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  4351. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65"
  4352. },
  4353. "dist": {
  4354. "type": "zip",
  4355. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  4356. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  4357. "shasum": ""
  4358. },
  4359. "require": {
  4360. "symfony/console": "~2.7|~3.0",
  4361. "symfony/framework-bundle": "~2.7|~3.0",
  4362. "symfony/process": "~2.7|~3.0",
  4363. "symfony/yaml": "~2.7|~3.0",
  4364. "twig/twig": "^1.28.2|^2.0"
  4365. },
  4366. "require-dev": {
  4367. "doctrine/orm": "~2.4",
  4368. "symfony/doctrine-bridge": "~2.7|~3.0",
  4369. "symfony/filesystem": "~2.7|~3.0",
  4370. "symfony/phpunit-bridge": "^3.3"
  4371. },
  4372. "type": "symfony-bundle",
  4373. "extra": {
  4374. "branch-alias": {
  4375. "dev-master": "3.1.x-dev"
  4376. }
  4377. },
  4378. "autoload": {
  4379. "psr-4": {
  4380. "Sensio\\Bundle\\GeneratorBundle\\": ""
  4381. },
  4382. "exclude-from-classmap": [
  4383. "/Tests/"
  4384. ]
  4385. },
  4386. "notification-url": "https://packagist.org/downloads/",
  4387. "license": [
  4388. "MIT"
  4389. ],
  4390. "authors": [
  4391. {
  4392. "name": "Fabien Potencier",
  4393. "email": "fabien@symfony.com"
  4394. }
  4395. ],
  4396. "description": "This bundle generates code for you",
  4397. "time": "2017-12-07T15:36:41+00:00"
  4398. },
  4399. {
  4400. "name": "sensiolabs/security-checker",
  4401. "version": "v5.0.3",
  4402. "source": {
  4403. "type": "git",
  4404. "url": "https://github.com/sensiolabs/security-checker.git",
  4405. "reference": "46be3f58adac13084497961e10eed9a7fb4d44d1"
  4406. },
  4407. "dist": {
  4408. "type": "zip",
  4409. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/46be3f58adac13084497961e10eed9a7fb4d44d1",
  4410. "reference": "46be3f58adac13084497961e10eed9a7fb4d44d1",
  4411. "shasum": ""
  4412. },
  4413. "require": {
  4414. "composer/ca-bundle": "^1.0",
  4415. "php": ">=5.5.9",
  4416. "symfony/console": "~2.7|~3.0|~4.0"
  4417. },
  4418. "bin": [
  4419. "security-checker"
  4420. ],
  4421. "type": "library",
  4422. "extra": {
  4423. "branch-alias": {
  4424. "dev-master": "5.0-dev"
  4425. }
  4426. },
  4427. "autoload": {
  4428. "psr-4": {
  4429. "SensioLabs\\Security\\": "SensioLabs/Security"
  4430. }
  4431. },
  4432. "notification-url": "https://packagist.org/downloads/",
  4433. "license": [
  4434. "MIT"
  4435. ],
  4436. "authors": [
  4437. {
  4438. "name": "Fabien Potencier",
  4439. "email": "fabien.potencier@gmail.com"
  4440. }
  4441. ],
  4442. "description": "A security checker for your composer.lock",
  4443. "time": "2018-12-19T17:14:59+00:00"
  4444. },
  4445. {
  4446. "name": "snc/redis-bundle",
  4447. "version": "2.1.9",
  4448. "source": {
  4449. "type": "git",
  4450. "url": "https://github.com/snc/SncRedisBundle.git",
  4451. "reference": "af3ac967b0351ff880f646486bff87247abb5286"
  4452. },
  4453. "dist": {
  4454. "type": "zip",
  4455. "url": "https://api.github.com/repos/snc/SncRedisBundle/zipball/af3ac967b0351ff880f646486bff87247abb5286",
  4456. "reference": "af3ac967b0351ff880f646486bff87247abb5286",
  4457. "shasum": ""
  4458. },
  4459. "require": {
  4460. "php": ">=5.3.3",
  4461. "symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0",
  4462. "symfony/yaml": "^2.7 || ^3.0 || ^4.0"
  4463. },
  4464. "require-dev": {
  4465. "doctrine/cache": "1.*",
  4466. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  4467. "predis/predis": "^1.0",
  4468. "symfony/console": "^2.7 || ^3.0 || ^4.0",
  4469. "symfony/phpunit-bridge": "^2.7 || ^3.0 || ^4.0"
  4470. },
  4471. "suggest": {
  4472. "monolog/monolog": "If you want to use the monolog redis handler.",
  4473. "predis/predis": "If you want to use predis.",
  4474. "symfony/console": "If you want to use commands to interact with the redis database",
  4475. "symfony/proxy-manager-bridge": "If you want to lazy-load some services"
  4476. },
  4477. "type": "symfony-bundle",
  4478. "extra": {
  4479. "branch-alias": {
  4480. "dev-master": "2.x-dev"
  4481. }
  4482. },
  4483. "autoload": {
  4484. "psr-4": {
  4485. "Snc\\RedisBundle\\": ""
  4486. }
  4487. },
  4488. "notification-url": "https://packagist.org/downloads/",
  4489. "license": [
  4490. "MIT"
  4491. ],
  4492. "authors": [
  4493. {
  4494. "name": "Henrik Westphal",
  4495. "email": "henrik.westphal@gmail.com"
  4496. },
  4497. {
  4498. "name": "Community contributors",
  4499. "homepage": "https://github.com/snc/SncRedisBundle/contributors"
  4500. }
  4501. ],
  4502. "description": "A Redis bundle for Symfony",
  4503. "homepage": "https://github.com/snc/SncRedisBundle",
  4504. "keywords": [
  4505. "nosql",
  4506. "redis",
  4507. "symfony"
  4508. ],
  4509. "time": "2019-02-20T07:03:43+00:00"
  4510. },
  4511. {
  4512. "name": "spomky-labs/otphp",
  4513. "version": "v9.1.4",
  4514. "source": {
  4515. "type": "git",
  4516. "url": "https://github.com/Spomky-Labs/otphp.git",
  4517. "reference": "48d463cf909320399fe08eab2e1cd18d899d5068"
  4518. },
  4519. "dist": {
  4520. "type": "zip",
  4521. "url": "https://api.github.com/repos/Spomky-Labs/otphp/zipball/48d463cf909320399fe08eab2e1cd18d899d5068",
  4522. "reference": "48d463cf909320399fe08eab2e1cd18d899d5068",
  4523. "shasum": ""
  4524. },
  4525. "require": {
  4526. "beberlei/assert": "^2.4|^3.0",
  4527. "paragonie/constant_time_encoding": "^2.0",
  4528. "php": "^7.1"
  4529. },
  4530. "require-dev": {
  4531. "phpunit/phpunit": "^6.0",
  4532. "satooshi/php-coveralls": "^1.0"
  4533. },
  4534. "type": "library",
  4535. "extra": {
  4536. "branch-alias": {
  4537. "dev-master": "9.0.x-dev"
  4538. }
  4539. },
  4540. "autoload": {
  4541. "psr-4": {
  4542. "OTPHP\\": "src/"
  4543. }
  4544. },
  4545. "notification-url": "https://packagist.org/downloads/",
  4546. "license": [
  4547. "MIT"
  4548. ],
  4549. "authors": [
  4550. {
  4551. "name": "Florent Morselli",
  4552. "homepage": "https://github.com/Spomky"
  4553. },
  4554. {
  4555. "name": "All contributors",
  4556. "homepage": "https://github.com/Spomky-Labs/otphp/contributors"
  4557. }
  4558. ],
  4559. "description": "A PHP library for generating one time passwords according to RFC 4226 (HOTP Algorithm) and the RFC 6238 (TOTP Algorithm) and compatible with Google Authenticator",
  4560. "homepage": "https://github.com/Spomky-Labs/otphp",
  4561. "keywords": [
  4562. "FreeOTP",
  4563. "RFC 4226",
  4564. "RFC 6238",
  4565. "google authenticator",
  4566. "hotp",
  4567. "otp",
  4568. "totp"
  4569. ],
  4570. "time": "2019-03-18T10:08:51+00:00"
  4571. },
  4572. {
  4573. "name": "swiftmailer/swiftmailer",
  4574. "version": "v6.2.0",
  4575. "source": {
  4576. "type": "git",
  4577. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4578. "reference": "6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707"
  4579. },
  4580. "dist": {
  4581. "type": "zip",
  4582. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707",
  4583. "reference": "6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707",
  4584. "shasum": ""
  4585. },
  4586. "require": {
  4587. "egulias/email-validator": "~2.0",
  4588. "php": ">=7.0.0",
  4589. "symfony/polyfill-iconv": "^1.0",
  4590. "symfony/polyfill-intl-idn": "^1.10",
  4591. "symfony/polyfill-mbstring": "^1.0"
  4592. },
  4593. "require-dev": {
  4594. "mockery/mockery": "~0.9.1",
  4595. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  4596. },
  4597. "suggest": {
  4598. "ext-intl": "Needed to support internationalized email addresses",
  4599. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  4600. },
  4601. "type": "library",
  4602. "extra": {
  4603. "branch-alias": {
  4604. "dev-master": "6.2-dev"
  4605. }
  4606. },
  4607. "autoload": {
  4608. "files": [
  4609. "lib/swift_required.php"
  4610. ]
  4611. },
  4612. "notification-url": "https://packagist.org/downloads/",
  4613. "license": [
  4614. "MIT"
  4615. ],
  4616. "authors": [
  4617. {
  4618. "name": "Chris Corbyn"
  4619. },
  4620. {
  4621. "name": "Fabien Potencier",
  4622. "email": "fabien@symfony.com"
  4623. }
  4624. ],
  4625. "description": "Swiftmailer, free feature-rich PHP mailer",
  4626. "homepage": "https://swiftmailer.symfony.com",
  4627. "keywords": [
  4628. "email",
  4629. "mail",
  4630. "mailer"
  4631. ],
  4632. "time": "2019-03-10T07:52:41+00:00"
  4633. },
  4634. {
  4635. "name": "symfony/monolog-bundle",
  4636. "version": "v3.3.1",
  4637. "source": {
  4638. "type": "git",
  4639. "url": "https://github.com/symfony/monolog-bundle.git",
  4640. "reference": "572e143afc03419a75ab002c80a2fd99299195ff"
  4641. },
  4642. "dist": {
  4643. "type": "zip",
  4644. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/572e143afc03419a75ab002c80a2fd99299195ff",
  4645. "reference": "572e143afc03419a75ab002c80a2fd99299195ff",
  4646. "shasum": ""
  4647. },
  4648. "require": {
  4649. "monolog/monolog": "~1.22",
  4650. "php": ">=5.6",
  4651. "symfony/config": "~2.7|~3.3|~4.0",
  4652. "symfony/dependency-injection": "~2.7|~3.4.10|^4.0.10",
  4653. "symfony/http-kernel": "~2.7|~3.3|~4.0",
  4654. "symfony/monolog-bridge": "~2.7|~3.3|~4.0"
  4655. },
  4656. "require-dev": {
  4657. "symfony/console": "~2.7|~3.3|~4.0",
  4658. "symfony/phpunit-bridge": "^3.3|^4.0",
  4659. "symfony/yaml": "~2.7|~3.3|~4.0"
  4660. },
  4661. "type": "symfony-bundle",
  4662. "extra": {
  4663. "branch-alias": {
  4664. "dev-master": "3.x-dev"
  4665. }
  4666. },
  4667. "autoload": {
  4668. "psr-4": {
  4669. "Symfony\\Bundle\\MonologBundle\\": ""
  4670. },
  4671. "exclude-from-classmap": [
  4672. "/Tests/"
  4673. ]
  4674. },
  4675. "notification-url": "https://packagist.org/downloads/",
  4676. "license": [
  4677. "MIT"
  4678. ],
  4679. "authors": [
  4680. {
  4681. "name": "Symfony Community",
  4682. "homepage": "http://symfony.com/contributors"
  4683. },
  4684. {
  4685. "name": "Fabien Potencier",
  4686. "email": "fabien@symfony.com"
  4687. }
  4688. ],
  4689. "description": "Symfony MonologBundle",
  4690. "homepage": "http://symfony.com",
  4691. "keywords": [
  4692. "log",
  4693. "logging"
  4694. ],
  4695. "time": "2018-11-04T09:58:13+00:00"
  4696. },
  4697. {
  4698. "name": "symfony/polyfill-apcu",
  4699. "version": "v1.11.0",
  4700. "source": {
  4701. "type": "git",
  4702. "url": "https://github.com/symfony/polyfill-apcu.git",
  4703. "reference": "a502face1da6a53289480166f24de2c3c68e5c3c"
  4704. },
  4705. "dist": {
  4706. "type": "zip",
  4707. "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/a502face1da6a53289480166f24de2c3c68e5c3c",
  4708. "reference": "a502face1da6a53289480166f24de2c3c68e5c3c",
  4709. "shasum": ""
  4710. },
  4711. "require": {
  4712. "php": ">=5.3.3"
  4713. },
  4714. "type": "library",
  4715. "extra": {
  4716. "branch-alias": {
  4717. "dev-master": "1.11-dev"
  4718. }
  4719. },
  4720. "autoload": {
  4721. "psr-4": {
  4722. "Symfony\\Polyfill\\Apcu\\": ""
  4723. },
  4724. "files": [
  4725. "bootstrap.php"
  4726. ]
  4727. },
  4728. "notification-url": "https://packagist.org/downloads/",
  4729. "license": [
  4730. "MIT"
  4731. ],
  4732. "authors": [
  4733. {
  4734. "name": "Nicolas Grekas",
  4735. "email": "p@tchwork.com"
  4736. },
  4737. {
  4738. "name": "Symfony Community",
  4739. "homepage": "https://symfony.com/contributors"
  4740. }
  4741. ],
  4742. "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  4743. "homepage": "https://symfony.com",
  4744. "keywords": [
  4745. "apcu",
  4746. "compatibility",
  4747. "polyfill",
  4748. "portable",
  4749. "shim"
  4750. ],
  4751. "time": "2019-02-06T07:57:58+00:00"
  4752. },
  4753. {
  4754. "name": "symfony/polyfill-ctype",
  4755. "version": "v1.11.0",
  4756. "source": {
  4757. "type": "git",
  4758. "url": "https://github.com/symfony/polyfill-ctype.git",
  4759. "reference": "82ebae02209c21113908c229e9883c419720738a"
  4760. },
  4761. "dist": {
  4762. "type": "zip",
  4763. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  4764. "reference": "82ebae02209c21113908c229e9883c419720738a",
  4765. "shasum": ""
  4766. },
  4767. "require": {
  4768. "php": ">=5.3.3"
  4769. },
  4770. "suggest": {
  4771. "ext-ctype": "For best performance"
  4772. },
  4773. "type": "library",
  4774. "extra": {
  4775. "branch-alias": {
  4776. "dev-master": "1.11-dev"
  4777. }
  4778. },
  4779. "autoload": {
  4780. "psr-4": {
  4781. "Symfony\\Polyfill\\Ctype\\": ""
  4782. },
  4783. "files": [
  4784. "bootstrap.php"
  4785. ]
  4786. },
  4787. "notification-url": "https://packagist.org/downloads/",
  4788. "license": [
  4789. "MIT"
  4790. ],
  4791. "authors": [
  4792. {
  4793. "name": "Symfony Community",
  4794. "homepage": "https://symfony.com/contributors"
  4795. },
  4796. {
  4797. "name": "Gert de Pagter",
  4798. "email": "backendtea@gmail.com"
  4799. }
  4800. ],
  4801. "description": "Symfony polyfill for ctype functions",
  4802. "homepage": "https://symfony.com",
  4803. "keywords": [
  4804. "compatibility",
  4805. "ctype",
  4806. "polyfill",
  4807. "portable"
  4808. ],
  4809. "time": "2019-02-06T07:57:58+00:00"
  4810. },
  4811. {
  4812. "name": "symfony/polyfill-iconv",
  4813. "version": "v1.11.0",
  4814. "source": {
  4815. "type": "git",
  4816. "url": "https://github.com/symfony/polyfill-iconv.git",
  4817. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7"
  4818. },
  4819. "dist": {
  4820. "type": "zip",
  4821. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  4822. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  4823. "shasum": ""
  4824. },
  4825. "require": {
  4826. "php": ">=5.3.3"
  4827. },
  4828. "suggest": {
  4829. "ext-iconv": "For best performance"
  4830. },
  4831. "type": "library",
  4832. "extra": {
  4833. "branch-alias": {
  4834. "dev-master": "1.11-dev"
  4835. }
  4836. },
  4837. "autoload": {
  4838. "psr-4": {
  4839. "Symfony\\Polyfill\\Iconv\\": ""
  4840. },
  4841. "files": [
  4842. "bootstrap.php"
  4843. ]
  4844. },
  4845. "notification-url": "https://packagist.org/downloads/",
  4846. "license": [
  4847. "MIT"
  4848. ],
  4849. "authors": [
  4850. {
  4851. "name": "Nicolas Grekas",
  4852. "email": "p@tchwork.com"
  4853. },
  4854. {
  4855. "name": "Symfony Community",
  4856. "homepage": "https://symfony.com/contributors"
  4857. }
  4858. ],
  4859. "description": "Symfony polyfill for the Iconv extension",
  4860. "homepage": "https://symfony.com",
  4861. "keywords": [
  4862. "compatibility",
  4863. "iconv",
  4864. "polyfill",
  4865. "portable",
  4866. "shim"
  4867. ],
  4868. "time": "2019-02-06T07:57:58+00:00"
  4869. },
  4870. {
  4871. "name": "symfony/polyfill-intl-icu",
  4872. "version": "v1.11.0",
  4873. "source": {
  4874. "type": "git",
  4875. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4876. "reference": "999878a3a09d73cae157b0cf89bb6fb2cc073057"
  4877. },
  4878. "dist": {
  4879. "type": "zip",
  4880. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/999878a3a09d73cae157b0cf89bb6fb2cc073057",
  4881. "reference": "999878a3a09d73cae157b0cf89bb6fb2cc073057",
  4882. "shasum": ""
  4883. },
  4884. "require": {
  4885. "php": ">=5.3.3",
  4886. "symfony/intl": "~2.3|~3.0|~4.0"
  4887. },
  4888. "suggest": {
  4889. "ext-intl": "For best performance"
  4890. },
  4891. "type": "library",
  4892. "extra": {
  4893. "branch-alias": {
  4894. "dev-master": "1.9-dev"
  4895. }
  4896. },
  4897. "autoload": {
  4898. "files": [
  4899. "bootstrap.php"
  4900. ]
  4901. },
  4902. "notification-url": "https://packagist.org/downloads/",
  4903. "license": [
  4904. "MIT"
  4905. ],
  4906. "authors": [
  4907. {
  4908. "name": "Nicolas Grekas",
  4909. "email": "p@tchwork.com"
  4910. },
  4911. {
  4912. "name": "Symfony Community",
  4913. "homepage": "https://symfony.com/contributors"
  4914. }
  4915. ],
  4916. "description": "Symfony polyfill for intl's ICU-related data and classes",
  4917. "homepage": "https://symfony.com",
  4918. "keywords": [
  4919. "compatibility",
  4920. "icu",
  4921. "intl",
  4922. "polyfill",
  4923. "portable",
  4924. "shim"
  4925. ],
  4926. "time": "2019-01-07T19:39:47+00:00"
  4927. },
  4928. {
  4929. "name": "symfony/polyfill-intl-idn",
  4930. "version": "v1.11.0",
  4931. "source": {
  4932. "type": "git",
  4933. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4934. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af"
  4935. },
  4936. "dist": {
  4937. "type": "zip",
  4938. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  4939. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  4940. "shasum": ""
  4941. },
  4942. "require": {
  4943. "php": ">=5.3.3",
  4944. "symfony/polyfill-mbstring": "^1.3",
  4945. "symfony/polyfill-php72": "^1.9"
  4946. },
  4947. "suggest": {
  4948. "ext-intl": "For best performance"
  4949. },
  4950. "type": "library",
  4951. "extra": {
  4952. "branch-alias": {
  4953. "dev-master": "1.9-dev"
  4954. }
  4955. },
  4956. "autoload": {
  4957. "psr-4": {
  4958. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4959. },
  4960. "files": [
  4961. "bootstrap.php"
  4962. ]
  4963. },
  4964. "notification-url": "https://packagist.org/downloads/",
  4965. "license": [
  4966. "MIT"
  4967. ],
  4968. "authors": [
  4969. {
  4970. "name": "Symfony Community",
  4971. "homepage": "https://symfony.com/contributors"
  4972. },
  4973. {
  4974. "name": "Laurent Bassin",
  4975. "email": "laurent@bassin.info"
  4976. }
  4977. ],
  4978. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4979. "homepage": "https://symfony.com",
  4980. "keywords": [
  4981. "compatibility",
  4982. "idn",
  4983. "intl",
  4984. "polyfill",
  4985. "portable",
  4986. "shim"
  4987. ],
  4988. "time": "2019-03-04T13:44:35+00:00"
  4989. },
  4990. {
  4991. "name": "symfony/polyfill-mbstring",
  4992. "version": "v1.11.0",
  4993. "source": {
  4994. "type": "git",
  4995. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4996. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  4997. },
  4998. "dist": {
  4999. "type": "zip",
  5000. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  5001. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  5002. "shasum": ""
  5003. },
  5004. "require": {
  5005. "php": ">=5.3.3"
  5006. },
  5007. "suggest": {
  5008. "ext-mbstring": "For best performance"
  5009. },
  5010. "type": "library",
  5011. "extra": {
  5012. "branch-alias": {
  5013. "dev-master": "1.11-dev"
  5014. }
  5015. },
  5016. "autoload": {
  5017. "psr-4": {
  5018. "Symfony\\Polyfill\\Mbstring\\": ""
  5019. },
  5020. "files": [
  5021. "bootstrap.php"
  5022. ]
  5023. },
  5024. "notification-url": "https://packagist.org/downloads/",
  5025. "license": [
  5026. "MIT"
  5027. ],
  5028. "authors": [
  5029. {
  5030. "name": "Nicolas Grekas",
  5031. "email": "p@tchwork.com"
  5032. },
  5033. {
  5034. "name": "Symfony Community",
  5035. "homepage": "https://symfony.com/contributors"
  5036. }
  5037. ],
  5038. "description": "Symfony polyfill for the Mbstring extension",
  5039. "homepage": "https://symfony.com",
  5040. "keywords": [
  5041. "compatibility",
  5042. "mbstring",
  5043. "polyfill",
  5044. "portable",
  5045. "shim"
  5046. ],
  5047. "time": "2019-02-06T07:57:58+00:00"
  5048. },
  5049. {
  5050. "name": "symfony/polyfill-php56",
  5051. "version": "v1.11.0",
  5052. "source": {
  5053. "type": "git",
  5054. "url": "https://github.com/symfony/polyfill-php56.git",
  5055. "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42"
  5056. },
  5057. "dist": {
  5058. "type": "zip",
  5059. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/f4dddbc5c3471e1b700a147a20ae17cdb72dbe42",
  5060. "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42",
  5061. "shasum": ""
  5062. },
  5063. "require": {
  5064. "php": ">=5.3.3",
  5065. "symfony/polyfill-util": "~1.0"
  5066. },
  5067. "type": "library",
  5068. "extra": {
  5069. "branch-alias": {
  5070. "dev-master": "1.11-dev"
  5071. }
  5072. },
  5073. "autoload": {
  5074. "psr-4": {
  5075. "Symfony\\Polyfill\\Php56\\": ""
  5076. },
  5077. "files": [
  5078. "bootstrap.php"
  5079. ]
  5080. },
  5081. "notification-url": "https://packagist.org/downloads/",
  5082. "license": [
  5083. "MIT"
  5084. ],
  5085. "authors": [
  5086. {
  5087. "name": "Nicolas Grekas",
  5088. "email": "p@tchwork.com"
  5089. },
  5090. {
  5091. "name": "Symfony Community",
  5092. "homepage": "https://symfony.com/contributors"
  5093. }
  5094. ],
  5095. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  5096. "homepage": "https://symfony.com",
  5097. "keywords": [
  5098. "compatibility",
  5099. "polyfill",
  5100. "portable",
  5101. "shim"
  5102. ],
  5103. "time": "2019-02-06T07:57:58+00:00"
  5104. },
  5105. {
  5106. "name": "symfony/polyfill-php70",
  5107. "version": "v1.11.0",
  5108. "source": {
  5109. "type": "git",
  5110. "url": "https://github.com/symfony/polyfill-php70.git",
  5111. "reference": "bc4858fb611bda58719124ca079baff854149c89"
  5112. },
  5113. "dist": {
  5114. "type": "zip",
  5115. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89",
  5116. "reference": "bc4858fb611bda58719124ca079baff854149c89",
  5117. "shasum": ""
  5118. },
  5119. "require": {
  5120. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  5121. "php": ">=5.3.3"
  5122. },
  5123. "type": "library",
  5124. "extra": {
  5125. "branch-alias": {
  5126. "dev-master": "1.11-dev"
  5127. }
  5128. },
  5129. "autoload": {
  5130. "psr-4": {
  5131. "Symfony\\Polyfill\\Php70\\": ""
  5132. },
  5133. "files": [
  5134. "bootstrap.php"
  5135. ],
  5136. "classmap": [
  5137. "Resources/stubs"
  5138. ]
  5139. },
  5140. "notification-url": "https://packagist.org/downloads/",
  5141. "license": [
  5142. "MIT"
  5143. ],
  5144. "authors": [
  5145. {
  5146. "name": "Nicolas Grekas",
  5147. "email": "p@tchwork.com"
  5148. },
  5149. {
  5150. "name": "Symfony Community",
  5151. "homepage": "https://symfony.com/contributors"
  5152. }
  5153. ],
  5154. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  5155. "homepage": "https://symfony.com",
  5156. "keywords": [
  5157. "compatibility",
  5158. "polyfill",
  5159. "portable",
  5160. "shim"
  5161. ],
  5162. "time": "2019-02-06T07:57:58+00:00"
  5163. },
  5164. {
  5165. "name": "symfony/polyfill-php72",
  5166. "version": "v1.11.0",
  5167. "source": {
  5168. "type": "git",
  5169. "url": "https://github.com/symfony/polyfill-php72.git",
  5170. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c"
  5171. },
  5172. "dist": {
  5173. "type": "zip",
  5174. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  5175. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  5176. "shasum": ""
  5177. },
  5178. "require": {
  5179. "php": ">=5.3.3"
  5180. },
  5181. "type": "library",
  5182. "extra": {
  5183. "branch-alias": {
  5184. "dev-master": "1.11-dev"
  5185. }
  5186. },
  5187. "autoload": {
  5188. "psr-4": {
  5189. "Symfony\\Polyfill\\Php72\\": ""
  5190. },
  5191. "files": [
  5192. "bootstrap.php"
  5193. ]
  5194. },
  5195. "notification-url": "https://packagist.org/downloads/",
  5196. "license": [
  5197. "MIT"
  5198. ],
  5199. "authors": [
  5200. {
  5201. "name": "Nicolas Grekas",
  5202. "email": "p@tchwork.com"
  5203. },
  5204. {
  5205. "name": "Symfony Community",
  5206. "homepage": "https://symfony.com/contributors"
  5207. }
  5208. ],
  5209. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5210. "homepage": "https://symfony.com",
  5211. "keywords": [
  5212. "compatibility",
  5213. "polyfill",
  5214. "portable",
  5215. "shim"
  5216. ],
  5217. "time": "2019-02-06T07:57:58+00:00"
  5218. },
  5219. {
  5220. "name": "symfony/polyfill-util",
  5221. "version": "v1.11.0",
  5222. "source": {
  5223. "type": "git",
  5224. "url": "https://github.com/symfony/polyfill-util.git",
  5225. "reference": "b46c6cae28a3106735323f00a0c38eccf2328897"
  5226. },
  5227. "dist": {
  5228. "type": "zip",
  5229. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/b46c6cae28a3106735323f00a0c38eccf2328897",
  5230. "reference": "b46c6cae28a3106735323f00a0c38eccf2328897",
  5231. "shasum": ""
  5232. },
  5233. "require": {
  5234. "php": ">=5.3.3"
  5235. },
  5236. "type": "library",
  5237. "extra": {
  5238. "branch-alias": {
  5239. "dev-master": "1.11-dev"
  5240. }
  5241. },
  5242. "autoload": {
  5243. "psr-4": {
  5244. "Symfony\\Polyfill\\Util\\": ""
  5245. }
  5246. },
  5247. "notification-url": "https://packagist.org/downloads/",
  5248. "license": [
  5249. "MIT"
  5250. ],
  5251. "authors": [
  5252. {
  5253. "name": "Nicolas Grekas",
  5254. "email": "p@tchwork.com"
  5255. },
  5256. {
  5257. "name": "Symfony Community",
  5258. "homepage": "https://symfony.com/contributors"
  5259. }
  5260. ],
  5261. "description": "Symfony utilities for portability of PHP codes",
  5262. "homepage": "https://symfony.com",
  5263. "keywords": [
  5264. "compat",
  5265. "compatibility",
  5266. "polyfill",
  5267. "shim"
  5268. ],
  5269. "time": "2019-02-08T14:16:39+00:00"
  5270. },
  5271. {
  5272. "name": "symfony/swiftmailer-bundle",
  5273. "version": "v3.2.6",
  5274. "source": {
  5275. "type": "git",
  5276. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  5277. "reference": "7a83160b50a2479d37eb74ba71577380b9afe4f5"
  5278. },
  5279. "dist": {
  5280. "type": "zip",
  5281. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/7a83160b50a2479d37eb74ba71577380b9afe4f5",
  5282. "reference": "7a83160b50a2479d37eb74ba71577380b9afe4f5",
  5283. "shasum": ""
  5284. },
  5285. "require": {
  5286. "php": ">=7.0.0",
  5287. "swiftmailer/swiftmailer": "^6.1.3",
  5288. "symfony/config": "~2.8|~3.3|~4.0",
  5289. "symfony/dependency-injection": "~2.7|~3.3|~4.0",
  5290. "symfony/http-kernel": "~2.7|~3.3|~4.0"
  5291. },
  5292. "require-dev": {
  5293. "symfony/console": "~2.7|~3.3|~4.0",
  5294. "symfony/framework-bundle": "~2.7|~3.3|~4.0",
  5295. "symfony/phpunit-bridge": "~3.3|~4.0",
  5296. "symfony/yaml": "~2.7|~3.3|~4.0"
  5297. },
  5298. "suggest": {
  5299. "psr/log": "Allows logging"
  5300. },
  5301. "type": "symfony-bundle",
  5302. "extra": {
  5303. "branch-alias": {
  5304. "dev-master": "3.2-dev"
  5305. }
  5306. },
  5307. "autoload": {
  5308. "psr-4": {
  5309. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  5310. },
  5311. "exclude-from-classmap": [
  5312. "/Tests/"
  5313. ]
  5314. },
  5315. "notification-url": "https://packagist.org/downloads/",
  5316. "license": [
  5317. "MIT"
  5318. ],
  5319. "authors": [
  5320. {
  5321. "name": "Symfony Community",
  5322. "homepage": "http://symfony.com/contributors"
  5323. },
  5324. {
  5325. "name": "Fabien Potencier",
  5326. "email": "fabien@symfony.com"
  5327. }
  5328. ],
  5329. "description": "Symfony SwiftmailerBundle",
  5330. "homepage": "http://symfony.com",
  5331. "time": "2019-04-18T15:52:54+00:00"
  5332. },
  5333. {
  5334. "name": "symfony/symfony",
  5335. "version": "v3.4.26",
  5336. "source": {
  5337. "type": "git",
  5338. "url": "https://github.com/symfony/symfony.git",
  5339. "reference": "1b89e7baec9891c323bbf1ec81af77d901fc60c9"
  5340. },
  5341. "dist": {
  5342. "type": "zip",
  5343. "url": "https://api.github.com/repos/symfony/symfony/zipball/1b89e7baec9891c323bbf1ec81af77d901fc60c9",
  5344. "reference": "1b89e7baec9891c323bbf1ec81af77d901fc60c9",
  5345. "shasum": ""
  5346. },
  5347. "require": {
  5348. "doctrine/common": "~2.4",
  5349. "ext-xml": "*",
  5350. "fig/link-util": "^1.0",
  5351. "php": "^5.5.9|>=7.0.8",
  5352. "psr/cache": "~1.0",
  5353. "psr/container": "^1.0",
  5354. "psr/link": "^1.0",
  5355. "psr/log": "~1.0",
  5356. "psr/simple-cache": "^1.0",
  5357. "symfony/polyfill-apcu": "~1.1",
  5358. "symfony/polyfill-ctype": "~1.8",
  5359. "symfony/polyfill-intl-icu": "~1.0",
  5360. "symfony/polyfill-mbstring": "~1.0",
  5361. "symfony/polyfill-php56": "~1.0",
  5362. "symfony/polyfill-php70": "~1.6",
  5363. "twig/twig": "^1.35|^2.4.4"
  5364. },
  5365. "conflict": {
  5366. "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2",
  5367. "phpdocumentor/type-resolver": "<0.3.0",
  5368. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  5369. },
  5370. "provide": {
  5371. "psr/cache-implementation": "1.0",
  5372. "psr/container-implementation": "1.0",
  5373. "psr/log-implementation": "1.0",
  5374. "psr/simple-cache-implementation": "1.0"
  5375. },
  5376. "replace": {
  5377. "symfony/asset": "self.version",
  5378. "symfony/browser-kit": "self.version",
  5379. "symfony/cache": "self.version",
  5380. "symfony/class-loader": "self.version",
  5381. "symfony/config": "self.version",
  5382. "symfony/console": "self.version",
  5383. "symfony/css-selector": "self.version",
  5384. "symfony/debug": "self.version",
  5385. "symfony/debug-bundle": "self.version",
  5386. "symfony/dependency-injection": "self.version",
  5387. "symfony/doctrine-bridge": "self.version",
  5388. "symfony/dom-crawler": "self.version",
  5389. "symfony/dotenv": "self.version",
  5390. "symfony/event-dispatcher": "self.version",
  5391. "symfony/expression-language": "self.version",
  5392. "symfony/filesystem": "self.version",
  5393. "symfony/finder": "self.version",
  5394. "symfony/form": "self.version",
  5395. "symfony/framework-bundle": "self.version",
  5396. "symfony/http-foundation": "self.version",
  5397. "symfony/http-kernel": "self.version",
  5398. "symfony/inflector": "self.version",
  5399. "symfony/intl": "self.version",
  5400. "symfony/ldap": "self.version",
  5401. "symfony/lock": "self.version",
  5402. "symfony/monolog-bridge": "self.version",
  5403. "symfony/options-resolver": "self.version",
  5404. "symfony/process": "self.version",
  5405. "symfony/property-access": "self.version",
  5406. "symfony/property-info": "self.version",
  5407. "symfony/proxy-manager-bridge": "self.version",
  5408. "symfony/routing": "self.version",
  5409. "symfony/security": "self.version",
  5410. "symfony/security-bundle": "self.version",
  5411. "symfony/security-core": "self.version",
  5412. "symfony/security-csrf": "self.version",
  5413. "symfony/security-guard": "self.version",
  5414. "symfony/security-http": "self.version",
  5415. "symfony/serializer": "self.version",
  5416. "symfony/stopwatch": "self.version",
  5417. "symfony/templating": "self.version",
  5418. "symfony/translation": "self.version",
  5419. "symfony/twig-bridge": "self.version",
  5420. "symfony/twig-bundle": "self.version",
  5421. "symfony/validator": "self.version",
  5422. "symfony/var-dumper": "self.version",
  5423. "symfony/web-link": "self.version",
  5424. "symfony/web-profiler-bundle": "self.version",
  5425. "symfony/web-server-bundle": "self.version",
  5426. "symfony/workflow": "self.version",
  5427. "symfony/yaml": "self.version"
  5428. },
  5429. "require-dev": {
  5430. "cache/integration-tests": "dev-master",
  5431. "doctrine/annotations": "~1.0",
  5432. "doctrine/cache": "~1.6",
  5433. "doctrine/data-fixtures": "1.0.*",
  5434. "doctrine/dbal": "~2.4",
  5435. "doctrine/doctrine-bundle": "~1.4",
  5436. "doctrine/orm": "~2.4,>=2.4.5",
  5437. "egulias/email-validator": "~1.2,>=1.2.8|~2.0",
  5438. "monolog/monolog": "~1.11",
  5439. "ocramius/proxy-manager": "~0.4|~1.0|~2.0",
  5440. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  5441. "predis/predis": "~1.0",
  5442. "symfony/phpunit-bridge": "~3.4|~4.0",
  5443. "symfony/security-acl": "~2.8|~3.0"
  5444. },
  5445. "type": "library",
  5446. "extra": {
  5447. "branch-alias": {
  5448. "dev-master": "3.4-dev"
  5449. }
  5450. },
  5451. "autoload": {
  5452. "psr-4": {
  5453. "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/",
  5454. "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/",
  5455. "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/",
  5456. "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
  5457. "Symfony\\Bundle\\": "src/Symfony/Bundle/",
  5458. "Symfony\\Component\\": "src/Symfony/Component/"
  5459. },
  5460. "classmap": [
  5461. "src/Symfony/Component/Intl/Resources/stubs"
  5462. ],
  5463. "exclude-from-classmap": [
  5464. "**/Tests/"
  5465. ]
  5466. },
  5467. "notification-url": "https://packagist.org/downloads/",
  5468. "license": [
  5469. "MIT"
  5470. ],
  5471. "authors": [
  5472. {
  5473. "name": "Fabien Potencier",
  5474. "email": "fabien@symfony.com"
  5475. },
  5476. {
  5477. "name": "Symfony Community",
  5478. "homepage": "https://symfony.com/contributors"
  5479. }
  5480. ],
  5481. "description": "The Symfony PHP framework",
  5482. "homepage": "https://symfony.com",
  5483. "keywords": [
  5484. "framework"
  5485. ],
  5486. "time": "2019-04-17T15:57:27+00:00"
  5487. },
  5488. {
  5489. "name": "twig/extensions",
  5490. "version": "v1.5.4",
  5491. "source": {
  5492. "type": "git",
  5493. "url": "https://github.com/twigphp/Twig-extensions.git",
  5494. "reference": "57873c8b0c1be51caa47df2cdb824490beb16202"
  5495. },
  5496. "dist": {
  5497. "type": "zip",
  5498. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/57873c8b0c1be51caa47df2cdb824490beb16202",
  5499. "reference": "57873c8b0c1be51caa47df2cdb824490beb16202",
  5500. "shasum": ""
  5501. },
  5502. "require": {
  5503. "twig/twig": "^1.27|^2.0"
  5504. },
  5505. "require-dev": {
  5506. "symfony/phpunit-bridge": "^3.4",
  5507. "symfony/translation": "^2.7|^3.4"
  5508. },
  5509. "suggest": {
  5510. "symfony/translation": "Allow the time_diff output to be translated"
  5511. },
  5512. "type": "library",
  5513. "extra": {
  5514. "branch-alias": {
  5515. "dev-master": "1.5-dev"
  5516. }
  5517. },
  5518. "autoload": {
  5519. "psr-0": {
  5520. "Twig_Extensions_": "lib/"
  5521. },
  5522. "psr-4": {
  5523. "Twig\\Extensions\\": "src/"
  5524. }
  5525. },
  5526. "notification-url": "https://packagist.org/downloads/",
  5527. "license": [
  5528. "MIT"
  5529. ],
  5530. "authors": [
  5531. {
  5532. "name": "Fabien Potencier",
  5533. "email": "fabien@symfony.com"
  5534. }
  5535. ],
  5536. "description": "Common additional features for Twig that do not directly belong in core",
  5537. "keywords": [
  5538. "i18n",
  5539. "text"
  5540. ],
  5541. "time": "2018-12-05T18:34:18+00:00"
  5542. },
  5543. {
  5544. "name": "twig/twig",
  5545. "version": "v2.7.4",
  5546. "source": {
  5547. "type": "git",
  5548. "url": "https://github.com/twigphp/Twig.git",
  5549. "reference": "ed9c49220e09bfaeb1ba4d48077c08a7b09908dd"
  5550. },
  5551. "dist": {
  5552. "type": "zip",
  5553. "url": "https://api.github.com/repos/twigphp/Twig/zipball/ed9c49220e09bfaeb1ba4d48077c08a7b09908dd",
  5554. "reference": "ed9c49220e09bfaeb1ba4d48077c08a7b09908dd",
  5555. "shasum": ""
  5556. },
  5557. "require": {
  5558. "php": "^7.0",
  5559. "symfony/polyfill-ctype": "^1.8",
  5560. "symfony/polyfill-mbstring": "^1.3"
  5561. },
  5562. "require-dev": {
  5563. "psr/container": "^1.0",
  5564. "symfony/debug": "^2.7",
  5565. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  5566. },
  5567. "type": "library",
  5568. "extra": {
  5569. "branch-alias": {
  5570. "dev-master": "2.7-dev"
  5571. }
  5572. },
  5573. "autoload": {
  5574. "psr-0": {
  5575. "Twig_": "lib/"
  5576. },
  5577. "psr-4": {
  5578. "Twig\\": "src/"
  5579. }
  5580. },
  5581. "notification-url": "https://packagist.org/downloads/",
  5582. "license": [
  5583. "BSD-3-Clause"
  5584. ],
  5585. "authors": [
  5586. {
  5587. "name": "Fabien Potencier",
  5588. "email": "fabien@symfony.com",
  5589. "homepage": "http://fabien.potencier.org",
  5590. "role": "Lead Developer"
  5591. },
  5592. {
  5593. "name": "Armin Ronacher",
  5594. "email": "armin.ronacher@active-4.com",
  5595. "role": "Project Founder"
  5596. },
  5597. {
  5598. "name": "Twig Team",
  5599. "homepage": "https://twig.symfony.com/contributors",
  5600. "role": "Contributors"
  5601. }
  5602. ],
  5603. "description": "Twig, the flexible, fast, and secure template language for PHP",
  5604. "homepage": "https://twig.symfony.com",
  5605. "keywords": [
  5606. "templating"
  5607. ],
  5608. "time": "2019-03-23T14:28:58+00:00"
  5609. },
  5610. {
  5611. "name": "ua-parser/uap-php",
  5612. "version": "v3.8.8",
  5613. "source": {
  5614. "type": "git",
  5615. "url": "https://github.com/ua-parser/uap-php.git",
  5616. "reference": "3004c494d204c3b6d5e1e80a4ff78e4025e24e2f"
  5617. },
  5618. "dist": {
  5619. "type": "zip",
  5620. "url": "https://api.github.com/repos/ua-parser/uap-php/zipball/3004c494d204c3b6d5e1e80a4ff78e4025e24e2f",
  5621. "reference": "3004c494d204c3b6d5e1e80a4ff78e4025e24e2f",
  5622. "shasum": ""
  5623. },
  5624. "require": {
  5625. "composer/ca-bundle": "^1.1",
  5626. "php": ">=5.3.0"
  5627. },
  5628. "require-dev": {
  5629. "phpunit/phpunit": "<8",
  5630. "symfony/console": "^2.0 || ^3.0 || ^4.0",
  5631. "symfony/filesystem": "^2.0 || ^3.0 || ^4.0",
  5632. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  5633. "symfony/yaml": "^2.0 || ^3.0 || ^4.0"
  5634. },
  5635. "suggest": {
  5636. "symfony/console": "Required for CLI usage - ^2.0 || ^3.0 || ^4.0",
  5637. "symfony/filesystem": "Required for CLI usage - 2.0 || ^3.0 || ^4.0",
  5638. "symfony/finder": "Required for CLI usage - ^2.0 || ^3.0 || ^4.0",
  5639. "symfony/yaml": "Required for CLI usage - ^4.0 || ^5.0"
  5640. },
  5641. "bin": [
  5642. "bin/uaparser"
  5643. ],
  5644. "type": "library",
  5645. "autoload": {
  5646. "psr-4": {
  5647. "UAParser\\": "src"
  5648. }
  5649. },
  5650. "notification-url": "https://packagist.org/downloads/",
  5651. "license": [
  5652. "MIT"
  5653. ],
  5654. "authors": [
  5655. {
  5656. "name": "Lars Strojny",
  5657. "email": "lars@strojny.net"
  5658. },
  5659. {
  5660. "name": "Dave Olsen",
  5661. "email": "dmolsen@gmail.com"
  5662. }
  5663. ],
  5664. "description": "A multi-language port of Browserscope's user agent parser.",
  5665. "time": "2019-03-19T09:54:19+00:00"
  5666. },
  5667. {
  5668. "name": "white-october/pagerfanta-bundle",
  5669. "version": "v1.2.4",
  5670. "source": {
  5671. "type": "git",
  5672. "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  5673. "reference": "19bf14bf8c72e4205c9ca97028436701fe3991a6"
  5674. },
  5675. "dist": {
  5676. "type": "zip",
  5677. "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/19bf14bf8c72e4205c9ca97028436701fe3991a6",
  5678. "reference": "19bf14bf8c72e4205c9ca97028436701fe3991a6",
  5679. "shasum": ""
  5680. },
  5681. "require": {
  5682. "pagerfanta/pagerfanta": "^1.1.0|^2.0.0",
  5683. "php": ">=5.3",
  5684. "symfony/framework-bundle": "~2.3|~3.0|~4.0",
  5685. "symfony/property-access": "~2.3|~3.0|~4.0",
  5686. "symfony/translation": "~2.3|~3.0|~4.0",
  5687. "symfony/twig-bundle": "~2.3|~3.0|~4.0"
  5688. },
  5689. "require-dev": {
  5690. "phpunit/phpunit": "~3.7|~4.0|^5.0",
  5691. "symfony/symfony": "~2.3|~3.0|~4.0"
  5692. },
  5693. "type": "symfony-bundle",
  5694. "extra": {
  5695. "branch-alias": {
  5696. "dev-master": "1.0.x-dev"
  5697. }
  5698. },
  5699. "autoload": {
  5700. "psr-4": {
  5701. "WhiteOctober\\PagerfantaBundle\\": ""
  5702. },
  5703. "exclude-from-classmap": [
  5704. "Tests/",
  5705. "TestsProject/"
  5706. ]
  5707. },
  5708. "notification-url": "https://packagist.org/downloads/",
  5709. "license": [
  5710. "MIT"
  5711. ],
  5712. "authors": [
  5713. {
  5714. "name": "Pablo Díez",
  5715. "email": "pablodip@gmail.com"
  5716. }
  5717. ],
  5718. "description": "Bundle to use Pagerfanta with Symfony2",
  5719. "keywords": [
  5720. "page",
  5721. "paging"
  5722. ],
  5723. "time": "2019-02-14T08:42:52+00:00"
  5724. },
  5725. {
  5726. "name": "zendframework/zend-escaper",
  5727. "version": "2.6.0",
  5728. "source": {
  5729. "type": "git",
  5730. "url": "https://github.com/zendframework/zend-escaper.git",
  5731. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  5732. },
  5733. "dist": {
  5734. "type": "zip",
  5735. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  5736. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  5737. "shasum": ""
  5738. },
  5739. "require": {
  5740. "php": "^5.6 || ^7.0"
  5741. },
  5742. "require-dev": {
  5743. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  5744. "zendframework/zend-coding-standard": "~1.0.0"
  5745. },
  5746. "type": "library",
  5747. "extra": {
  5748. "branch-alias": {
  5749. "dev-master": "2.6.x-dev",
  5750. "dev-develop": "2.7.x-dev"
  5751. }
  5752. },
  5753. "autoload": {
  5754. "psr-4": {
  5755. "Zend\\Escaper\\": "src/"
  5756. }
  5757. },
  5758. "notification-url": "https://packagist.org/downloads/",
  5759. "license": [
  5760. "BSD-3-Clause"
  5761. ],
  5762. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  5763. "keywords": [
  5764. "ZendFramework",
  5765. "escaper",
  5766. "zf"
  5767. ],
  5768. "time": "2018-04-25T15:48:53+00:00"
  5769. },
  5770. {
  5771. "name": "zendframework/zend-feed",
  5772. "version": "2.12.0",
  5773. "source": {
  5774. "type": "git",
  5775. "url": "https://github.com/zendframework/zend-feed.git",
  5776. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  5777. },
  5778. "dist": {
  5779. "type": "zip",
  5780. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  5781. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  5782. "shasum": ""
  5783. },
  5784. "require": {
  5785. "ext-dom": "*",
  5786. "ext-libxml": "*",
  5787. "php": "^5.6 || ^7.0",
  5788. "zendframework/zend-escaper": "^2.5.2",
  5789. "zendframework/zend-stdlib": "^3.2.1"
  5790. },
  5791. "require-dev": {
  5792. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  5793. "psr/http-message": "^1.0.1",
  5794. "zendframework/zend-cache": "^2.7.2",
  5795. "zendframework/zend-coding-standard": "~1.0.0",
  5796. "zendframework/zend-db": "^2.8.2",
  5797. "zendframework/zend-http": "^2.7",
  5798. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  5799. "zendframework/zend-validator": "^2.10.1"
  5800. },
  5801. "suggest": {
  5802. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  5803. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  5804. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  5805. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  5806. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  5807. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  5808. },
  5809. "type": "library",
  5810. "extra": {
  5811. "branch-alias": {
  5812. "dev-master": "2.12.x-dev",
  5813. "dev-develop": "2.13.x-dev"
  5814. }
  5815. },
  5816. "autoload": {
  5817. "psr-4": {
  5818. "Zend\\Feed\\": "src/"
  5819. }
  5820. },
  5821. "notification-url": "https://packagist.org/downloads/",
  5822. "license": [
  5823. "BSD-3-Clause"
  5824. ],
  5825. "description": "provides functionality for consuming RSS and Atom feeds",
  5826. "keywords": [
  5827. "ZendFramework",
  5828. "feed",
  5829. "zf"
  5830. ],
  5831. "time": "2019-03-05T20:08:49+00:00"
  5832. },
  5833. {
  5834. "name": "zendframework/zend-servicemanager",
  5835. "version": "2.7.11",
  5836. "source": {
  5837. "type": "git",
  5838. "url": "https://github.com/zendframework/zend-servicemanager.git",
  5839. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7"
  5840. },
  5841. "dist": {
  5842. "type": "zip",
  5843. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  5844. "reference": "99ec9ed5d0f15aed9876433c74c2709eb933d4c7",
  5845. "shasum": ""
  5846. },
  5847. "require": {
  5848. "container-interop/container-interop": "~1.0",
  5849. "php": "^5.5 || ^7.0"
  5850. },
  5851. "require-dev": {
  5852. "athletic/athletic": "dev-master",
  5853. "fabpot/php-cs-fixer": "1.7.*",
  5854. "phpunit/phpunit": "~4.0",
  5855. "zendframework/zend-di": "~2.5",
  5856. "zendframework/zend-mvc": "~2.5"
  5857. },
  5858. "suggest": {
  5859. "ocramius/proxy-manager": "ProxyManager 0.5.* to handle lazy initialization of services",
  5860. "zendframework/zend-di": "Zend\\Di component"
  5861. },
  5862. "type": "library",
  5863. "extra": {
  5864. "branch-alias": {
  5865. "dev-master": "2.7-dev",
  5866. "dev-develop": "3.0-dev"
  5867. }
  5868. },
  5869. "autoload": {
  5870. "psr-4": {
  5871. "Zend\\ServiceManager\\": "src/"
  5872. }
  5873. },
  5874. "notification-url": "https://packagist.org/downloads/",
  5875. "license": [
  5876. "BSD-3-Clause"
  5877. ],
  5878. "homepage": "https://github.com/zendframework/zend-servicemanager",
  5879. "keywords": [
  5880. "servicemanager",
  5881. "zf2"
  5882. ],
  5883. "time": "2018-06-22T14:49:54+00:00"
  5884. },
  5885. {
  5886. "name": "zendframework/zend-stdlib",
  5887. "version": "3.2.1",
  5888. "source": {
  5889. "type": "git",
  5890. "url": "https://github.com/zendframework/zend-stdlib.git",
  5891. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  5892. },
  5893. "dist": {
  5894. "type": "zip",
  5895. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  5896. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  5897. "shasum": ""
  5898. },
  5899. "require": {
  5900. "php": "^5.6 || ^7.0"
  5901. },
  5902. "require-dev": {
  5903. "phpbench/phpbench": "^0.13",
  5904. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  5905. "zendframework/zend-coding-standard": "~1.0.0"
  5906. },
  5907. "type": "library",
  5908. "extra": {
  5909. "branch-alias": {
  5910. "dev-master": "3.2.x-dev",
  5911. "dev-develop": "3.3.x-dev"
  5912. }
  5913. },
  5914. "autoload": {
  5915. "psr-4": {
  5916. "Zend\\Stdlib\\": "src/"
  5917. }
  5918. },
  5919. "notification-url": "https://packagist.org/downloads/",
  5920. "license": [
  5921. "BSD-3-Clause"
  5922. ],
  5923. "description": "SPL extensions, array utilities, error handlers, and more",
  5924. "keywords": [
  5925. "ZendFramework",
  5926. "stdlib",
  5927. "zf"
  5928. ],
  5929. "time": "2018-08-28T21:34:05+00:00"
  5930. },
  5931. {
  5932. "name": "zendframework/zend-uri",
  5933. "version": "2.7.0",
  5934. "source": {
  5935. "type": "git",
  5936. "url": "https://github.com/zendframework/zend-uri.git",
  5937. "reference": "b2785cd38fe379a784645449db86f21b7739b1ee"
  5938. },
  5939. "dist": {
  5940. "type": "zip",
  5941. "url": "https://api.github.com/repos/zendframework/zend-uri/zipball/b2785cd38fe379a784645449db86f21b7739b1ee",
  5942. "reference": "b2785cd38fe379a784645449db86f21b7739b1ee",
  5943. "shasum": ""
  5944. },
  5945. "require": {
  5946. "php": "^5.6 || ^7.0",
  5947. "zendframework/zend-escaper": "^2.5",
  5948. "zendframework/zend-validator": "^2.10"
  5949. },
  5950. "require-dev": {
  5951. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
  5952. "zendframework/zend-coding-standard": "~1.0.0"
  5953. },
  5954. "type": "library",
  5955. "extra": {
  5956. "branch-alias": {
  5957. "dev-master": "2.7.x-dev",
  5958. "dev-develop": "2.8.x-dev"
  5959. }
  5960. },
  5961. "autoload": {
  5962. "psr-4": {
  5963. "Zend\\Uri\\": "src/"
  5964. }
  5965. },
  5966. "notification-url": "https://packagist.org/downloads/",
  5967. "license": [
  5968. "BSD-3-Clause"
  5969. ],
  5970. "description": "A component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  5971. "keywords": [
  5972. "ZendFramework",
  5973. "uri",
  5974. "zf"
  5975. ],
  5976. "time": "2019-02-27T21:39:04+00:00"
  5977. },
  5978. {
  5979. "name": "zendframework/zend-validator",
  5980. "version": "2.12.0",
  5981. "source": {
  5982. "type": "git",
  5983. "url": "https://github.com/zendframework/zend-validator.git",
  5984. "reference": "64c33668e5fa2d39c6289a878f927ea2b0850c30"
  5985. },
  5986. "dist": {
  5987. "type": "zip",
  5988. "url": "https://api.github.com/repos/zendframework/zend-validator/zipball/64c33668e5fa2d39c6289a878f927ea2b0850c30",
  5989. "reference": "64c33668e5fa2d39c6289a878f927ea2b0850c30",
  5990. "shasum": ""
  5991. },
  5992. "require": {
  5993. "container-interop/container-interop": "^1.1",
  5994. "php": "^5.6 || ^7.0",
  5995. "zendframework/zend-stdlib": "^3.2.1"
  5996. },
  5997. "require-dev": {
  5998. "phpunit/phpunit": "^6.0.8 || ^5.7.15",
  5999. "psr/http-message": "^1.0",
  6000. "zendframework/zend-cache": "^2.6.1",
  6001. "zendframework/zend-coding-standard": "~1.0.0",
  6002. "zendframework/zend-config": "^2.6",
  6003. "zendframework/zend-db": "^2.7",
  6004. "zendframework/zend-filter": "^2.6",
  6005. "zendframework/zend-http": "^2.5.4",
  6006. "zendframework/zend-i18n": "^2.6",
  6007. "zendframework/zend-math": "^2.6",
  6008. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  6009. "zendframework/zend-session": "^2.8",
  6010. "zendframework/zend-uri": "^2.5"
  6011. },
  6012. "suggest": {
  6013. "psr/http-message": "psr/http-message, required when validating PSR-7 UploadedFileInterface instances via the Upload and UploadFile validators",
  6014. "zendframework/zend-db": "Zend\\Db component, required by the (No)RecordExists validator",
  6015. "zendframework/zend-filter": "Zend\\Filter component, required by the Digits validator",
  6016. "zendframework/zend-i18n": "Zend\\I18n component to allow translation of validation error messages",
  6017. "zendframework/zend-i18n-resources": "Translations of validator messages",
  6018. "zendframework/zend-math": "Zend\\Math component, required by the Csrf validator",
  6019. "zendframework/zend-servicemanager": "Zend\\ServiceManager component to allow using the ValidatorPluginManager and validator chains",
  6020. "zendframework/zend-session": "Zend\\Session component, ^2.8; required by the Csrf validator",
  6021. "zendframework/zend-uri": "Zend\\Uri component, required by the Uri and Sitemap\\Loc validators"
  6022. },
  6023. "type": "library",
  6024. "extra": {
  6025. "branch-alias": {
  6026. "dev-master": "2.12.x-dev",
  6027. "dev-develop": "2.13.x-dev"
  6028. },
  6029. "zf": {
  6030. "component": "Zend\\Validator",
  6031. "config-provider": "Zend\\Validator\\ConfigProvider"
  6032. }
  6033. },
  6034. "autoload": {
  6035. "psr-4": {
  6036. "Zend\\Validator\\": "src/"
  6037. }
  6038. },
  6039. "notification-url": "https://packagist.org/downloads/",
  6040. "license": [
  6041. "BSD-3-Clause"
  6042. ],
  6043. "description": "provides a set of commonly needed validators",
  6044. "homepage": "https://github.com/zendframework/zend-validator",
  6045. "keywords": [
  6046. "validator",
  6047. "zf2"
  6048. ],
  6049. "time": "2019-01-30T14:26:10+00:00"
  6050. },
  6051. {
  6052. "name": "zendframework/zenddiagnostics",
  6053. "version": "v1.5.0",
  6054. "source": {
  6055. "type": "git",
  6056. "url": "https://github.com/zendframework/zend-diagnostics.git",
  6057. "reference": "2e60c61935ecc70c9d3b4ce5a8903ea9986ae314"
  6058. },
  6059. "dist": {
  6060. "type": "zip",
  6061. "url": "https://api.github.com/repos/zendframework/zend-diagnostics/zipball/2e60c61935ecc70c9d3b4ce5a8903ea9986ae314",
  6062. "reference": "2e60c61935ecc70c9d3b4ce5a8903ea9986ae314",
  6063. "shasum": ""
  6064. },
  6065. "require": {
  6066. "php": "^5.6 || ^7.0"
  6067. },
  6068. "conflict": {
  6069. "guzzlehttp/ringphp": "<1.1.1"
  6070. },
  6071. "require-dev": {
  6072. "doctrine/migrations": "^1.0 || ^2.0",
  6073. "guzzlehttp/guzzle": "^5.3.3 || ^6.3.3",
  6074. "mikey179/vfsstream": "^1.6",
  6075. "php-amqplib/php-amqplib": "^2.0",
  6076. "phpunit/phpunit": "^5.7.27 || 6.5.8 || ^7.1.2",
  6077. "predis/predis": "^1.0",
  6078. "sensiolabs/security-checker": "^5.0",
  6079. "symfony/yaml": "^2.7 || ^3.0 || ^4.0",
  6080. "zendframework/zend-coding-standard": "~1.0.0",
  6081. "zendframework/zend-loader": "^2.0"
  6082. },
  6083. "suggest": {
  6084. "doctrine/migrations": "Required by Check\\DoctrineMigration",
  6085. "ext-bcmath": "Required by Check\\CpuPerformance",
  6086. "guzzlehttp/guzzle": "Required by Check\\GuzzleHttpService",
  6087. "predis/predis": "Required by Check\\Redis",
  6088. "sensiolabs/security-checker": "Required by Check\\SecurityAdvisory",
  6089. "symfony/yaml": "Required by Check\\YamlFile",
  6090. "videlalvaro/php-amqplib": "Required by Check\\RabbitMQ"
  6091. },
  6092. "type": "library",
  6093. "extra": {
  6094. "branch-alias": {
  6095. "dev-master": "1.5.x-dev",
  6096. "dev-develop": "1.6.x-dev"
  6097. }
  6098. },
  6099. "autoload": {
  6100. "files": [
  6101. "src/autoload.php"
  6102. ],
  6103. "psr-4": {
  6104. "ZendDiagnostics\\": "src/"
  6105. }
  6106. },
  6107. "notification-url": "https://packagist.org/downloads/",
  6108. "license": [
  6109. "BSD-3-Clause"
  6110. ],
  6111. "description": "A set of components for performing diagnostic tests in PHP applications",
  6112. "homepage": "https://github.com/zendframework/zend-diagnostics",
  6113. "keywords": [
  6114. "ZendFramework",
  6115. "diagnostics",
  6116. "php",
  6117. "test",
  6118. "zf"
  6119. ],
  6120. "time": "2019-03-26T15:50:07+00:00"
  6121. }
  6122. ],
  6123. "packages-dev": [
  6124. {
  6125. "name": "myclabs/deep-copy",
  6126. "version": "1.8.1",
  6127. "source": {
  6128. "type": "git",
  6129. "url": "https://github.com/myclabs/DeepCopy.git",
  6130. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
  6131. },
  6132. "dist": {
  6133. "type": "zip",
  6134. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  6135. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  6136. "shasum": ""
  6137. },
  6138. "require": {
  6139. "php": "^7.1"
  6140. },
  6141. "replace": {
  6142. "myclabs/deep-copy": "self.version"
  6143. },
  6144. "require-dev": {
  6145. "doctrine/collections": "^1.0",
  6146. "doctrine/common": "^2.6",
  6147. "phpunit/phpunit": "^7.1"
  6148. },
  6149. "type": "library",
  6150. "autoload": {
  6151. "psr-4": {
  6152. "DeepCopy\\": "src/DeepCopy/"
  6153. },
  6154. "files": [
  6155. "src/DeepCopy/deep_copy.php"
  6156. ]
  6157. },
  6158. "notification-url": "https://packagist.org/downloads/",
  6159. "license": [
  6160. "MIT"
  6161. ],
  6162. "description": "Create deep copies (clones) of your objects",
  6163. "keywords": [
  6164. "clone",
  6165. "copy",
  6166. "duplicate",
  6167. "object",
  6168. "object graph"
  6169. ],
  6170. "time": "2018-06-11T23:09:50+00:00"
  6171. },
  6172. {
  6173. "name": "phar-io/manifest",
  6174. "version": "1.0.3",
  6175. "source": {
  6176. "type": "git",
  6177. "url": "https://github.com/phar-io/manifest.git",
  6178. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  6179. },
  6180. "dist": {
  6181. "type": "zip",
  6182. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6183. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6184. "shasum": ""
  6185. },
  6186. "require": {
  6187. "ext-dom": "*",
  6188. "ext-phar": "*",
  6189. "phar-io/version": "^2.0",
  6190. "php": "^5.6 || ^7.0"
  6191. },
  6192. "type": "library",
  6193. "extra": {
  6194. "branch-alias": {
  6195. "dev-master": "1.0.x-dev"
  6196. }
  6197. },
  6198. "autoload": {
  6199. "classmap": [
  6200. "src/"
  6201. ]
  6202. },
  6203. "notification-url": "https://packagist.org/downloads/",
  6204. "license": [
  6205. "BSD-3-Clause"
  6206. ],
  6207. "authors": [
  6208. {
  6209. "name": "Arne Blankerts",
  6210. "email": "arne@blankerts.de",
  6211. "role": "Developer"
  6212. },
  6213. {
  6214. "name": "Sebastian Heuer",
  6215. "email": "sebastian@phpeople.de",
  6216. "role": "Developer"
  6217. },
  6218. {
  6219. "name": "Sebastian Bergmann",
  6220. "email": "sebastian@phpunit.de",
  6221. "role": "Developer"
  6222. }
  6223. ],
  6224. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6225. "time": "2018-07-08T19:23:20+00:00"
  6226. },
  6227. {
  6228. "name": "phar-io/version",
  6229. "version": "2.0.1",
  6230. "source": {
  6231. "type": "git",
  6232. "url": "https://github.com/phar-io/version.git",
  6233. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  6234. },
  6235. "dist": {
  6236. "type": "zip",
  6237. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6238. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6239. "shasum": ""
  6240. },
  6241. "require": {
  6242. "php": "^5.6 || ^7.0"
  6243. },
  6244. "type": "library",
  6245. "autoload": {
  6246. "classmap": [
  6247. "src/"
  6248. ]
  6249. },
  6250. "notification-url": "https://packagist.org/downloads/",
  6251. "license": [
  6252. "BSD-3-Clause"
  6253. ],
  6254. "authors": [
  6255. {
  6256. "name": "Arne Blankerts",
  6257. "email": "arne@blankerts.de",
  6258. "role": "Developer"
  6259. },
  6260. {
  6261. "name": "Sebastian Heuer",
  6262. "email": "sebastian@phpeople.de",
  6263. "role": "Developer"
  6264. },
  6265. {
  6266. "name": "Sebastian Bergmann",
  6267. "email": "sebastian@phpunit.de",
  6268. "role": "Developer"
  6269. }
  6270. ],
  6271. "description": "Library for handling version information and constraints",
  6272. "time": "2018-07-08T19:19:57+00:00"
  6273. },
  6274. {
  6275. "name": "phpdocumentor/reflection-common",
  6276. "version": "1.0.1",
  6277. "source": {
  6278. "type": "git",
  6279. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  6280. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  6281. },
  6282. "dist": {
  6283. "type": "zip",
  6284. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  6285. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  6286. "shasum": ""
  6287. },
  6288. "require": {
  6289. "php": ">=5.5"
  6290. },
  6291. "require-dev": {
  6292. "phpunit/phpunit": "^4.6"
  6293. },
  6294. "type": "library",
  6295. "extra": {
  6296. "branch-alias": {
  6297. "dev-master": "1.0.x-dev"
  6298. }
  6299. },
  6300. "autoload": {
  6301. "psr-4": {
  6302. "phpDocumentor\\Reflection\\": [
  6303. "src"
  6304. ]
  6305. }
  6306. },
  6307. "notification-url": "https://packagist.org/downloads/",
  6308. "license": [
  6309. "MIT"
  6310. ],
  6311. "authors": [
  6312. {
  6313. "name": "Jaap van Otterdijk",
  6314. "email": "opensource@ijaap.nl"
  6315. }
  6316. ],
  6317. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  6318. "homepage": "http://www.phpdoc.org",
  6319. "keywords": [
  6320. "FQSEN",
  6321. "phpDocumentor",
  6322. "phpdoc",
  6323. "reflection",
  6324. "static analysis"
  6325. ],
  6326. "time": "2017-09-11T18:02:19+00:00"
  6327. },
  6328. {
  6329. "name": "phpdocumentor/reflection-docblock",
  6330. "version": "4.3.0",
  6331. "source": {
  6332. "type": "git",
  6333. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  6334. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  6335. },
  6336. "dist": {
  6337. "type": "zip",
  6338. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  6339. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  6340. "shasum": ""
  6341. },
  6342. "require": {
  6343. "php": "^7.0",
  6344. "phpdocumentor/reflection-common": "^1.0.0",
  6345. "phpdocumentor/type-resolver": "^0.4.0",
  6346. "webmozart/assert": "^1.0"
  6347. },
  6348. "require-dev": {
  6349. "doctrine/instantiator": "~1.0.5",
  6350. "mockery/mockery": "^1.0",
  6351. "phpunit/phpunit": "^6.4"
  6352. },
  6353. "type": "library",
  6354. "extra": {
  6355. "branch-alias": {
  6356. "dev-master": "4.x-dev"
  6357. }
  6358. },
  6359. "autoload": {
  6360. "psr-4": {
  6361. "phpDocumentor\\Reflection\\": [
  6362. "src/"
  6363. ]
  6364. }
  6365. },
  6366. "notification-url": "https://packagist.org/downloads/",
  6367. "license": [
  6368. "MIT"
  6369. ],
  6370. "authors": [
  6371. {
  6372. "name": "Mike van Riel",
  6373. "email": "me@mikevanriel.com"
  6374. }
  6375. ],
  6376. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  6377. "time": "2017-11-30T07:14:17+00:00"
  6378. },
  6379. {
  6380. "name": "phpdocumentor/type-resolver",
  6381. "version": "0.4.0",
  6382. "source": {
  6383. "type": "git",
  6384. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  6385. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  6386. },
  6387. "dist": {
  6388. "type": "zip",
  6389. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  6390. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  6391. "shasum": ""
  6392. },
  6393. "require": {
  6394. "php": "^5.5 || ^7.0",
  6395. "phpdocumentor/reflection-common": "^1.0"
  6396. },
  6397. "require-dev": {
  6398. "mockery/mockery": "^0.9.4",
  6399. "phpunit/phpunit": "^5.2||^4.8.24"
  6400. },
  6401. "type": "library",
  6402. "extra": {
  6403. "branch-alias": {
  6404. "dev-master": "1.0.x-dev"
  6405. }
  6406. },
  6407. "autoload": {
  6408. "psr-4": {
  6409. "phpDocumentor\\Reflection\\": [
  6410. "src/"
  6411. ]
  6412. }
  6413. },
  6414. "notification-url": "https://packagist.org/downloads/",
  6415. "license": [
  6416. "MIT"
  6417. ],
  6418. "authors": [
  6419. {
  6420. "name": "Mike van Riel",
  6421. "email": "me@mikevanriel.com"
  6422. }
  6423. ],
  6424. "time": "2017-07-14T14:27:02+00:00"
  6425. },
  6426. {
  6427. "name": "phpspec/prophecy",
  6428. "version": "1.8.0",
  6429. "source": {
  6430. "type": "git",
  6431. "url": "https://github.com/phpspec/prophecy.git",
  6432. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  6433. },
  6434. "dist": {
  6435. "type": "zip",
  6436. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  6437. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  6438. "shasum": ""
  6439. },
  6440. "require": {
  6441. "doctrine/instantiator": "^1.0.2",
  6442. "php": "^5.3|^7.0",
  6443. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  6444. "sebastian/comparator": "^1.1|^2.0|^3.0",
  6445. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  6446. },
  6447. "require-dev": {
  6448. "phpspec/phpspec": "^2.5|^3.2",
  6449. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  6450. },
  6451. "type": "library",
  6452. "extra": {
  6453. "branch-alias": {
  6454. "dev-master": "1.8.x-dev"
  6455. }
  6456. },
  6457. "autoload": {
  6458. "psr-0": {
  6459. "Prophecy\\": "src/"
  6460. }
  6461. },
  6462. "notification-url": "https://packagist.org/downloads/",
  6463. "license": [
  6464. "MIT"
  6465. ],
  6466. "authors": [
  6467. {
  6468. "name": "Konstantin Kudryashov",
  6469. "email": "ever.zet@gmail.com",
  6470. "homepage": "http://everzet.com"
  6471. },
  6472. {
  6473. "name": "Marcello Duarte",
  6474. "email": "marcello.duarte@gmail.com"
  6475. }
  6476. ],
  6477. "description": "Highly opinionated mocking framework for PHP 5.3+",
  6478. "homepage": "https://github.com/phpspec/prophecy",
  6479. "keywords": [
  6480. "Double",
  6481. "Dummy",
  6482. "fake",
  6483. "mock",
  6484. "spy",
  6485. "stub"
  6486. ],
  6487. "time": "2018-08-05T17:53:17+00:00"
  6488. },
  6489. {
  6490. "name": "phpunit/php-code-coverage",
  6491. "version": "7.0.3",
  6492. "source": {
  6493. "type": "git",
  6494. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6495. "reference": "0317a769a81845c390e19684d9ba25d7f6aa4707"
  6496. },
  6497. "dist": {
  6498. "type": "zip",
  6499. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/0317a769a81845c390e19684d9ba25d7f6aa4707",
  6500. "reference": "0317a769a81845c390e19684d9ba25d7f6aa4707",
  6501. "shasum": ""
  6502. },
  6503. "require": {
  6504. "ext-dom": "*",
  6505. "ext-xmlwriter": "*",
  6506. "php": "^7.2",
  6507. "phpunit/php-file-iterator": "^2.0.2",
  6508. "phpunit/php-text-template": "^1.2.1",
  6509. "phpunit/php-token-stream": "^3.0.1",
  6510. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  6511. "sebastian/environment": "^4.1",
  6512. "sebastian/version": "^2.0.1",
  6513. "theseer/tokenizer": "^1.1"
  6514. },
  6515. "require-dev": {
  6516. "phpunit/phpunit": "^8.0"
  6517. },
  6518. "suggest": {
  6519. "ext-xdebug": "^2.6.1"
  6520. },
  6521. "type": "library",
  6522. "extra": {
  6523. "branch-alias": {
  6524. "dev-master": "7.0-dev"
  6525. }
  6526. },
  6527. "autoload": {
  6528. "classmap": [
  6529. "src/"
  6530. ]
  6531. },
  6532. "notification-url": "https://packagist.org/downloads/",
  6533. "license": [
  6534. "BSD-3-Clause"
  6535. ],
  6536. "authors": [
  6537. {
  6538. "name": "Sebastian Bergmann",
  6539. "email": "sebastian@phpunit.de",
  6540. "role": "lead"
  6541. }
  6542. ],
  6543. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6544. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6545. "keywords": [
  6546. "coverage",
  6547. "testing",
  6548. "xunit"
  6549. ],
  6550. "time": "2019-02-26T07:38:26+00:00"
  6551. },
  6552. {
  6553. "name": "phpunit/php-file-iterator",
  6554. "version": "2.0.2",
  6555. "source": {
  6556. "type": "git",
  6557. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6558. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  6559. },
  6560. "dist": {
  6561. "type": "zip",
  6562. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  6563. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  6564. "shasum": ""
  6565. },
  6566. "require": {
  6567. "php": "^7.1"
  6568. },
  6569. "require-dev": {
  6570. "phpunit/phpunit": "^7.1"
  6571. },
  6572. "type": "library",
  6573. "extra": {
  6574. "branch-alias": {
  6575. "dev-master": "2.0.x-dev"
  6576. }
  6577. },
  6578. "autoload": {
  6579. "classmap": [
  6580. "src/"
  6581. ]
  6582. },
  6583. "notification-url": "https://packagist.org/downloads/",
  6584. "license": [
  6585. "BSD-3-Clause"
  6586. ],
  6587. "authors": [
  6588. {
  6589. "name": "Sebastian Bergmann",
  6590. "email": "sebastian@phpunit.de",
  6591. "role": "lead"
  6592. }
  6593. ],
  6594. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6595. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6596. "keywords": [
  6597. "filesystem",
  6598. "iterator"
  6599. ],
  6600. "time": "2018-09-13T20:33:42+00:00"
  6601. },
  6602. {
  6603. "name": "phpunit/php-text-template",
  6604. "version": "1.2.1",
  6605. "source": {
  6606. "type": "git",
  6607. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6608. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  6609. },
  6610. "dist": {
  6611. "type": "zip",
  6612. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6613. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6614. "shasum": ""
  6615. },
  6616. "require": {
  6617. "php": ">=5.3.3"
  6618. },
  6619. "type": "library",
  6620. "autoload": {
  6621. "classmap": [
  6622. "src/"
  6623. ]
  6624. },
  6625. "notification-url": "https://packagist.org/downloads/",
  6626. "license": [
  6627. "BSD-3-Clause"
  6628. ],
  6629. "authors": [
  6630. {
  6631. "name": "Sebastian Bergmann",
  6632. "email": "sebastian@phpunit.de",
  6633. "role": "lead"
  6634. }
  6635. ],
  6636. "description": "Simple template engine.",
  6637. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6638. "keywords": [
  6639. "template"
  6640. ],
  6641. "time": "2015-06-21T13:50:34+00:00"
  6642. },
  6643. {
  6644. "name": "phpunit/php-timer",
  6645. "version": "2.1.1",
  6646. "source": {
  6647. "type": "git",
  6648. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6649. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059"
  6650. },
  6651. "dist": {
  6652. "type": "zip",
  6653. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b389aebe1b8b0578430bda0c7c95a829608e059",
  6654. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059",
  6655. "shasum": ""
  6656. },
  6657. "require": {
  6658. "php": "^7.1"
  6659. },
  6660. "require-dev": {
  6661. "phpunit/phpunit": "^7.0"
  6662. },
  6663. "type": "library",
  6664. "extra": {
  6665. "branch-alias": {
  6666. "dev-master": "2.1-dev"
  6667. }
  6668. },
  6669. "autoload": {
  6670. "classmap": [
  6671. "src/"
  6672. ]
  6673. },
  6674. "notification-url": "https://packagist.org/downloads/",
  6675. "license": [
  6676. "BSD-3-Clause"
  6677. ],
  6678. "authors": [
  6679. {
  6680. "name": "Sebastian Bergmann",
  6681. "email": "sebastian@phpunit.de",
  6682. "role": "lead"
  6683. }
  6684. ],
  6685. "description": "Utility class for timing",
  6686. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6687. "keywords": [
  6688. "timer"
  6689. ],
  6690. "time": "2019-02-20T10:12:59+00:00"
  6691. },
  6692. {
  6693. "name": "phpunit/php-token-stream",
  6694. "version": "3.0.1",
  6695. "source": {
  6696. "type": "git",
  6697. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  6698. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18"
  6699. },
  6700. "dist": {
  6701. "type": "zip",
  6702. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/c99e3be9d3e85f60646f152f9002d46ed7770d18",
  6703. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18",
  6704. "shasum": ""
  6705. },
  6706. "require": {
  6707. "ext-tokenizer": "*",
  6708. "php": "^7.1"
  6709. },
  6710. "require-dev": {
  6711. "phpunit/phpunit": "^7.0"
  6712. },
  6713. "type": "library",
  6714. "extra": {
  6715. "branch-alias": {
  6716. "dev-master": "3.0-dev"
  6717. }
  6718. },
  6719. "autoload": {
  6720. "classmap": [
  6721. "src/"
  6722. ]
  6723. },
  6724. "notification-url": "https://packagist.org/downloads/",
  6725. "license": [
  6726. "BSD-3-Clause"
  6727. ],
  6728. "authors": [
  6729. {
  6730. "name": "Sebastian Bergmann",
  6731. "email": "sebastian@phpunit.de"
  6732. }
  6733. ],
  6734. "description": "Wrapper around PHP's tokenizer extension.",
  6735. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  6736. "keywords": [
  6737. "tokenizer"
  6738. ],
  6739. "time": "2018-10-30T05:52:18+00:00"
  6740. },
  6741. {
  6742. "name": "phpunit/phpunit",
  6743. "version": "8.0.6",
  6744. "source": {
  6745. "type": "git",
  6746. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6747. "reference": "925109f8bbe6dae28fbc7bb07446a53abd3b1c25"
  6748. },
  6749. "dist": {
  6750. "type": "zip",
  6751. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/925109f8bbe6dae28fbc7bb07446a53abd3b1c25",
  6752. "reference": "925109f8bbe6dae28fbc7bb07446a53abd3b1c25",
  6753. "shasum": ""
  6754. },
  6755. "require": {
  6756. "doctrine/instantiator": "^1.1",
  6757. "ext-dom": "*",
  6758. "ext-json": "*",
  6759. "ext-libxml": "*",
  6760. "ext-mbstring": "*",
  6761. "ext-xml": "*",
  6762. "ext-xmlwriter": "*",
  6763. "myclabs/deep-copy": "^1.7",
  6764. "phar-io/manifest": "^1.0.2",
  6765. "phar-io/version": "^2.0",
  6766. "php": "^7.2",
  6767. "phpspec/prophecy": "^1.7",
  6768. "phpunit/php-code-coverage": "^7.0",
  6769. "phpunit/php-file-iterator": "^2.0.1",
  6770. "phpunit/php-text-template": "^1.2.1",
  6771. "phpunit/php-timer": "^2.1",
  6772. "sebastian/comparator": "^3.0",
  6773. "sebastian/diff": "^3.0",
  6774. "sebastian/environment": "^4.1",
  6775. "sebastian/exporter": "^3.1",
  6776. "sebastian/global-state": "^3.0",
  6777. "sebastian/object-enumerator": "^3.0.3",
  6778. "sebastian/resource-operations": "^2.0",
  6779. "sebastian/version": "^2.0.1"
  6780. },
  6781. "require-dev": {
  6782. "ext-pdo": "*"
  6783. },
  6784. "suggest": {
  6785. "ext-soap": "*",
  6786. "ext-xdebug": "*",
  6787. "phpunit/php-invoker": "^2.0"
  6788. },
  6789. "bin": [
  6790. "phpunit"
  6791. ],
  6792. "type": "library",
  6793. "extra": {
  6794. "branch-alias": {
  6795. "dev-master": "8.0-dev"
  6796. }
  6797. },
  6798. "autoload": {
  6799. "classmap": [
  6800. "src/"
  6801. ]
  6802. },
  6803. "notification-url": "https://packagist.org/downloads/",
  6804. "license": [
  6805. "BSD-3-Clause"
  6806. ],
  6807. "authors": [
  6808. {
  6809. "name": "Sebastian Bergmann",
  6810. "email": "sebastian@phpunit.de",
  6811. "role": "lead"
  6812. }
  6813. ],
  6814. "description": "The PHP Unit Testing framework.",
  6815. "homepage": "https://phpunit.de/",
  6816. "keywords": [
  6817. "phpunit",
  6818. "testing",
  6819. "xunit"
  6820. ],
  6821. "time": "2019-03-26T14:00:24+00:00"
  6822. },
  6823. {
  6824. "name": "sebastian/code-unit-reverse-lookup",
  6825. "version": "1.0.1",
  6826. "source": {
  6827. "type": "git",
  6828. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6829. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  6830. },
  6831. "dist": {
  6832. "type": "zip",
  6833. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6834. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6835. "shasum": ""
  6836. },
  6837. "require": {
  6838. "php": "^5.6 || ^7.0"
  6839. },
  6840. "require-dev": {
  6841. "phpunit/phpunit": "^5.7 || ^6.0"
  6842. },
  6843. "type": "library",
  6844. "extra": {
  6845. "branch-alias": {
  6846. "dev-master": "1.0.x-dev"
  6847. }
  6848. },
  6849. "autoload": {
  6850. "classmap": [
  6851. "src/"
  6852. ]
  6853. },
  6854. "notification-url": "https://packagist.org/downloads/",
  6855. "license": [
  6856. "BSD-3-Clause"
  6857. ],
  6858. "authors": [
  6859. {
  6860. "name": "Sebastian Bergmann",
  6861. "email": "sebastian@phpunit.de"
  6862. }
  6863. ],
  6864. "description": "Looks up which function or method a line of code belongs to",
  6865. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6866. "time": "2017-03-04T06:30:41+00:00"
  6867. },
  6868. {
  6869. "name": "sebastian/comparator",
  6870. "version": "3.0.2",
  6871. "source": {
  6872. "type": "git",
  6873. "url": "https://github.com/sebastianbergmann/comparator.git",
  6874. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  6875. },
  6876. "dist": {
  6877. "type": "zip",
  6878. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  6879. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  6880. "shasum": ""
  6881. },
  6882. "require": {
  6883. "php": "^7.1",
  6884. "sebastian/diff": "^3.0",
  6885. "sebastian/exporter": "^3.1"
  6886. },
  6887. "require-dev": {
  6888. "phpunit/phpunit": "^7.1"
  6889. },
  6890. "type": "library",
  6891. "extra": {
  6892. "branch-alias": {
  6893. "dev-master": "3.0-dev"
  6894. }
  6895. },
  6896. "autoload": {
  6897. "classmap": [
  6898. "src/"
  6899. ]
  6900. },
  6901. "notification-url": "https://packagist.org/downloads/",
  6902. "license": [
  6903. "BSD-3-Clause"
  6904. ],
  6905. "authors": [
  6906. {
  6907. "name": "Jeff Welch",
  6908. "email": "whatthejeff@gmail.com"
  6909. },
  6910. {
  6911. "name": "Volker Dusch",
  6912. "email": "github@wallbash.com"
  6913. },
  6914. {
  6915. "name": "Bernhard Schussek",
  6916. "email": "bschussek@2bepublished.at"
  6917. },
  6918. {
  6919. "name": "Sebastian Bergmann",
  6920. "email": "sebastian@phpunit.de"
  6921. }
  6922. ],
  6923. "description": "Provides the functionality to compare PHP values for equality",
  6924. "homepage": "https://github.com/sebastianbergmann/comparator",
  6925. "keywords": [
  6926. "comparator",
  6927. "compare",
  6928. "equality"
  6929. ],
  6930. "time": "2018-07-12T15:12:46+00:00"
  6931. },
  6932. {
  6933. "name": "sebastian/diff",
  6934. "version": "3.0.2",
  6935. "source": {
  6936. "type": "git",
  6937. "url": "https://github.com/sebastianbergmann/diff.git",
  6938. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  6939. },
  6940. "dist": {
  6941. "type": "zip",
  6942. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6943. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6944. "shasum": ""
  6945. },
  6946. "require": {
  6947. "php": "^7.1"
  6948. },
  6949. "require-dev": {
  6950. "phpunit/phpunit": "^7.5 || ^8.0",
  6951. "symfony/process": "^2 || ^3.3 || ^4"
  6952. },
  6953. "type": "library",
  6954. "extra": {
  6955. "branch-alias": {
  6956. "dev-master": "3.0-dev"
  6957. }
  6958. },
  6959. "autoload": {
  6960. "classmap": [
  6961. "src/"
  6962. ]
  6963. },
  6964. "notification-url": "https://packagist.org/downloads/",
  6965. "license": [
  6966. "BSD-3-Clause"
  6967. ],
  6968. "authors": [
  6969. {
  6970. "name": "Kore Nordmann",
  6971. "email": "mail@kore-nordmann.de"
  6972. },
  6973. {
  6974. "name": "Sebastian Bergmann",
  6975. "email": "sebastian@phpunit.de"
  6976. }
  6977. ],
  6978. "description": "Diff implementation",
  6979. "homepage": "https://github.com/sebastianbergmann/diff",
  6980. "keywords": [
  6981. "diff",
  6982. "udiff",
  6983. "unidiff",
  6984. "unified diff"
  6985. ],
  6986. "time": "2019-02-04T06:01:07+00:00"
  6987. },
  6988. {
  6989. "name": "sebastian/environment",
  6990. "version": "4.1.0",
  6991. "source": {
  6992. "type": "git",
  6993. "url": "https://github.com/sebastianbergmann/environment.git",
  6994. "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656"
  6995. },
  6996. "dist": {
  6997. "type": "zip",
  6998. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6fda8ce1974b62b14935adc02a9ed38252eca656",
  6999. "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656",
  7000. "shasum": ""
  7001. },
  7002. "require": {
  7003. "php": "^7.1"
  7004. },
  7005. "require-dev": {
  7006. "phpunit/phpunit": "^7.5"
  7007. },
  7008. "suggest": {
  7009. "ext-posix": "*"
  7010. },
  7011. "type": "library",
  7012. "extra": {
  7013. "branch-alias": {
  7014. "dev-master": "4.1-dev"
  7015. }
  7016. },
  7017. "autoload": {
  7018. "classmap": [
  7019. "src/"
  7020. ]
  7021. },
  7022. "notification-url": "https://packagist.org/downloads/",
  7023. "license": [
  7024. "BSD-3-Clause"
  7025. ],
  7026. "authors": [
  7027. {
  7028. "name": "Sebastian Bergmann",
  7029. "email": "sebastian@phpunit.de"
  7030. }
  7031. ],
  7032. "description": "Provides functionality to handle HHVM/PHP environments",
  7033. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7034. "keywords": [
  7035. "Xdebug",
  7036. "environment",
  7037. "hhvm"
  7038. ],
  7039. "time": "2019-02-01T05:27:49+00:00"
  7040. },
  7041. {
  7042. "name": "sebastian/exporter",
  7043. "version": "3.1.0",
  7044. "source": {
  7045. "type": "git",
  7046. "url": "https://github.com/sebastianbergmann/exporter.git",
  7047. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  7048. },
  7049. "dist": {
  7050. "type": "zip",
  7051. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  7052. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  7053. "shasum": ""
  7054. },
  7055. "require": {
  7056. "php": "^7.0",
  7057. "sebastian/recursion-context": "^3.0"
  7058. },
  7059. "require-dev": {
  7060. "ext-mbstring": "*",
  7061. "phpunit/phpunit": "^6.0"
  7062. },
  7063. "type": "library",
  7064. "extra": {
  7065. "branch-alias": {
  7066. "dev-master": "3.1.x-dev"
  7067. }
  7068. },
  7069. "autoload": {
  7070. "classmap": [
  7071. "src/"
  7072. ]
  7073. },
  7074. "notification-url": "https://packagist.org/downloads/",
  7075. "license": [
  7076. "BSD-3-Clause"
  7077. ],
  7078. "authors": [
  7079. {
  7080. "name": "Jeff Welch",
  7081. "email": "whatthejeff@gmail.com"
  7082. },
  7083. {
  7084. "name": "Volker Dusch",
  7085. "email": "github@wallbash.com"
  7086. },
  7087. {
  7088. "name": "Bernhard Schussek",
  7089. "email": "bschussek@2bepublished.at"
  7090. },
  7091. {
  7092. "name": "Sebastian Bergmann",
  7093. "email": "sebastian@phpunit.de"
  7094. },
  7095. {
  7096. "name": "Adam Harvey",
  7097. "email": "aharvey@php.net"
  7098. }
  7099. ],
  7100. "description": "Provides the functionality to export PHP variables for visualization",
  7101. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7102. "keywords": [
  7103. "export",
  7104. "exporter"
  7105. ],
  7106. "time": "2017-04-03T13:19:02+00:00"
  7107. },
  7108. {
  7109. "name": "sebastian/global-state",
  7110. "version": "3.0.0",
  7111. "source": {
  7112. "type": "git",
  7113. "url": "https://github.com/sebastianbergmann/global-state.git",
  7114. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  7115. },
  7116. "dist": {
  7117. "type": "zip",
  7118. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  7119. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  7120. "shasum": ""
  7121. },
  7122. "require": {
  7123. "php": "^7.2",
  7124. "sebastian/object-reflector": "^1.1.1",
  7125. "sebastian/recursion-context": "^3.0"
  7126. },
  7127. "require-dev": {
  7128. "ext-dom": "*",
  7129. "phpunit/phpunit": "^8.0"
  7130. },
  7131. "suggest": {
  7132. "ext-uopz": "*"
  7133. },
  7134. "type": "library",
  7135. "extra": {
  7136. "branch-alias": {
  7137. "dev-master": "3.0-dev"
  7138. }
  7139. },
  7140. "autoload": {
  7141. "classmap": [
  7142. "src/"
  7143. ]
  7144. },
  7145. "notification-url": "https://packagist.org/downloads/",
  7146. "license": [
  7147. "BSD-3-Clause"
  7148. ],
  7149. "authors": [
  7150. {
  7151. "name": "Sebastian Bergmann",
  7152. "email": "sebastian@phpunit.de"
  7153. }
  7154. ],
  7155. "description": "Snapshotting of global state",
  7156. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7157. "keywords": [
  7158. "global state"
  7159. ],
  7160. "time": "2019-02-01T05:30:01+00:00"
  7161. },
  7162. {
  7163. "name": "sebastian/object-enumerator",
  7164. "version": "3.0.3",
  7165. "source": {
  7166. "type": "git",
  7167. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7168. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  7169. },
  7170. "dist": {
  7171. "type": "zip",
  7172. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7173. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7174. "shasum": ""
  7175. },
  7176. "require": {
  7177. "php": "^7.0",
  7178. "sebastian/object-reflector": "^1.1.1",
  7179. "sebastian/recursion-context": "^3.0"
  7180. },
  7181. "require-dev": {
  7182. "phpunit/phpunit": "^6.0"
  7183. },
  7184. "type": "library",
  7185. "extra": {
  7186. "branch-alias": {
  7187. "dev-master": "3.0.x-dev"
  7188. }
  7189. },
  7190. "autoload": {
  7191. "classmap": [
  7192. "src/"
  7193. ]
  7194. },
  7195. "notification-url": "https://packagist.org/downloads/",
  7196. "license": [
  7197. "BSD-3-Clause"
  7198. ],
  7199. "authors": [
  7200. {
  7201. "name": "Sebastian Bergmann",
  7202. "email": "sebastian@phpunit.de"
  7203. }
  7204. ],
  7205. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7206. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7207. "time": "2017-08-03T12:35:26+00:00"
  7208. },
  7209. {
  7210. "name": "sebastian/object-reflector",
  7211. "version": "1.1.1",
  7212. "source": {
  7213. "type": "git",
  7214. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7215. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  7216. },
  7217. "dist": {
  7218. "type": "zip",
  7219. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  7220. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  7221. "shasum": ""
  7222. },
  7223. "require": {
  7224. "php": "^7.0"
  7225. },
  7226. "require-dev": {
  7227. "phpunit/phpunit": "^6.0"
  7228. },
  7229. "type": "library",
  7230. "extra": {
  7231. "branch-alias": {
  7232. "dev-master": "1.1-dev"
  7233. }
  7234. },
  7235. "autoload": {
  7236. "classmap": [
  7237. "src/"
  7238. ]
  7239. },
  7240. "notification-url": "https://packagist.org/downloads/",
  7241. "license": [
  7242. "BSD-3-Clause"
  7243. ],
  7244. "authors": [
  7245. {
  7246. "name": "Sebastian Bergmann",
  7247. "email": "sebastian@phpunit.de"
  7248. }
  7249. ],
  7250. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7251. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7252. "time": "2017-03-29T09:07:27+00:00"
  7253. },
  7254. {
  7255. "name": "sebastian/recursion-context",
  7256. "version": "3.0.0",
  7257. "source": {
  7258. "type": "git",
  7259. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7260. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  7261. },
  7262. "dist": {
  7263. "type": "zip",
  7264. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7265. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7266. "shasum": ""
  7267. },
  7268. "require": {
  7269. "php": "^7.0"
  7270. },
  7271. "require-dev": {
  7272. "phpunit/phpunit": "^6.0"
  7273. },
  7274. "type": "library",
  7275. "extra": {
  7276. "branch-alias": {
  7277. "dev-master": "3.0.x-dev"
  7278. }
  7279. },
  7280. "autoload": {
  7281. "classmap": [
  7282. "src/"
  7283. ]
  7284. },
  7285. "notification-url": "https://packagist.org/downloads/",
  7286. "license": [
  7287. "BSD-3-Clause"
  7288. ],
  7289. "authors": [
  7290. {
  7291. "name": "Jeff Welch",
  7292. "email": "whatthejeff@gmail.com"
  7293. },
  7294. {
  7295. "name": "Sebastian Bergmann",
  7296. "email": "sebastian@phpunit.de"
  7297. },
  7298. {
  7299. "name": "Adam Harvey",
  7300. "email": "aharvey@php.net"
  7301. }
  7302. ],
  7303. "description": "Provides functionality to recursively process PHP variables",
  7304. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7305. "time": "2017-03-03T06:23:57+00:00"
  7306. },
  7307. {
  7308. "name": "sebastian/resource-operations",
  7309. "version": "2.0.1",
  7310. "source": {
  7311. "type": "git",
  7312. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7313. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  7314. },
  7315. "dist": {
  7316. "type": "zip",
  7317. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  7318. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  7319. "shasum": ""
  7320. },
  7321. "require": {
  7322. "php": "^7.1"
  7323. },
  7324. "type": "library",
  7325. "extra": {
  7326. "branch-alias": {
  7327. "dev-master": "2.0-dev"
  7328. }
  7329. },
  7330. "autoload": {
  7331. "classmap": [
  7332. "src/"
  7333. ]
  7334. },
  7335. "notification-url": "https://packagist.org/downloads/",
  7336. "license": [
  7337. "BSD-3-Clause"
  7338. ],
  7339. "authors": [
  7340. {
  7341. "name": "Sebastian Bergmann",
  7342. "email": "sebastian@phpunit.de"
  7343. }
  7344. ],
  7345. "description": "Provides a list of PHP built-in functions that operate on resources",
  7346. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7347. "time": "2018-10-04T04:07:39+00:00"
  7348. },
  7349. {
  7350. "name": "sebastian/version",
  7351. "version": "2.0.1",
  7352. "source": {
  7353. "type": "git",
  7354. "url": "https://github.com/sebastianbergmann/version.git",
  7355. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  7356. },
  7357. "dist": {
  7358. "type": "zip",
  7359. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  7360. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  7361. "shasum": ""
  7362. },
  7363. "require": {
  7364. "php": ">=5.6"
  7365. },
  7366. "type": "library",
  7367. "extra": {
  7368. "branch-alias": {
  7369. "dev-master": "2.0.x-dev"
  7370. }
  7371. },
  7372. "autoload": {
  7373. "classmap": [
  7374. "src/"
  7375. ]
  7376. },
  7377. "notification-url": "https://packagist.org/downloads/",
  7378. "license": [
  7379. "BSD-3-Clause"
  7380. ],
  7381. "authors": [
  7382. {
  7383. "name": "Sebastian Bergmann",
  7384. "email": "sebastian@phpunit.de",
  7385. "role": "lead"
  7386. }
  7387. ],
  7388. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7389. "homepage": "https://github.com/sebastianbergmann/version",
  7390. "time": "2016-10-03T07:35:21+00:00"
  7391. },
  7392. {
  7393. "name": "symfony/phpunit-bridge",
  7394. "version": "v4.2.8",
  7395. "source": {
  7396. "type": "git",
  7397. "url": "https://github.com/symfony/phpunit-bridge.git",
  7398. "reference": "31f2e3c10bc9bd955ca1ae3e4da2bb489205714a"
  7399. },
  7400. "dist": {
  7401. "type": "zip",
  7402. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/31f2e3c10bc9bd955ca1ae3e4da2bb489205714a",
  7403. "reference": "31f2e3c10bc9bd955ca1ae3e4da2bb489205714a",
  7404. "shasum": ""
  7405. },
  7406. "require": {
  7407. "php": ">=5.3.3"
  7408. },
  7409. "conflict": {
  7410. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  7411. },
  7412. "suggest": {
  7413. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  7414. },
  7415. "bin": [
  7416. "bin/simple-phpunit"
  7417. ],
  7418. "type": "symfony-bridge",
  7419. "extra": {
  7420. "branch-alias": {
  7421. "dev-master": "4.2-dev"
  7422. },
  7423. "thanks": {
  7424. "name": "phpunit/phpunit",
  7425. "url": "https://github.com/sebastianbergmann/phpunit"
  7426. }
  7427. },
  7428. "autoload": {
  7429. "files": [
  7430. "bootstrap.php"
  7431. ],
  7432. "psr-4": {
  7433. "Symfony\\Bridge\\PhpUnit\\": ""
  7434. },
  7435. "exclude-from-classmap": [
  7436. "/Tests/"
  7437. ]
  7438. },
  7439. "notification-url": "https://packagist.org/downloads/",
  7440. "license": [
  7441. "MIT"
  7442. ],
  7443. "authors": [
  7444. {
  7445. "name": "Nicolas Grekas",
  7446. "email": "p@tchwork.com"
  7447. },
  7448. {
  7449. "name": "Symfony Community",
  7450. "homepage": "https://symfony.com/contributors"
  7451. }
  7452. ],
  7453. "description": "Symfony PHPUnit Bridge",
  7454. "homepage": "https://symfony.com",
  7455. "time": "2019-04-23T14:37:24+00:00"
  7456. },
  7457. {
  7458. "name": "theseer/tokenizer",
  7459. "version": "1.1.2",
  7460. "source": {
  7461. "type": "git",
  7462. "url": "https://github.com/theseer/tokenizer.git",
  7463. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8"
  7464. },
  7465. "dist": {
  7466. "type": "zip",
  7467. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/1c42705be2b6c1de5904f8afacef5895cab44bf8",
  7468. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8",
  7469. "shasum": ""
  7470. },
  7471. "require": {
  7472. "ext-dom": "*",
  7473. "ext-tokenizer": "*",
  7474. "ext-xmlwriter": "*",
  7475. "php": "^7.0"
  7476. },
  7477. "type": "library",
  7478. "autoload": {
  7479. "classmap": [
  7480. "src/"
  7481. ]
  7482. },
  7483. "notification-url": "https://packagist.org/downloads/",
  7484. "license": [
  7485. "BSD-3-Clause"
  7486. ],
  7487. "authors": [
  7488. {
  7489. "name": "Arne Blankerts",
  7490. "email": "arne@blankerts.de",
  7491. "role": "Developer"
  7492. }
  7493. ],
  7494. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7495. "time": "2019-04-04T09:56:43+00:00"
  7496. },
  7497. {
  7498. "name": "webmozart/assert",
  7499. "version": "1.4.0",
  7500. "source": {
  7501. "type": "git",
  7502. "url": "https://github.com/webmozart/assert.git",
  7503. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  7504. },
  7505. "dist": {
  7506. "type": "zip",
  7507. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  7508. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  7509. "shasum": ""
  7510. },
  7511. "require": {
  7512. "php": "^5.3.3 || ^7.0",
  7513. "symfony/polyfill-ctype": "^1.8"
  7514. },
  7515. "require-dev": {
  7516. "phpunit/phpunit": "^4.6",
  7517. "sebastian/version": "^1.0.1"
  7518. },
  7519. "type": "library",
  7520. "extra": {
  7521. "branch-alias": {
  7522. "dev-master": "1.3-dev"
  7523. }
  7524. },
  7525. "autoload": {
  7526. "psr-4": {
  7527. "Webmozart\\Assert\\": "src/"
  7528. }
  7529. },
  7530. "notification-url": "https://packagist.org/downloads/",
  7531. "license": [
  7532. "MIT"
  7533. ],
  7534. "authors": [
  7535. {
  7536. "name": "Bernhard Schussek",
  7537. "email": "bschussek@gmail.com"
  7538. }
  7539. ],
  7540. "description": "Assertions to validate method input/output with nice error messages.",
  7541. "keywords": [
  7542. "assert",
  7543. "check",
  7544. "validate"
  7545. ],
  7546. "time": "2018-12-25T11:19:39+00:00"
  7547. }
  7548. ],
  7549. "aliases": [],
  7550. "minimum-stability": "stable",
  7551. "stability-flags": {
  7552. "composer/composer": 20
  7553. },
  7554. "prefer-stable": false,
  7555. "prefer-lowest": false,
  7556. "platform": {
  7557. "php": ">=7.3"
  7558. },
  7559. "platform-dev": [],
  7560. "platform-overrides": {
  7561. "php": "7.3.2"
  7562. }
  7563. }