composer.lock 235 KB

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