composer.lock 265 KB

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