composer.lock 265 KB

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