composer.lock 243 KB

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