composer.lock 236 KB

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