composer.lock 257 KB

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