composer.lock 310 KB

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