composer.lock 229 KB

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