composer.lock 257 KB

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