composer.lock 245 KB

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