composer.lock 278 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "aaae105189a925093efd1f2e7c0379ff",
  8. "packages": [
  9. {
  10. "name": "composer/ca-bundle",
  11. "version": "1.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/ca-bundle.git",
  15. "reference": "d2c0a83b7533d6912e8d516756ebd34f893e9169"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/d2c0a83b7533d6912e8d516756ebd34f893e9169",
  20. "reference": "d2c0a83b7533d6912e8d516756ebd34f893e9169",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-openssl": "*",
  25. "ext-pcre": "*",
  26. "php": "^5.3.2 || ^7.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  30. "psr/log": "^1.0",
  31. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  32. },
  33. "type": "library",
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "1.x-dev"
  37. }
  38. },
  39. "autoload": {
  40. "psr-4": {
  41. "Composer\\CaBundle\\": "src"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "authors": [
  49. {
  50. "name": "Jordi Boggiano",
  51. "email": "j.boggiano@seld.be",
  52. "homepage": "http://seld.be"
  53. }
  54. ],
  55. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  56. "keywords": [
  57. "cabundle",
  58. "cacert",
  59. "certificate",
  60. "ssl",
  61. "tls"
  62. ],
  63. "time": "2018-03-29T19:57:20+00:00"
  64. },
  65. {
  66. "name": "doctrine/annotations",
  67. "version": "v1.6.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/doctrine/annotations.git",
  71. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  76. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "doctrine/lexer": "1.*",
  81. "php": "^7.1"
  82. },
  83. "require-dev": {
  84. "doctrine/cache": "1.*",
  85. "phpunit/phpunit": "^6.4"
  86. },
  87. "type": "library",
  88. "extra": {
  89. "branch-alias": {
  90. "dev-master": "1.6.x-dev"
  91. }
  92. },
  93. "autoload": {
  94. "psr-4": {
  95. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  96. }
  97. },
  98. "notification-url": "https://packagist.org/downloads/",
  99. "license": [
  100. "MIT"
  101. ],
  102. "authors": [
  103. {
  104. "name": "Roman Borschel",
  105. "email": "roman@code-factory.org"
  106. },
  107. {
  108. "name": "Benjamin Eberlei",
  109. "email": "kontakt@beberlei.de"
  110. },
  111. {
  112. "name": "Guilherme Blanco",
  113. "email": "guilhermeblanco@gmail.com"
  114. },
  115. {
  116. "name": "Jonathan Wage",
  117. "email": "jonwage@gmail.com"
  118. },
  119. {
  120. "name": "Johannes Schmitt",
  121. "email": "schmittjoh@gmail.com"
  122. }
  123. ],
  124. "description": "Docblock Annotations Parser",
  125. "homepage": "http://www.doctrine-project.org",
  126. "keywords": [
  127. "annotations",
  128. "docblock",
  129. "parser"
  130. ],
  131. "time": "2017-12-06T07:11:42+00:00"
  132. },
  133. {
  134. "name": "doctrine/cache",
  135. "version": "v1.7.1",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/doctrine/cache.git",
  139. "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/doctrine/cache/zipball/b3217d58609e9c8e661cd41357a54d926c4a2a1a",
  144. "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a",
  145. "shasum": ""
  146. },
  147. "require": {
  148. "php": "~7.1"
  149. },
  150. "conflict": {
  151. "doctrine/common": ">2.2,<2.4"
  152. },
  153. "require-dev": {
  154. "alcaeus/mongo-php-adapter": "^1.1",
  155. "mongodb/mongodb": "^1.1",
  156. "phpunit/phpunit": "^5.7",
  157. "predis/predis": "~1.0"
  158. },
  159. "suggest": {
  160. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  161. },
  162. "type": "library",
  163. "extra": {
  164. "branch-alias": {
  165. "dev-master": "1.7.x-dev"
  166. }
  167. },
  168. "autoload": {
  169. "psr-4": {
  170. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  171. }
  172. },
  173. "notification-url": "https://packagist.org/downloads/",
  174. "license": [
  175. "MIT"
  176. ],
  177. "authors": [
  178. {
  179. "name": "Roman Borschel",
  180. "email": "roman@code-factory.org"
  181. },
  182. {
  183. "name": "Benjamin Eberlei",
  184. "email": "kontakt@beberlei.de"
  185. },
  186. {
  187. "name": "Guilherme Blanco",
  188. "email": "guilhermeblanco@gmail.com"
  189. },
  190. {
  191. "name": "Jonathan Wage",
  192. "email": "jonwage@gmail.com"
  193. },
  194. {
  195. "name": "Johannes Schmitt",
  196. "email": "schmittjoh@gmail.com"
  197. }
  198. ],
  199. "description": "Caching library offering an object-oriented API for many cache backends",
  200. "homepage": "http://www.doctrine-project.org",
  201. "keywords": [
  202. "cache",
  203. "caching"
  204. ],
  205. "time": "2017-08-25T07:02:50+00:00"
  206. },
  207. {
  208. "name": "doctrine/collections",
  209. "version": "v1.5.0",
  210. "source": {
  211. "type": "git",
  212. "url": "https://github.com/doctrine/collections.git",
  213. "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf"
  214. },
  215. "dist": {
  216. "type": "zip",
  217. "url": "https://api.github.com/repos/doctrine/collections/zipball/a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
  218. "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
  219. "shasum": ""
  220. },
  221. "require": {
  222. "php": "^7.1"
  223. },
  224. "require-dev": {
  225. "doctrine/coding-standard": "~0.1@dev",
  226. "phpunit/phpunit": "^5.7"
  227. },
  228. "type": "library",
  229. "extra": {
  230. "branch-alias": {
  231. "dev-master": "1.3.x-dev"
  232. }
  233. },
  234. "autoload": {
  235. "psr-0": {
  236. "Doctrine\\Common\\Collections\\": "lib/"
  237. }
  238. },
  239. "notification-url": "https://packagist.org/downloads/",
  240. "license": [
  241. "MIT"
  242. ],
  243. "authors": [
  244. {
  245. "name": "Roman Borschel",
  246. "email": "roman@code-factory.org"
  247. },
  248. {
  249. "name": "Benjamin Eberlei",
  250. "email": "kontakt@beberlei.de"
  251. },
  252. {
  253. "name": "Guilherme Blanco",
  254. "email": "guilhermeblanco@gmail.com"
  255. },
  256. {
  257. "name": "Jonathan Wage",
  258. "email": "jonwage@gmail.com"
  259. },
  260. {
  261. "name": "Johannes Schmitt",
  262. "email": "schmittjoh@gmail.com"
  263. }
  264. ],
  265. "description": "Collections Abstraction library",
  266. "homepage": "http://www.doctrine-project.org",
  267. "keywords": [
  268. "array",
  269. "collections",
  270. "iterator"
  271. ],
  272. "time": "2017-07-22T10:37:32+00:00"
  273. },
  274. {
  275. "name": "doctrine/common",
  276. "version": "v2.8.1",
  277. "source": {
  278. "type": "git",
  279. "url": "https://github.com/doctrine/common.git",
  280. "reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66"
  281. },
  282. "dist": {
  283. "type": "zip",
  284. "url": "https://api.github.com/repos/doctrine/common/zipball/f68c297ce6455e8fd794aa8ffaf9fa458f6ade66",
  285. "reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66",
  286. "shasum": ""
  287. },
  288. "require": {
  289. "doctrine/annotations": "1.*",
  290. "doctrine/cache": "1.*",
  291. "doctrine/collections": "1.*",
  292. "doctrine/inflector": "1.*",
  293. "doctrine/lexer": "1.*",
  294. "php": "~7.1"
  295. },
  296. "require-dev": {
  297. "phpunit/phpunit": "^5.7"
  298. },
  299. "type": "library",
  300. "extra": {
  301. "branch-alias": {
  302. "dev-master": "2.8.x-dev"
  303. }
  304. },
  305. "autoload": {
  306. "psr-4": {
  307. "Doctrine\\Common\\": "lib/Doctrine/Common"
  308. }
  309. },
  310. "notification-url": "https://packagist.org/downloads/",
  311. "license": [
  312. "MIT"
  313. ],
  314. "authors": [
  315. {
  316. "name": "Roman Borschel",
  317. "email": "roman@code-factory.org"
  318. },
  319. {
  320. "name": "Benjamin Eberlei",
  321. "email": "kontakt@beberlei.de"
  322. },
  323. {
  324. "name": "Guilherme Blanco",
  325. "email": "guilhermeblanco@gmail.com"
  326. },
  327. {
  328. "name": "Jonathan Wage",
  329. "email": "jonwage@gmail.com"
  330. },
  331. {
  332. "name": "Johannes Schmitt",
  333. "email": "schmittjoh@gmail.com"
  334. }
  335. ],
  336. "description": "Common Library for Doctrine projects",
  337. "homepage": "http://www.doctrine-project.org",
  338. "keywords": [
  339. "annotations",
  340. "collections",
  341. "eventmanager",
  342. "persistence",
  343. "spl"
  344. ],
  345. "time": "2017-08-31T08:43:38+00:00"
  346. },
  347. {
  348. "name": "doctrine/dbal",
  349. "version": "v2.7.1",
  350. "source": {
  351. "type": "git",
  352. "url": "https://github.com/doctrine/dbal.git",
  353. "reference": "11037b4352c008373561dc6fc836834eed80c3b5"
  354. },
  355. "dist": {
  356. "type": "zip",
  357. "url": "https://api.github.com/repos/doctrine/dbal/zipball/11037b4352c008373561dc6fc836834eed80c3b5",
  358. "reference": "11037b4352c008373561dc6fc836834eed80c3b5",
  359. "shasum": ""
  360. },
  361. "require": {
  362. "doctrine/common": "^2.7.1",
  363. "ext-pdo": "*",
  364. "php": "^7.1"
  365. },
  366. "require-dev": {
  367. "doctrine/coding-standard": "^4.0",
  368. "phpunit/phpunit": "^7.0",
  369. "phpunit/phpunit-mock-objects": "!=3.2.4,!=3.2.5",
  370. "symfony/console": "^2.0.5||^3.0",
  371. "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
  372. },
  373. "suggest": {
  374. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  375. },
  376. "bin": [
  377. "bin/doctrine-dbal"
  378. ],
  379. "type": "library",
  380. "extra": {
  381. "branch-alias": {
  382. "dev-master": "2.7.x-dev"
  383. }
  384. },
  385. "autoload": {
  386. "psr-0": {
  387. "Doctrine\\DBAL\\": "lib/"
  388. }
  389. },
  390. "notification-url": "https://packagist.org/downloads/",
  391. "license": [
  392. "MIT"
  393. ],
  394. "authors": [
  395. {
  396. "name": "Roman Borschel",
  397. "email": "roman@code-factory.org"
  398. },
  399. {
  400. "name": "Benjamin Eberlei",
  401. "email": "kontakt@beberlei.de"
  402. },
  403. {
  404. "name": "Guilherme Blanco",
  405. "email": "guilhermeblanco@gmail.com"
  406. },
  407. {
  408. "name": "Jonathan Wage",
  409. "email": "jonwage@gmail.com"
  410. }
  411. ],
  412. "description": "Database Abstraction Layer",
  413. "homepage": "http://www.doctrine-project.org",
  414. "keywords": [
  415. "database",
  416. "dbal",
  417. "persistence",
  418. "queryobject"
  419. ],
  420. "time": "2018-04-07T18:44:18+00:00"
  421. },
  422. {
  423. "name": "doctrine/doctrine-bundle",
  424. "version": "1.9.1",
  425. "source": {
  426. "type": "git",
  427. "url": "https://github.com/doctrine/DoctrineBundle.git",
  428. "reference": "703fad32e4c8cbe609caf45a71a1d4266c830f0f"
  429. },
  430. "dist": {
  431. "type": "zip",
  432. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/703fad32e4c8cbe609caf45a71a1d4266c830f0f",
  433. "reference": "703fad32e4c8cbe609caf45a71a1d4266c830f0f",
  434. "shasum": ""
  435. },
  436. "require": {
  437. "doctrine/dbal": "^2.5.12",
  438. "doctrine/doctrine-cache-bundle": "~1.2",
  439. "jdorn/sql-formatter": "^1.2.16",
  440. "php": "^5.5.9|^7.0",
  441. "symfony/console": "~2.7|~3.0|~4.0",
  442. "symfony/dependency-injection": "~2.7|~3.0|~4.0",
  443. "symfony/doctrine-bridge": "~2.7|~3.0|~4.0",
  444. "symfony/framework-bundle": "^2.7.22|~3.0|~4.0"
  445. },
  446. "conflict": {
  447. "symfony/http-foundation": "<2.6"
  448. },
  449. "require-dev": {
  450. "doctrine/orm": "~2.4",
  451. "phpunit/phpunit": "^4.8.36|^5.7|^6.4",
  452. "satooshi/php-coveralls": "^1.0",
  453. "symfony/phpunit-bridge": "~2.7|~3.0|~4.0",
  454. "symfony/property-info": "~2.8|~3.0|~4.0",
  455. "symfony/validator": "~2.7|~3.0|~4.0",
  456. "symfony/web-profiler-bundle": "~2.7|~3.0|~4.0",
  457. "symfony/yaml": "~2.7|~3.0|~4.0",
  458. "twig/twig": "~1.26|~2.0"
  459. },
  460. "suggest": {
  461. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  462. "symfony/web-profiler-bundle": "To use the data collector."
  463. },
  464. "type": "symfony-bundle",
  465. "extra": {
  466. "branch-alias": {
  467. "dev-master": "1.8.x-dev"
  468. }
  469. },
  470. "autoload": {
  471. "psr-4": {
  472. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  473. }
  474. },
  475. "notification-url": "https://packagist.org/downloads/",
  476. "license": [
  477. "MIT"
  478. ],
  479. "authors": [
  480. {
  481. "name": "Symfony Community",
  482. "homepage": "http://symfony.com/contributors"
  483. },
  484. {
  485. "name": "Benjamin Eberlei",
  486. "email": "kontakt@beberlei.de"
  487. },
  488. {
  489. "name": "Doctrine Project",
  490. "homepage": "http://www.doctrine-project.org/"
  491. },
  492. {
  493. "name": "Fabien Potencier",
  494. "email": "fabien@symfony.com"
  495. }
  496. ],
  497. "description": "Symfony DoctrineBundle",
  498. "homepage": "http://www.doctrine-project.org",
  499. "keywords": [
  500. "database",
  501. "dbal",
  502. "orm",
  503. "persistence"
  504. ],
  505. "time": "2018-04-19T14:07:39+00:00"
  506. },
  507. {
  508. "name": "doctrine/doctrine-cache-bundle",
  509. "version": "1.3.3",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/doctrine/DoctrineCacheBundle.git",
  513. "reference": "4c8e363f96427924e7e519c5b5119b4f54512697"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/4c8e363f96427924e7e519c5b5119b4f54512697",
  518. "reference": "4c8e363f96427924e7e519c5b5119b4f54512697",
  519. "shasum": ""
  520. },
  521. "require": {
  522. "doctrine/cache": "^1.4.2",
  523. "doctrine/inflector": "~1.0",
  524. "php": ">=5.3.2",
  525. "symfony/doctrine-bridge": "~2.7|~3.3|~4.0"
  526. },
  527. "require-dev": {
  528. "instaclick/coding-standard": "~1.1",
  529. "instaclick/object-calisthenics-sniffs": "dev-master",
  530. "instaclick/symfony2-coding-standard": "dev-remaster",
  531. "phpunit/phpunit": "~4|~5",
  532. "predis/predis": "~0.8",
  533. "satooshi/php-coveralls": "^1.0",
  534. "squizlabs/php_codesniffer": "~1.5",
  535. "symfony/console": "~2.7|~3.3|~4.0",
  536. "symfony/finder": "~2.7|~3.3|~4.0",
  537. "symfony/framework-bundle": "~2.7|~3.3|~4.0",
  538. "symfony/phpunit-bridge": "~2.7|~3.3|~4.0",
  539. "symfony/security-acl": "~2.7|~3.3",
  540. "symfony/validator": "~2.7|~3.3|~4.0",
  541. "symfony/yaml": "~2.7|~3.3|~4.0"
  542. },
  543. "suggest": {
  544. "symfony/security-acl": "For using this bundle to cache ACLs"
  545. },
  546. "type": "symfony-bundle",
  547. "extra": {
  548. "branch-alias": {
  549. "dev-master": "1.3.x-dev"
  550. }
  551. },
  552. "autoload": {
  553. "psr-4": {
  554. "Doctrine\\Bundle\\DoctrineCacheBundle\\": ""
  555. }
  556. },
  557. "notification-url": "https://packagist.org/downloads/",
  558. "license": [
  559. "MIT"
  560. ],
  561. "authors": [
  562. {
  563. "name": "Symfony Community",
  564. "homepage": "http://symfony.com/contributors"
  565. },
  566. {
  567. "name": "Benjamin Eberlei",
  568. "email": "kontakt@beberlei.de"
  569. },
  570. {
  571. "name": "Fabio B. Silva",
  572. "email": "fabio.bat.silva@gmail.com"
  573. },
  574. {
  575. "name": "Guilherme Blanco",
  576. "email": "guilhermeblanco@hotmail.com"
  577. },
  578. {
  579. "name": "Doctrine Project",
  580. "homepage": "http://www.doctrine-project.org/"
  581. },
  582. {
  583. "name": "Fabien Potencier",
  584. "email": "fabien@symfony.com"
  585. }
  586. ],
  587. "description": "Symfony Bundle for Doctrine Cache",
  588. "homepage": "http://www.doctrine-project.org",
  589. "keywords": [
  590. "cache",
  591. "caching"
  592. ],
  593. "time": "2018-03-27T09:22:12+00:00"
  594. },
  595. {
  596. "name": "doctrine/doctrine-migrations-bundle",
  597. "version": "v1.3.1",
  598. "source": {
  599. "type": "git",
  600. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  601. "reference": "a9e506369f931351a2a6dd2aef588a822802b1b7"
  602. },
  603. "dist": {
  604. "type": "zip",
  605. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/a9e506369f931351a2a6dd2aef588a822802b1b7",
  606. "reference": "a9e506369f931351a2a6dd2aef588a822802b1b7",
  607. "shasum": ""
  608. },
  609. "require": {
  610. "doctrine/doctrine-bundle": "~1.0",
  611. "doctrine/migrations": "^1.1",
  612. "php": ">=5.4.0",
  613. "symfony/framework-bundle": "~2.7|~3.3|~4.0"
  614. },
  615. "require-dev": {
  616. "phpunit/phpunit": "^4.8.36"
  617. },
  618. "type": "symfony-bundle",
  619. "extra": {
  620. "branch-alias": {
  621. "dev-master": "1.3-dev"
  622. }
  623. },
  624. "autoload": {
  625. "psr-4": {
  626. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  627. }
  628. },
  629. "notification-url": "https://packagist.org/downloads/",
  630. "license": [
  631. "MIT"
  632. ],
  633. "authors": [
  634. {
  635. "name": "Symfony Community",
  636. "homepage": "http://symfony.com/contributors"
  637. },
  638. {
  639. "name": "Doctrine Project",
  640. "homepage": "http://www.doctrine-project.org"
  641. },
  642. {
  643. "name": "Fabien Potencier",
  644. "email": "fabien@symfony.com"
  645. }
  646. ],
  647. "description": "Symfony DoctrineMigrationsBundle",
  648. "homepage": "http://www.doctrine-project.org",
  649. "keywords": [
  650. "dbal",
  651. "migrations",
  652. "schema"
  653. ],
  654. "time": "2017-11-01T09:13:26+00:00"
  655. },
  656. {
  657. "name": "doctrine/inflector",
  658. "version": "v1.3.0",
  659. "source": {
  660. "type": "git",
  661. "url": "https://github.com/doctrine/inflector.git",
  662. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  663. },
  664. "dist": {
  665. "type": "zip",
  666. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  667. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  668. "shasum": ""
  669. },
  670. "require": {
  671. "php": "^7.1"
  672. },
  673. "require-dev": {
  674. "phpunit/phpunit": "^6.2"
  675. },
  676. "type": "library",
  677. "extra": {
  678. "branch-alias": {
  679. "dev-master": "1.3.x-dev"
  680. }
  681. },
  682. "autoload": {
  683. "psr-4": {
  684. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  685. }
  686. },
  687. "notification-url": "https://packagist.org/downloads/",
  688. "license": [
  689. "MIT"
  690. ],
  691. "authors": [
  692. {
  693. "name": "Roman Borschel",
  694. "email": "roman@code-factory.org"
  695. },
  696. {
  697. "name": "Benjamin Eberlei",
  698. "email": "kontakt@beberlei.de"
  699. },
  700. {
  701. "name": "Guilherme Blanco",
  702. "email": "guilhermeblanco@gmail.com"
  703. },
  704. {
  705. "name": "Jonathan Wage",
  706. "email": "jonwage@gmail.com"
  707. },
  708. {
  709. "name": "Johannes Schmitt",
  710. "email": "schmittjoh@gmail.com"
  711. }
  712. ],
  713. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  714. "homepage": "http://www.doctrine-project.org",
  715. "keywords": [
  716. "inflection",
  717. "pluralize",
  718. "singularize",
  719. "string"
  720. ],
  721. "time": "2018-01-09T20:05:19+00:00"
  722. },
  723. {
  724. "name": "doctrine/instantiator",
  725. "version": "1.1.0",
  726. "source": {
  727. "type": "git",
  728. "url": "https://github.com/doctrine/instantiator.git",
  729. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  730. },
  731. "dist": {
  732. "type": "zip",
  733. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  734. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  735. "shasum": ""
  736. },
  737. "require": {
  738. "php": "^7.1"
  739. },
  740. "require-dev": {
  741. "athletic/athletic": "~0.1.8",
  742. "ext-pdo": "*",
  743. "ext-phar": "*",
  744. "phpunit/phpunit": "^6.2.3",
  745. "squizlabs/php_codesniffer": "^3.0.2"
  746. },
  747. "type": "library",
  748. "extra": {
  749. "branch-alias": {
  750. "dev-master": "1.2.x-dev"
  751. }
  752. },
  753. "autoload": {
  754. "psr-4": {
  755. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  756. }
  757. },
  758. "notification-url": "https://packagist.org/downloads/",
  759. "license": [
  760. "MIT"
  761. ],
  762. "authors": [
  763. {
  764. "name": "Marco Pivetta",
  765. "email": "ocramius@gmail.com",
  766. "homepage": "http://ocramius.github.com/"
  767. }
  768. ],
  769. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  770. "homepage": "https://github.com/doctrine/instantiator",
  771. "keywords": [
  772. "constructor",
  773. "instantiate"
  774. ],
  775. "time": "2017-07-22T11:58:36+00:00"
  776. },
  777. {
  778. "name": "doctrine/lexer",
  779. "version": "v1.0.1",
  780. "source": {
  781. "type": "git",
  782. "url": "https://github.com/doctrine/lexer.git",
  783. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  784. },
  785. "dist": {
  786. "type": "zip",
  787. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  788. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  789. "shasum": ""
  790. },
  791. "require": {
  792. "php": ">=5.3.2"
  793. },
  794. "type": "library",
  795. "extra": {
  796. "branch-alias": {
  797. "dev-master": "1.0.x-dev"
  798. }
  799. },
  800. "autoload": {
  801. "psr-0": {
  802. "Doctrine\\Common\\Lexer\\": "lib/"
  803. }
  804. },
  805. "notification-url": "https://packagist.org/downloads/",
  806. "license": [
  807. "MIT"
  808. ],
  809. "authors": [
  810. {
  811. "name": "Roman Borschel",
  812. "email": "roman@code-factory.org"
  813. },
  814. {
  815. "name": "Guilherme Blanco",
  816. "email": "guilhermeblanco@gmail.com"
  817. },
  818. {
  819. "name": "Johannes Schmitt",
  820. "email": "schmittjoh@gmail.com"
  821. }
  822. ],
  823. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  824. "homepage": "http://www.doctrine-project.org",
  825. "keywords": [
  826. "lexer",
  827. "parser"
  828. ],
  829. "time": "2014-09-09T13:34:57+00:00"
  830. },
  831. {
  832. "name": "doctrine/migrations",
  833. "version": "v1.8.1",
  834. "source": {
  835. "type": "git",
  836. "url": "https://github.com/doctrine/migrations.git",
  837. "reference": "215438c0eef3e5f9b7da7d09c6b90756071b43e6"
  838. },
  839. "dist": {
  840. "type": "zip",
  841. "url": "https://api.github.com/repos/doctrine/migrations/zipball/215438c0eef3e5f9b7da7d09c6b90756071b43e6",
  842. "reference": "215438c0eef3e5f9b7da7d09c6b90756071b43e6",
  843. "shasum": ""
  844. },
  845. "require": {
  846. "doctrine/dbal": "~2.6",
  847. "ocramius/proxy-manager": "^1.0|^2.0",
  848. "php": "^7.1",
  849. "symfony/console": "~3.3|^4.0"
  850. },
  851. "require-dev": {
  852. "doctrine/coding-standard": "^1.0",
  853. "doctrine/orm": "~2.5",
  854. "jdorn/sql-formatter": "~1.1",
  855. "mikey179/vfsstream": "^1.6",
  856. "phpunit/phpunit": "~7.0",
  857. "squizlabs/php_codesniffer": "^3.0",
  858. "symfony/yaml": "~3.3|^4.0"
  859. },
  860. "suggest": {
  861. "jdorn/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  862. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  863. },
  864. "bin": [
  865. "bin/doctrine-migrations"
  866. ],
  867. "type": "library",
  868. "extra": {
  869. "branch-alias": {
  870. "dev-master": "v1.8.x-dev"
  871. }
  872. },
  873. "autoload": {
  874. "psr-4": {
  875. "Doctrine\\DBAL\\Migrations\\": "lib/Doctrine/DBAL/Migrations",
  876. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  877. }
  878. },
  879. "notification-url": "https://packagist.org/downloads/",
  880. "license": [
  881. "MIT"
  882. ],
  883. "authors": [
  884. {
  885. "name": "Benjamin Eberlei",
  886. "email": "kontakt@beberlei.de"
  887. },
  888. {
  889. "name": "Jonathan Wage",
  890. "email": "jonwage@gmail.com"
  891. },
  892. {
  893. "name": "Michael Simonson",
  894. "email": "contact@mikesimonson.com"
  895. }
  896. ],
  897. "description": "Database Schema migrations using Doctrine DBAL",
  898. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  899. "keywords": [
  900. "database",
  901. "migrations"
  902. ],
  903. "time": "2018-06-06T21:00:30+00:00"
  904. },
  905. {
  906. "name": "doctrine/orm",
  907. "version": "v2.6.1",
  908. "source": {
  909. "type": "git",
  910. "url": "https://github.com/doctrine/doctrine2.git",
  911. "reference": "87ee409783a4a322b5597ebaae558661404055a7"
  912. },
  913. "dist": {
  914. "type": "zip",
  915. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/87ee409783a4a322b5597ebaae558661404055a7",
  916. "reference": "87ee409783a4a322b5597ebaae558661404055a7",
  917. "shasum": ""
  918. },
  919. "require": {
  920. "doctrine/annotations": "~1.5",
  921. "doctrine/cache": "~1.6",
  922. "doctrine/collections": "^1.4",
  923. "doctrine/common": "^2.7.1",
  924. "doctrine/dbal": "^2.6",
  925. "doctrine/instantiator": "~1.1",
  926. "ext-pdo": "*",
  927. "php": "^7.1",
  928. "symfony/console": "~3.0|~4.0"
  929. },
  930. "require-dev": {
  931. "doctrine/coding-standard": "^1.0",
  932. "phpunit/phpunit": "^6.5",
  933. "squizlabs/php_codesniffer": "^3.2",
  934. "symfony/yaml": "~3.4|~4.0"
  935. },
  936. "suggest": {
  937. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  938. },
  939. "bin": [
  940. "bin/doctrine"
  941. ],
  942. "type": "library",
  943. "extra": {
  944. "branch-alias": {
  945. "dev-master": "2.6.x-dev"
  946. }
  947. },
  948. "autoload": {
  949. "psr-4": {
  950. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  951. }
  952. },
  953. "notification-url": "https://packagist.org/downloads/",
  954. "license": [
  955. "MIT"
  956. ],
  957. "authors": [
  958. {
  959. "name": "Roman Borschel",
  960. "email": "roman@code-factory.org"
  961. },
  962. {
  963. "name": "Benjamin Eberlei",
  964. "email": "kontakt@beberlei.de"
  965. },
  966. {
  967. "name": "Guilherme Blanco",
  968. "email": "guilhermeblanco@gmail.com"
  969. },
  970. {
  971. "name": "Jonathan Wage",
  972. "email": "jonwage@gmail.com"
  973. },
  974. {
  975. "name": "Marco Pivetta",
  976. "email": "ocramius@gmail.com"
  977. }
  978. ],
  979. "description": "Object-Relational-Mapper for PHP",
  980. "homepage": "http://www.doctrine-project.org",
  981. "keywords": [
  982. "database",
  983. "orm"
  984. ],
  985. "time": "2018-02-27T07:30:56+00:00"
  986. },
  987. {
  988. "name": "egulias/email-validator",
  989. "version": "2.1.4",
  990. "source": {
  991. "type": "git",
  992. "url": "https://github.com/egulias/EmailValidator.git",
  993. "reference": "8790f594151ca6a2010c6218e09d96df67173ad3"
  994. },
  995. "dist": {
  996. "type": "zip",
  997. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/8790f594151ca6a2010c6218e09d96df67173ad3",
  998. "reference": "8790f594151ca6a2010c6218e09d96df67173ad3",
  999. "shasum": ""
  1000. },
  1001. "require": {
  1002. "doctrine/lexer": "^1.0.1",
  1003. "php": ">= 5.5"
  1004. },
  1005. "require-dev": {
  1006. "dominicsayers/isemail": "dev-master",
  1007. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  1008. "satooshi/php-coveralls": "^1.0.1"
  1009. },
  1010. "suggest": {
  1011. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1012. },
  1013. "type": "library",
  1014. "extra": {
  1015. "branch-alias": {
  1016. "dev-master": "2.0.x-dev"
  1017. }
  1018. },
  1019. "autoload": {
  1020. "psr-4": {
  1021. "Egulias\\EmailValidator\\": "EmailValidator"
  1022. }
  1023. },
  1024. "notification-url": "https://packagist.org/downloads/",
  1025. "license": [
  1026. "MIT"
  1027. ],
  1028. "authors": [
  1029. {
  1030. "name": "Eduardo Gulias Davis"
  1031. }
  1032. ],
  1033. "description": "A library for validating emails against several RFCs",
  1034. "homepage": "https://github.com/egulias/EmailValidator",
  1035. "keywords": [
  1036. "email",
  1037. "emailvalidation",
  1038. "emailvalidator",
  1039. "validation",
  1040. "validator"
  1041. ],
  1042. "time": "2018-04-10T10:11:19+00:00"
  1043. },
  1044. {
  1045. "name": "eightpoints/guzzle-bundle",
  1046. "version": "v7.3.1",
  1047. "source": {
  1048. "type": "git",
  1049. "url": "https://github.com/8p/EightPointsGuzzleBundle.git",
  1050. "reference": "13e9a9e4775dabc3303a71ae5a5a61235bd452e6"
  1051. },
  1052. "dist": {
  1053. "type": "zip",
  1054. "url": "https://api.github.com/repos/8p/EightPointsGuzzleBundle/zipball/13e9a9e4775dabc3303a71ae5a5a61235bd452e6",
  1055. "reference": "13e9a9e4775dabc3303a71ae5a5a61235bd452e6",
  1056. "shasum": ""
  1057. },
  1058. "require": {
  1059. "guzzlehttp/guzzle": "~6.0",
  1060. "php": ">=7.0",
  1061. "psr/log": "~1.0",
  1062. "symfony/expression-language": "~2.7|~3.0|~4.0",
  1063. "symfony/framework-bundle": "~2.7|~3.0|~4.0"
  1064. },
  1065. "require-dev": {
  1066. "phpunit/phpunit": "~6.1",
  1067. "symfony/var-dumper": "~2.7|~3.0|~4.0",
  1068. "twig/twig": "~1.5|~2.0"
  1069. },
  1070. "type": "symfony-bundle",
  1071. "autoload": {
  1072. "psr-4": {
  1073. "EightPoints\\Bundle\\GuzzleBundle\\": "src"
  1074. }
  1075. },
  1076. "notification-url": "https://packagist.org/downloads/",
  1077. "license": [
  1078. "MIT"
  1079. ],
  1080. "authors": [
  1081. {
  1082. "name": "Community",
  1083. "homepage": "https://github.com/8p/GuzzleBundle/contributors"
  1084. },
  1085. {
  1086. "name": "Florian Preusner",
  1087. "email": "florian.preusner@8points.de",
  1088. "homepage": "https://github.com/florianpreusner"
  1089. }
  1090. ],
  1091. "description": "Integrates Guzzle 6.x, a PHP HTTP Client, into Symfony 2/3/4. Comes with easy and powerful configuration options and optional plugins.",
  1092. "homepage": "https://github.com/8p/GuzzleBundle",
  1093. "keywords": [
  1094. "Guzzle",
  1095. "bundle",
  1096. "client",
  1097. "curl",
  1098. "http client",
  1099. "rest",
  1100. "symfony",
  1101. "web service"
  1102. ],
  1103. "time": "2018-06-10T11:09:34+00:00"
  1104. },
  1105. {
  1106. "name": "embed/embed",
  1107. "version": "v3.3.5",
  1108. "source": {
  1109. "type": "git",
  1110. "url": "https://github.com/oscarotero/Embed.git",
  1111. "reference": "46e19804e330065c899657c047288f792e2bca02"
  1112. },
  1113. "dist": {
  1114. "type": "zip",
  1115. "url": "https://api.github.com/repos/oscarotero/Embed/zipball/46e19804e330065c899657c047288f792e2bca02",
  1116. "reference": "46e19804e330065c899657c047288f792e2bca02",
  1117. "shasum": ""
  1118. },
  1119. "require": {
  1120. "composer/ca-bundle": "^1.0",
  1121. "ext-curl": "*",
  1122. "ext-mbstring": "*",
  1123. "php": "^5.5|^7.0"
  1124. },
  1125. "require-dev": {
  1126. "friendsofphp/php-cs-fixer": "^2.0",
  1127. "phpunit/phpunit": "^4.8|^5.7"
  1128. },
  1129. "type": "library",
  1130. "autoload": {
  1131. "psr-4": {
  1132. "Embed\\": "src"
  1133. }
  1134. },
  1135. "notification-url": "https://packagist.org/downloads/",
  1136. "license": [
  1137. "MIT"
  1138. ],
  1139. "authors": [
  1140. {
  1141. "name": "Oscar Otero",
  1142. "email": "oom@oscarotero.com",
  1143. "homepage": "http://oscarotero.com",
  1144. "role": "Developer"
  1145. }
  1146. ],
  1147. "description": "PHP library to retrieve page info using oembed, opengraph, etc",
  1148. "homepage": "https://github.com/oscarotero/Embed",
  1149. "keywords": [
  1150. "embed",
  1151. "embedly",
  1152. "oembed",
  1153. "opengraph",
  1154. "twitter cards"
  1155. ],
  1156. "time": "2018-06-18T21:12:45+00:00"
  1157. },
  1158. {
  1159. "name": "ezyang/htmlpurifier",
  1160. "version": "v4.10.0",
  1161. "source": {
  1162. "type": "git",
  1163. "url": "https://github.com/ezyang/htmlpurifier.git",
  1164. "reference": "d85d39da4576a6934b72480be6978fb10c860021"
  1165. },
  1166. "dist": {
  1167. "type": "zip",
  1168. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d85d39da4576a6934b72480be6978fb10c860021",
  1169. "reference": "d85d39da4576a6934b72480be6978fb10c860021",
  1170. "shasum": ""
  1171. },
  1172. "require": {
  1173. "php": ">=5.2"
  1174. },
  1175. "require-dev": {
  1176. "simpletest/simpletest": "^1.1"
  1177. },
  1178. "type": "library",
  1179. "autoload": {
  1180. "psr-0": {
  1181. "HTMLPurifier": "library/"
  1182. },
  1183. "files": [
  1184. "library/HTMLPurifier.composer.php"
  1185. ]
  1186. },
  1187. "notification-url": "https://packagist.org/downloads/",
  1188. "license": [
  1189. "LGPL"
  1190. ],
  1191. "authors": [
  1192. {
  1193. "name": "Edward Z. Yang",
  1194. "email": "admin@htmlpurifier.org",
  1195. "homepage": "http://ezyang.com"
  1196. }
  1197. ],
  1198. "description": "Standards compliant HTML filter written in PHP",
  1199. "homepage": "http://htmlpurifier.org/",
  1200. "keywords": [
  1201. "html"
  1202. ],
  1203. "time": "2018-02-23T01:58:20+00:00"
  1204. },
  1205. {
  1206. "name": "fig/link-util",
  1207. "version": "1.0.0",
  1208. "source": {
  1209. "type": "git",
  1210. "url": "https://github.com/php-fig/link-util.git",
  1211. "reference": "1a07821801a148be4add11ab0603e4af55a72fac"
  1212. },
  1213. "dist": {
  1214. "type": "zip",
  1215. "url": "https://api.github.com/repos/php-fig/link-util/zipball/1a07821801a148be4add11ab0603e4af55a72fac",
  1216. "reference": "1a07821801a148be4add11ab0603e4af55a72fac",
  1217. "shasum": ""
  1218. },
  1219. "require": {
  1220. "php": ">=5.5.0",
  1221. "psr/link": "~1.0@dev"
  1222. },
  1223. "require-dev": {
  1224. "phpunit/phpunit": "^5.1",
  1225. "squizlabs/php_codesniffer": "^2.3.1"
  1226. },
  1227. "type": "library",
  1228. "extra": {
  1229. "branch-alias": {
  1230. "dev-master": "1.0.x-dev"
  1231. }
  1232. },
  1233. "autoload": {
  1234. "psr-4": {
  1235. "Fig\\Link\\": "src/"
  1236. }
  1237. },
  1238. "notification-url": "https://packagist.org/downloads/",
  1239. "license": [
  1240. "MIT"
  1241. ],
  1242. "authors": [
  1243. {
  1244. "name": "PHP-FIG",
  1245. "homepage": "http://www.php-fig.org/"
  1246. }
  1247. ],
  1248. "description": "Common utility implementations for HTTP links",
  1249. "keywords": [
  1250. "http",
  1251. "http-link",
  1252. "link",
  1253. "psr",
  1254. "psr-13",
  1255. "rest"
  1256. ],
  1257. "time": "2016-10-17T18:31:11+00:00"
  1258. },
  1259. {
  1260. "name": "friendsofsymfony/jsrouting-bundle",
  1261. "version": "2.2.0",
  1262. "source": {
  1263. "type": "git",
  1264. "url": "https://github.com/FriendsOfSymfony/FOSJsRoutingBundle.git",
  1265. "reference": "0f74f4f9d73580bd039cee54c4744b546a6a7990"
  1266. },
  1267. "dist": {
  1268. "type": "zip",
  1269. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSJsRoutingBundle/zipball/0f74f4f9d73580bd039cee54c4744b546a6a7990",
  1270. "reference": "0f74f4f9d73580bd039cee54c4744b546a6a7990",
  1271. "shasum": ""
  1272. },
  1273. "require": {
  1274. "php": "^5.3.9|^7.0",
  1275. "symfony/console": "~2.7||~3.0|^4.0",
  1276. "symfony/framework-bundle": "~2.7||~3.0|^4.0",
  1277. "symfony/serializer": "~2.7||~3.0|^4.0",
  1278. "willdurand/jsonp-callback-validator": "~1.0"
  1279. },
  1280. "require-dev": {
  1281. "symfony/expression-language": "~2.7||~3.0|^4.0",
  1282. "symfony/phpunit-bridge": "^3.3|^4.0"
  1283. },
  1284. "type": "symfony-bundle",
  1285. "extra": {
  1286. "branch-alias": {
  1287. "dev-master": "2.0-dev"
  1288. }
  1289. },
  1290. "autoload": {
  1291. "psr-4": {
  1292. "FOS\\JsRoutingBundle\\": ""
  1293. }
  1294. },
  1295. "notification-url": "https://packagist.org/downloads/",
  1296. "license": [
  1297. "MIT"
  1298. ],
  1299. "authors": [
  1300. {
  1301. "name": "FriendsOfSymfony Community",
  1302. "homepage": "https://github.com/friendsofsymfony/FOSJsRoutingBundle/contributors"
  1303. },
  1304. {
  1305. "name": "William Durand",
  1306. "email": "will+git@drnd.me"
  1307. }
  1308. ],
  1309. "description": "A pretty nice way to expose your Symfony2 routing to client applications.",
  1310. "homepage": "http://friendsofsymfony.github.com",
  1311. "keywords": [
  1312. "Js Routing",
  1313. "javascript",
  1314. "routing"
  1315. ],
  1316. "time": "2018-02-07T20:08:48+00:00"
  1317. },
  1318. {
  1319. "name": "gregwar/captcha",
  1320. "version": "v1.1.6",
  1321. "source": {
  1322. "type": "git",
  1323. "url": "https://github.com/Gregwar/Captcha.git",
  1324. "reference": "a96d8dffc80d6213958bd19fbdef1555e8b63ca3"
  1325. },
  1326. "dist": {
  1327. "type": "zip",
  1328. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/a96d8dffc80d6213958bd19fbdef1555e8b63ca3",
  1329. "reference": "a96d8dffc80d6213958bd19fbdef1555e8b63ca3",
  1330. "shasum": ""
  1331. },
  1332. "require": {
  1333. "ext-gd": "*",
  1334. "ext-mbstring": "*",
  1335. "php": ">=5.3.0",
  1336. "symfony/finder": "~3.0|~4.0"
  1337. },
  1338. "require-dev": {
  1339. "phpunit/phpunit": "^6.4"
  1340. },
  1341. "type": "captcha",
  1342. "autoload": {
  1343. "psr-4": {
  1344. "Gregwar\\": "src/Gregwar"
  1345. }
  1346. },
  1347. "notification-url": "https://packagist.org/downloads/",
  1348. "license": [
  1349. "MIT"
  1350. ],
  1351. "authors": [
  1352. {
  1353. "name": "Grégoire Passault",
  1354. "email": "g.passault@gmail.com",
  1355. "homepage": "http://www.gregwar.com/"
  1356. },
  1357. {
  1358. "name": "Jeremy Livingston",
  1359. "email": "jeremy.j.livingston@gmail.com"
  1360. }
  1361. ],
  1362. "description": "Captcha generator",
  1363. "homepage": "https://github.com/Gregwar/Captcha",
  1364. "keywords": [
  1365. "bot",
  1366. "captcha",
  1367. "spam"
  1368. ],
  1369. "time": "2018-04-24T09:20:08+00:00"
  1370. },
  1371. {
  1372. "name": "gregwar/captcha-bundle",
  1373. "version": "v2.0.4",
  1374. "source": {
  1375. "type": "git",
  1376. "url": "https://github.com/Gregwar/CaptchaBundle.git",
  1377. "reference": "639430383fd6aaedd421e39404445cd65d377f10"
  1378. },
  1379. "dist": {
  1380. "type": "zip",
  1381. "url": "https://api.github.com/repos/Gregwar/CaptchaBundle/zipball/639430383fd6aaedd421e39404445cd65d377f10",
  1382. "reference": "639430383fd6aaedd421e39404445cd65d377f10",
  1383. "shasum": ""
  1384. },
  1385. "require": {
  1386. "gregwar/captcha": "~1.1",
  1387. "php": ">=5.3.9",
  1388. "symfony/form": "~2.8|~3.0|~4.0",
  1389. "symfony/framework-bundle": "~2.8|~3.0|~4.0"
  1390. },
  1391. "type": "captcha-bundle",
  1392. "autoload": {
  1393. "psr-4": {
  1394. "Gregwar\\CaptchaBundle\\": "/"
  1395. }
  1396. },
  1397. "notification-url": "https://packagist.org/downloads/",
  1398. "license": [
  1399. "MIT"
  1400. ],
  1401. "authors": [
  1402. {
  1403. "name": "Grégoire Passault",
  1404. "email": "g.passault@gmail.com",
  1405. "homepage": "http://www.gregwar.com/"
  1406. },
  1407. {
  1408. "name": "Jeremy Livingston",
  1409. "email": "jeremy.j.livingston@gmail.com"
  1410. }
  1411. ],
  1412. "description": "Captcha bundle",
  1413. "homepage": "https://github.com/Gregwar/CaptchaBundle",
  1414. "keywords": [
  1415. "Symfony2",
  1416. "bot",
  1417. "captcha",
  1418. "code",
  1419. "security",
  1420. "spam",
  1421. "visual"
  1422. ],
  1423. "time": "2017-12-28T11:21:03+00:00"
  1424. },
  1425. {
  1426. "name": "guzzlehttp/guzzle",
  1427. "version": "6.3.3",
  1428. "source": {
  1429. "type": "git",
  1430. "url": "https://github.com/guzzle/guzzle.git",
  1431. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  1432. },
  1433. "dist": {
  1434. "type": "zip",
  1435. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1436. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1437. "shasum": ""
  1438. },
  1439. "require": {
  1440. "guzzlehttp/promises": "^1.0",
  1441. "guzzlehttp/psr7": "^1.4",
  1442. "php": ">=5.5"
  1443. },
  1444. "require-dev": {
  1445. "ext-curl": "*",
  1446. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1447. "psr/log": "^1.0"
  1448. },
  1449. "suggest": {
  1450. "psr/log": "Required for using the Log middleware"
  1451. },
  1452. "type": "library",
  1453. "extra": {
  1454. "branch-alias": {
  1455. "dev-master": "6.3-dev"
  1456. }
  1457. },
  1458. "autoload": {
  1459. "files": [
  1460. "src/functions_include.php"
  1461. ],
  1462. "psr-4": {
  1463. "GuzzleHttp\\": "src/"
  1464. }
  1465. },
  1466. "notification-url": "https://packagist.org/downloads/",
  1467. "license": [
  1468. "MIT"
  1469. ],
  1470. "authors": [
  1471. {
  1472. "name": "Michael Dowling",
  1473. "email": "mtdowling@gmail.com",
  1474. "homepage": "https://github.com/mtdowling"
  1475. }
  1476. ],
  1477. "description": "Guzzle is a PHP HTTP client library",
  1478. "homepage": "http://guzzlephp.org/",
  1479. "keywords": [
  1480. "client",
  1481. "curl",
  1482. "framework",
  1483. "http",
  1484. "http client",
  1485. "rest",
  1486. "web service"
  1487. ],
  1488. "time": "2018-04-22T15:46:56+00:00"
  1489. },
  1490. {
  1491. "name": "guzzlehttp/promises",
  1492. "version": "v1.3.1",
  1493. "source": {
  1494. "type": "git",
  1495. "url": "https://github.com/guzzle/promises.git",
  1496. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1497. },
  1498. "dist": {
  1499. "type": "zip",
  1500. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1501. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1502. "shasum": ""
  1503. },
  1504. "require": {
  1505. "php": ">=5.5.0"
  1506. },
  1507. "require-dev": {
  1508. "phpunit/phpunit": "^4.0"
  1509. },
  1510. "type": "library",
  1511. "extra": {
  1512. "branch-alias": {
  1513. "dev-master": "1.4-dev"
  1514. }
  1515. },
  1516. "autoload": {
  1517. "psr-4": {
  1518. "GuzzleHttp\\Promise\\": "src/"
  1519. },
  1520. "files": [
  1521. "src/functions_include.php"
  1522. ]
  1523. },
  1524. "notification-url": "https://packagist.org/downloads/",
  1525. "license": [
  1526. "MIT"
  1527. ],
  1528. "authors": [
  1529. {
  1530. "name": "Michael Dowling",
  1531. "email": "mtdowling@gmail.com",
  1532. "homepage": "https://github.com/mtdowling"
  1533. }
  1534. ],
  1535. "description": "Guzzle promises library",
  1536. "keywords": [
  1537. "promise"
  1538. ],
  1539. "time": "2016-12-20T10:07:11+00:00"
  1540. },
  1541. {
  1542. "name": "guzzlehttp/psr7",
  1543. "version": "1.4.2",
  1544. "source": {
  1545. "type": "git",
  1546. "url": "https://github.com/guzzle/psr7.git",
  1547. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  1548. },
  1549. "dist": {
  1550. "type": "zip",
  1551. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  1552. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  1553. "shasum": ""
  1554. },
  1555. "require": {
  1556. "php": ">=5.4.0",
  1557. "psr/http-message": "~1.0"
  1558. },
  1559. "provide": {
  1560. "psr/http-message-implementation": "1.0"
  1561. },
  1562. "require-dev": {
  1563. "phpunit/phpunit": "~4.0"
  1564. },
  1565. "type": "library",
  1566. "extra": {
  1567. "branch-alias": {
  1568. "dev-master": "1.4-dev"
  1569. }
  1570. },
  1571. "autoload": {
  1572. "psr-4": {
  1573. "GuzzleHttp\\Psr7\\": "src/"
  1574. },
  1575. "files": [
  1576. "src/functions_include.php"
  1577. ]
  1578. },
  1579. "notification-url": "https://packagist.org/downloads/",
  1580. "license": [
  1581. "MIT"
  1582. ],
  1583. "authors": [
  1584. {
  1585. "name": "Michael Dowling",
  1586. "email": "mtdowling@gmail.com",
  1587. "homepage": "https://github.com/mtdowling"
  1588. },
  1589. {
  1590. "name": "Tobias Schultze",
  1591. "homepage": "https://github.com/Tobion"
  1592. }
  1593. ],
  1594. "description": "PSR-7 message implementation that also provides common utility methods",
  1595. "keywords": [
  1596. "http",
  1597. "message",
  1598. "request",
  1599. "response",
  1600. "stream",
  1601. "uri",
  1602. "url"
  1603. ],
  1604. "time": "2017-03-20T17:10:46+00:00"
  1605. },
  1606. {
  1607. "name": "imagine/imagine",
  1608. "version": "v0.7.1",
  1609. "source": {
  1610. "type": "git",
  1611. "url": "https://github.com/avalanche123/Imagine.git",
  1612. "reference": "a9a702a946073cbca166718f1b02a1e72d742daa"
  1613. },
  1614. "dist": {
  1615. "type": "zip",
  1616. "url": "https://api.github.com/repos/avalanche123/Imagine/zipball/a9a702a946073cbca166718f1b02a1e72d742daa",
  1617. "reference": "a9a702a946073cbca166718f1b02a1e72d742daa",
  1618. "shasum": ""
  1619. },
  1620. "require": {
  1621. "php": ">=5.3.2"
  1622. },
  1623. "require-dev": {
  1624. "sami/sami": "^3.3",
  1625. "symfony/phpunit-bridge": "^3.2"
  1626. },
  1627. "suggest": {
  1628. "ext-gd": "to use the GD implementation",
  1629. "ext-gmagick": "to use the Gmagick implementation",
  1630. "ext-imagick": "to use the Imagick implementation"
  1631. },
  1632. "type": "library",
  1633. "extra": {
  1634. "branch-alias": {
  1635. "dev-develop": "0.7-dev"
  1636. }
  1637. },
  1638. "autoload": {
  1639. "psr-0": {
  1640. "Imagine": "lib/"
  1641. }
  1642. },
  1643. "notification-url": "https://packagist.org/downloads/",
  1644. "license": [
  1645. "MIT"
  1646. ],
  1647. "authors": [
  1648. {
  1649. "name": "Bulat Shakirzyanov",
  1650. "email": "mallluhuct@gmail.com",
  1651. "homepage": "http://avalanche123.com"
  1652. }
  1653. ],
  1654. "description": "Image processing for PHP 5.3",
  1655. "homepage": "http://imagine.readthedocs.org/",
  1656. "keywords": [
  1657. "drawing",
  1658. "graphics",
  1659. "image manipulation",
  1660. "image processing"
  1661. ],
  1662. "time": "2017-05-16T10:31:22+00:00"
  1663. },
  1664. {
  1665. "name": "jdorn/sql-formatter",
  1666. "version": "v1.2.17",
  1667. "source": {
  1668. "type": "git",
  1669. "url": "https://github.com/jdorn/sql-formatter.git",
  1670. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  1671. },
  1672. "dist": {
  1673. "type": "zip",
  1674. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  1675. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  1676. "shasum": ""
  1677. },
  1678. "require": {
  1679. "php": ">=5.2.4"
  1680. },
  1681. "require-dev": {
  1682. "phpunit/phpunit": "3.7.*"
  1683. },
  1684. "type": "library",
  1685. "extra": {
  1686. "branch-alias": {
  1687. "dev-master": "1.3.x-dev"
  1688. }
  1689. },
  1690. "autoload": {
  1691. "classmap": [
  1692. "lib"
  1693. ]
  1694. },
  1695. "notification-url": "https://packagist.org/downloads/",
  1696. "license": [
  1697. "MIT"
  1698. ],
  1699. "authors": [
  1700. {
  1701. "name": "Jeremy Dorn",
  1702. "email": "jeremy@jeremydorn.com",
  1703. "homepage": "http://jeremydorn.com/"
  1704. }
  1705. ],
  1706. "description": "a PHP SQL highlighting library",
  1707. "homepage": "https://github.com/jdorn/sql-formatter/",
  1708. "keywords": [
  1709. "highlight",
  1710. "sql"
  1711. ],
  1712. "time": "2014-01-12T16:20:24+00:00"
  1713. },
  1714. {
  1715. "name": "league/commonmark",
  1716. "version": "0.17.5",
  1717. "source": {
  1718. "type": "git",
  1719. "url": "https://github.com/thephpleague/commonmark.git",
  1720. "reference": "82d7ab62d7f68391cb9d323f3ccce50be24a5369"
  1721. },
  1722. "dist": {
  1723. "type": "zip",
  1724. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/82d7ab62d7f68391cb9d323f3ccce50be24a5369",
  1725. "reference": "82d7ab62d7f68391cb9d323f3ccce50be24a5369",
  1726. "shasum": ""
  1727. },
  1728. "require": {
  1729. "ext-mbstring": "*",
  1730. "php": ">=5.6.5"
  1731. },
  1732. "replace": {
  1733. "colinodell/commonmark-php": "*"
  1734. },
  1735. "require-dev": {
  1736. "cebe/markdown": "~1.0",
  1737. "commonmark/commonmark.js": "0.28",
  1738. "erusev/parsedown": "~1.0",
  1739. "michelf/php-markdown": "~1.4",
  1740. "mikehaertl/php-shellcommand": "^1.2",
  1741. "phpunit/phpunit": "^5.7|^6.5",
  1742. "scrutinizer/ocular": "^1.1",
  1743. "symfony/finder": "^3.0|^4.0"
  1744. },
  1745. "suggest": {
  1746. "league/commonmark-extras": "Library of useful extensions including smart punctuation"
  1747. },
  1748. "bin": [
  1749. "bin/commonmark"
  1750. ],
  1751. "type": "library",
  1752. "extra": {
  1753. "branch-alias": {
  1754. "dev-master": "0.18-dev"
  1755. }
  1756. },
  1757. "autoload": {
  1758. "psr-4": {
  1759. "League\\CommonMark\\": "src/"
  1760. }
  1761. },
  1762. "notification-url": "https://packagist.org/downloads/",
  1763. "license": [
  1764. "BSD-3-Clause"
  1765. ],
  1766. "authors": [
  1767. {
  1768. "name": "Colin O'Dell",
  1769. "email": "colinodell@gmail.com",
  1770. "homepage": "https://www.colinodell.com",
  1771. "role": "Lead Developer"
  1772. }
  1773. ],
  1774. "description": "Markdown parser for PHP based on the CommonMark spec",
  1775. "homepage": "https://github.com/thephpleague/commonmark",
  1776. "keywords": [
  1777. "commonmark",
  1778. "markdown",
  1779. "parser"
  1780. ],
  1781. "time": "2018-03-29T14:35:19+00:00"
  1782. },
  1783. {
  1784. "name": "league/flysystem",
  1785. "version": "1.0.45",
  1786. "source": {
  1787. "type": "git",
  1788. "url": "https://github.com/thephpleague/flysystem.git",
  1789. "reference": "a99f94e63b512d75f851b181afcdf0ee9ebef7e6"
  1790. },
  1791. "dist": {
  1792. "type": "zip",
  1793. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a99f94e63b512d75f851b181afcdf0ee9ebef7e6",
  1794. "reference": "a99f94e63b512d75f851b181afcdf0ee9ebef7e6",
  1795. "shasum": ""
  1796. },
  1797. "require": {
  1798. "php": ">=5.5.9"
  1799. },
  1800. "conflict": {
  1801. "league/flysystem-sftp": "<1.0.6"
  1802. },
  1803. "require-dev": {
  1804. "ext-fileinfo": "*",
  1805. "phpspec/phpspec": "^3.4",
  1806. "phpunit/phpunit": "^5.7"
  1807. },
  1808. "suggest": {
  1809. "ext-fileinfo": "Required for MimeType",
  1810. "ext-ftp": "Allows you to use FTP server storage",
  1811. "ext-openssl": "Allows you to use FTPS server storage",
  1812. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1813. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1814. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1815. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1816. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1817. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1818. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1819. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1820. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1821. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1822. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1823. },
  1824. "type": "library",
  1825. "extra": {
  1826. "branch-alias": {
  1827. "dev-master": "1.1-dev"
  1828. }
  1829. },
  1830. "autoload": {
  1831. "psr-4": {
  1832. "League\\Flysystem\\": "src/"
  1833. }
  1834. },
  1835. "notification-url": "https://packagist.org/downloads/",
  1836. "license": [
  1837. "MIT"
  1838. ],
  1839. "authors": [
  1840. {
  1841. "name": "Frank de Jonge",
  1842. "email": "info@frenky.net"
  1843. }
  1844. ],
  1845. "description": "Filesystem abstraction: Many filesystems, one API.",
  1846. "keywords": [
  1847. "Cloud Files",
  1848. "WebDAV",
  1849. "abstraction",
  1850. "aws",
  1851. "cloud",
  1852. "copy.com",
  1853. "dropbox",
  1854. "file systems",
  1855. "files",
  1856. "filesystem",
  1857. "filesystems",
  1858. "ftp",
  1859. "rackspace",
  1860. "remote",
  1861. "s3",
  1862. "sftp",
  1863. "storage"
  1864. ],
  1865. "time": "2018-05-07T08:44:23+00:00"
  1866. },
  1867. {
  1868. "name": "liip/imagine-bundle",
  1869. "version": "2.0.0",
  1870. "source": {
  1871. "type": "git",
  1872. "url": "https://github.com/liip/LiipImagineBundle.git",
  1873. "reference": "66959e113d1976d0b23a2617771c2c65d62ea44b"
  1874. },
  1875. "dist": {
  1876. "type": "zip",
  1877. "url": "https://api.github.com/repos/liip/LiipImagineBundle/zipball/66959e113d1976d0b23a2617771c2c65d62ea44b",
  1878. "reference": "66959e113d1976d0b23a2617771c2c65d62ea44b",
  1879. "shasum": ""
  1880. },
  1881. "require": {
  1882. "imagine/imagine": "^0.7.1,<0.8",
  1883. "php": "^7.1",
  1884. "symfony/asset": "^3.0|^4.0",
  1885. "symfony/filesystem": "^3.0|^4.0",
  1886. "symfony/finder": "^3.0|^4.0",
  1887. "symfony/framework-bundle": "^3.0|^4.0",
  1888. "symfony/options-resolver": "^3.0|^4.0",
  1889. "symfony/process": "^3.0|^4.0",
  1890. "symfony/templating": "^3.0|^4.0",
  1891. "symfony/translation": "^3.0|^4.0"
  1892. },
  1893. "require-dev": {
  1894. "amazonwebservices/aws-sdk-for-php": "^1.0",
  1895. "aws/aws-sdk-php": "^2.4",
  1896. "doctrine/cache": "^1.1",
  1897. "doctrine/orm": "^2.3",
  1898. "enqueue/enqueue-bundle": "^0.7|^0.8",
  1899. "ext-gd": "*",
  1900. "friendsofphp/php-cs-fixer": "^2.10",
  1901. "league/flysystem": "^1.0",
  1902. "psr/log": "^1.0",
  1903. "symfony/browser-kit": "^3.0|^4.0",
  1904. "symfony/console": "^3.0|^4.0",
  1905. "symfony/dependency-injection": "^3.0|^4.0",
  1906. "symfony/form": "^3.0|^4.0",
  1907. "symfony/phpunit-bridge": "^3.0|^4.0",
  1908. "symfony/validator": "^3.0|^4.0",
  1909. "symfony/yaml": "^3.0|^4.0",
  1910. "twig/twig": "^1.12|^2.0"
  1911. },
  1912. "suggest": {
  1913. "alcaeus/mongo-php-adapter": "required on PHP >= 7.0 to use mongo components with mongodb extension",
  1914. "amazonwebservices/aws-sdk-for-php": "required to use AWS version 1 cache resolver",
  1915. "aws/aws-sdk-php": "required to use AWS version 2/3 cache resolver",
  1916. "doctrine/mongodb-odm": "required to use mongodb-backed doctrine components",
  1917. "enqueue/enqueue-bundle": "^0.7 add if you like to process images in background",
  1918. "ext-exif": "required to read EXIF metadata from images",
  1919. "ext-gd": "required to use gd driver",
  1920. "ext-gmagick": "required to use gmagick driver",
  1921. "ext-imagick": "required to use imagick driver",
  1922. "ext-mongo": "required for mongodb components on PHP <7.0",
  1923. "ext-mongodb": "required for mongodb components on PHP >=7.0",
  1924. "league/flysystem": "required to use FlySystem data loader or cache resolver",
  1925. "monolog/monolog": "A psr/log compatible logger is required to enable logging",
  1926. "twig/twig": "required to use the provided Twig extension. Version 1.12 or greater needed"
  1927. },
  1928. "type": "symfony-bundle",
  1929. "extra": {
  1930. "branch-alias": {
  1931. "dev-1.0": "1.7-dev"
  1932. }
  1933. },
  1934. "autoload": {
  1935. "psr-4": {
  1936. "Liip\\ImagineBundle\\": ""
  1937. },
  1938. "exclude-from-classmap": [
  1939. "/Tests/"
  1940. ]
  1941. },
  1942. "notification-url": "https://packagist.org/downloads/",
  1943. "license": [
  1944. "MIT"
  1945. ],
  1946. "authors": [
  1947. {
  1948. "name": "Liip and other contributors",
  1949. "homepage": "https://github.com/liip/LiipImagineBundle/contributors"
  1950. }
  1951. ],
  1952. "description": "This bundle provides an image manipulation abstraction toolkit for Symfony-based projects.",
  1953. "homepage": "http://liip.ch",
  1954. "keywords": [
  1955. "bundle",
  1956. "image",
  1957. "imagine",
  1958. "liip",
  1959. "manipulation",
  1960. "photos",
  1961. "pictures",
  1962. "symfony",
  1963. "transformation"
  1964. ],
  1965. "time": "2018-04-30T09:53:17+00:00"
  1966. },
  1967. {
  1968. "name": "monolog/monolog",
  1969. "version": "1.23.0",
  1970. "source": {
  1971. "type": "git",
  1972. "url": "https://github.com/Seldaek/monolog.git",
  1973. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4"
  1974. },
  1975. "dist": {
  1976. "type": "zip",
  1977. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  1978. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  1979. "shasum": ""
  1980. },
  1981. "require": {
  1982. "php": ">=5.3.0",
  1983. "psr/log": "~1.0"
  1984. },
  1985. "provide": {
  1986. "psr/log-implementation": "1.0.0"
  1987. },
  1988. "require-dev": {
  1989. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1990. "doctrine/couchdb": "~1.0@dev",
  1991. "graylog2/gelf-php": "~1.0",
  1992. "jakub-onderka/php-parallel-lint": "0.9",
  1993. "php-amqplib/php-amqplib": "~2.4",
  1994. "php-console/php-console": "^3.1.3",
  1995. "phpunit/phpunit": "~4.5",
  1996. "phpunit/phpunit-mock-objects": "2.3.0",
  1997. "ruflin/elastica": ">=0.90 <3.0",
  1998. "sentry/sentry": "^0.13",
  1999. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2000. },
  2001. "suggest": {
  2002. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2003. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2004. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2005. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2006. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2007. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2008. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2009. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2010. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2011. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2012. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2013. },
  2014. "type": "library",
  2015. "extra": {
  2016. "branch-alias": {
  2017. "dev-master": "2.0.x-dev"
  2018. }
  2019. },
  2020. "autoload": {
  2021. "psr-4": {
  2022. "Monolog\\": "src/Monolog"
  2023. }
  2024. },
  2025. "notification-url": "https://packagist.org/downloads/",
  2026. "license": [
  2027. "MIT"
  2028. ],
  2029. "authors": [
  2030. {
  2031. "name": "Jordi Boggiano",
  2032. "email": "j.boggiano@seld.be",
  2033. "homepage": "http://seld.be"
  2034. }
  2035. ],
  2036. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2037. "homepage": "http://github.com/Seldaek/monolog",
  2038. "keywords": [
  2039. "log",
  2040. "logging",
  2041. "psr-3"
  2042. ],
  2043. "time": "2017-06-19T01:22:40+00:00"
  2044. },
  2045. {
  2046. "name": "ocramius/package-versions",
  2047. "version": "1.3.0",
  2048. "source": {
  2049. "type": "git",
  2050. "url": "https://github.com/Ocramius/PackageVersions.git",
  2051. "reference": "4489d5002c49d55576fa0ba786f42dbb009be46f"
  2052. },
  2053. "dist": {
  2054. "type": "zip",
  2055. "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/4489d5002c49d55576fa0ba786f42dbb009be46f",
  2056. "reference": "4489d5002c49d55576fa0ba786f42dbb009be46f",
  2057. "shasum": ""
  2058. },
  2059. "require": {
  2060. "composer-plugin-api": "^1.0.0",
  2061. "php": "^7.1.0"
  2062. },
  2063. "require-dev": {
  2064. "composer/composer": "^1.6.3",
  2065. "ext-zip": "*",
  2066. "infection/infection": "^0.7.1",
  2067. "phpunit/phpunit": "^7.0.0"
  2068. },
  2069. "type": "composer-plugin",
  2070. "extra": {
  2071. "class": "PackageVersions\\Installer",
  2072. "branch-alias": {
  2073. "dev-master": "2.0.x-dev"
  2074. }
  2075. },
  2076. "autoload": {
  2077. "psr-4": {
  2078. "PackageVersions\\": "src/PackageVersions"
  2079. }
  2080. },
  2081. "notification-url": "https://packagist.org/downloads/",
  2082. "license": [
  2083. "MIT"
  2084. ],
  2085. "authors": [
  2086. {
  2087. "name": "Marco Pivetta",
  2088. "email": "ocramius@gmail.com"
  2089. }
  2090. ],
  2091. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  2092. "time": "2018-02-05T13:05:30+00:00"
  2093. },
  2094. {
  2095. "name": "ocramius/proxy-manager",
  2096. "version": "2.1.1",
  2097. "source": {
  2098. "type": "git",
  2099. "url": "https://github.com/Ocramius/ProxyManager.git",
  2100. "reference": "e18ac876b2e4819c76349de8f78ccc8ef1554cd7"
  2101. },
  2102. "dist": {
  2103. "type": "zip",
  2104. "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/e18ac876b2e4819c76349de8f78ccc8ef1554cd7",
  2105. "reference": "e18ac876b2e4819c76349de8f78ccc8ef1554cd7",
  2106. "shasum": ""
  2107. },
  2108. "require": {
  2109. "ocramius/package-versions": "^1.1.1",
  2110. "php": "^7.1.0",
  2111. "zendframework/zend-code": "^3.1.0"
  2112. },
  2113. "require-dev": {
  2114. "couscous/couscous": "^1.5.2",
  2115. "ext-phar": "*",
  2116. "humbug/humbug": "dev-master@DEV",
  2117. "nikic/php-parser": "^3.0.4",
  2118. "phpbench/phpbench": "^0.12.2",
  2119. "phpstan/phpstan": "^0.6.4",
  2120. "phpunit/phpunit": "^5.6.4",
  2121. "phpunit/phpunit-mock-objects": "^3.4.1",
  2122. "squizlabs/php_codesniffer": "^2.7.0"
  2123. },
  2124. "suggest": {
  2125. "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects",
  2126. "zendframework/zend-json": "To have the JsonRpc adapter (Remote Object feature)",
  2127. "zendframework/zend-soap": "To have the Soap adapter (Remote Object feature)",
  2128. "zendframework/zend-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)"
  2129. },
  2130. "type": "library",
  2131. "extra": {
  2132. "branch-alias": {
  2133. "dev-master": "3.0.x-dev"
  2134. }
  2135. },
  2136. "autoload": {
  2137. "psr-0": {
  2138. "ProxyManager\\": "src"
  2139. }
  2140. },
  2141. "notification-url": "https://packagist.org/downloads/",
  2142. "license": [
  2143. "MIT"
  2144. ],
  2145. "authors": [
  2146. {
  2147. "name": "Marco Pivetta",
  2148. "email": "ocramius@gmail.com",
  2149. "homepage": "http://ocramius.github.io/"
  2150. }
  2151. ],
  2152. "description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies",
  2153. "homepage": "https://github.com/Ocramius/ProxyManager",
  2154. "keywords": [
  2155. "aop",
  2156. "lazy loading",
  2157. "proxy",
  2158. "proxy pattern",
  2159. "service proxies"
  2160. ],
  2161. "time": "2017-05-04T11:12:50+00:00"
  2162. },
  2163. {
  2164. "name": "oneup/flysystem-bundle",
  2165. "version": "3.0.2",
  2166. "source": {
  2167. "type": "git",
  2168. "url": "https://github.com/1up-lab/OneupFlysystemBundle.git",
  2169. "reference": "7dd3413d4b87779df489039c025d9cf5ffbd814a"
  2170. },
  2171. "dist": {
  2172. "type": "zip",
  2173. "url": "https://api.github.com/repos/1up-lab/OneupFlysystemBundle/zipball/7dd3413d4b87779df489039c025d9cf5ffbd814a",
  2174. "reference": "7dd3413d4b87779df489039c025d9cf5ffbd814a",
  2175. "shasum": ""
  2176. },
  2177. "require": {
  2178. "league/flysystem": "^1.0.26",
  2179. "php": "^7.0",
  2180. "symfony/framework-bundle": "^3.3|^4.0"
  2181. },
  2182. "require-dev": {
  2183. "jenko/flysystem-gaufrette": "^1.0",
  2184. "league/flysystem-aws-s3-v2": "^1.0",
  2185. "league/flysystem-cached-adapter": "^1.0",
  2186. "league/flysystem-gridfs": "^1.0",
  2187. "league/flysystem-memory": "^1.0",
  2188. "league/flysystem-rackspace": "^1.0",
  2189. "league/flysystem-replicate-adapter": "^1.0",
  2190. "league/flysystem-sftp": "^1.0",
  2191. "league/flysystem-webdav": "^1.0",
  2192. "league/flysystem-ziparchive": "^1.0",
  2193. "litipk/flysystem-fallback-adapter": "^0.1",
  2194. "phpunit/phpunit": "^4.4",
  2195. "spatie/flysystem-dropbox": "^1.0",
  2196. "superbalist/flysystem-google-storage": "^4.0",
  2197. "symfony/asset": "^3.3|^4.0",
  2198. "symfony/browser-kit": "^3.3|^4.0",
  2199. "symfony/finder": "^3.3|^4.0",
  2200. "symfony/templating": "^3.3|^4.0",
  2201. "symfony/translation": "^3.3|^4.0",
  2202. "twistor/flysystem-stream-wrapper": "^1.0"
  2203. },
  2204. "suggest": {
  2205. "ext-fileinfo": "Required for MimeType",
  2206. "ext-ftp": "Required for FTP and SFTP",
  2207. "jenko/flysystem-gaufrette": "Allows you to use gaufrette adapter",
  2208. "league/flysystem-aws-s3-v2": "Use S3 storage with AWS SDK v2",
  2209. "league/flysystem-aws-s3-v3": "Use S3 storage with AWS SDK v3",
  2210. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2211. "league/flysystem-gridfs": "Allows you to use GridFS adapter",
  2212. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2213. "league/flysystem-replicate-adapter": "Allows you to use the Replicate adapter from Flysystem",
  2214. "league/flysystem-sftp": "Allows SFTP server storage via phpseclib",
  2215. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2216. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2217. "litipk/flysystem-fallback-adapter": "Allows you to use a fallback filesystem",
  2218. "spatie/flysystem-dropbox": "Use Dropbox storage",
  2219. "superbalist/flysystem-google-storage": "Allows you to use Google Cloud Storage buckets",
  2220. "twistor/flysystem-stream-wrapper": "Allows you to use stream wrapper"
  2221. },
  2222. "type": "symfony-bundle",
  2223. "autoload": {
  2224. "psr-4": {
  2225. "Oneup\\FlysystemBundle\\": ""
  2226. }
  2227. },
  2228. "notification-url": "https://packagist.org/downloads/",
  2229. "license": [
  2230. "MIT"
  2231. ],
  2232. "authors": [
  2233. {
  2234. "name": "Jim Schmid",
  2235. "email": "js@1up.io",
  2236. "homepage": "http://1up.io",
  2237. "role": "Developer"
  2238. },
  2239. {
  2240. "name": "David Greminger",
  2241. "email": "dg@1up.io",
  2242. "homepage": "http://1up.io",
  2243. "role": "Developer"
  2244. }
  2245. ],
  2246. "description": "Integrates Flysystem filesystem abstraction library to your Symfony2 project.",
  2247. "homepage": "http://1up.io",
  2248. "keywords": [
  2249. "Flysystem",
  2250. "Symfony2",
  2251. "abstraction",
  2252. "filesystem"
  2253. ],
  2254. "time": "2018-01-17T13:19:31+00:00"
  2255. },
  2256. {
  2257. "name": "pagerfanta/pagerfanta",
  2258. "version": "v2.0.1",
  2259. "source": {
  2260. "type": "git",
  2261. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  2262. "reference": "15770d9d7f6e8e07af568aed104a51f869591e73"
  2263. },
  2264. "dist": {
  2265. "type": "zip",
  2266. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/15770d9d7f6e8e07af568aed104a51f869591e73",
  2267. "reference": "15770d9d7f6e8e07af568aed104a51f869591e73",
  2268. "shasum": ""
  2269. },
  2270. "require": {
  2271. "php": ">=7.0"
  2272. },
  2273. "require-dev": {
  2274. "doctrine/orm": "~2.3",
  2275. "doctrine/phpcr-odm": "1.*",
  2276. "jackalope/jackalope-doctrine-dbal": "1.*",
  2277. "jmikola/geojson": "~1.0",
  2278. "mandango/mandango": "~1.0@dev",
  2279. "mandango/mondator": "~1.0@dev",
  2280. "phpunit/phpunit": "^5.7|^6",
  2281. "propel/propel": "~2.0@dev",
  2282. "propel/propel1": "~1.6",
  2283. "ruflin/elastica": "~1.3",
  2284. "solarium/solarium": "~3.1"
  2285. },
  2286. "suggest": {
  2287. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  2288. "doctrine/orm": "To use the DoctrineORMAdapter.",
  2289. "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
  2290. "mandango/mandango": "To use the MandangoAdapter.",
  2291. "propel/propel": "To use the Propel2Adapter",
  2292. "propel/propel1": "To use the PropelAdapter",
  2293. "solarium/solarium": "To use the SolariumAdapter."
  2294. },
  2295. "type": "library",
  2296. "extra": {
  2297. "branch-alias": {
  2298. "dev-master": "1.0.x-dev"
  2299. }
  2300. },
  2301. "autoload": {
  2302. "psr-0": {
  2303. "Pagerfanta\\": "src/"
  2304. }
  2305. },
  2306. "notification-url": "https://packagist.org/downloads/",
  2307. "license": [
  2308. "MIT"
  2309. ],
  2310. "authors": [
  2311. {
  2312. "name": "Pablo Díez",
  2313. "email": "pablodip@gmail.com"
  2314. }
  2315. ],
  2316. "description": "Pagination for PHP 5.3",
  2317. "keywords": [
  2318. "page",
  2319. "pagination",
  2320. "paginator",
  2321. "paging"
  2322. ],
  2323. "time": "2018-05-17T09:23:52+00:00"
  2324. },
  2325. {
  2326. "name": "paragonie/random_compat",
  2327. "version": "v2.0.15",
  2328. "source": {
  2329. "type": "git",
  2330. "url": "https://github.com/paragonie/random_compat.git",
  2331. "reference": "10bcb46e8f3d365170f6de9d05245aa066b81f09"
  2332. },
  2333. "dist": {
  2334. "type": "zip",
  2335. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/10bcb46e8f3d365170f6de9d05245aa066b81f09",
  2336. "reference": "10bcb46e8f3d365170f6de9d05245aa066b81f09",
  2337. "shasum": ""
  2338. },
  2339. "require": {
  2340. "php": ">=5.2.0"
  2341. },
  2342. "require-dev": {
  2343. "phpunit/phpunit": "4.*|5.*"
  2344. },
  2345. "suggest": {
  2346. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2347. },
  2348. "type": "library",
  2349. "autoload": {
  2350. "files": [
  2351. "lib/random.php"
  2352. ]
  2353. },
  2354. "notification-url": "https://packagist.org/downloads/",
  2355. "license": [
  2356. "MIT"
  2357. ],
  2358. "authors": [
  2359. {
  2360. "name": "Paragon Initiative Enterprises",
  2361. "email": "security@paragonie.com",
  2362. "homepage": "https://paragonie.com"
  2363. }
  2364. ],
  2365. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2366. "keywords": [
  2367. "csprng",
  2368. "polyfill",
  2369. "pseudorandom",
  2370. "random"
  2371. ],
  2372. "time": "2018-06-08T15:26:40+00:00"
  2373. },
  2374. {
  2375. "name": "phpdocumentor/reflection-common",
  2376. "version": "1.0.1",
  2377. "source": {
  2378. "type": "git",
  2379. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2380. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  2381. },
  2382. "dist": {
  2383. "type": "zip",
  2384. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  2385. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  2386. "shasum": ""
  2387. },
  2388. "require": {
  2389. "php": ">=5.5"
  2390. },
  2391. "require-dev": {
  2392. "phpunit/phpunit": "^4.6"
  2393. },
  2394. "type": "library",
  2395. "extra": {
  2396. "branch-alias": {
  2397. "dev-master": "1.0.x-dev"
  2398. }
  2399. },
  2400. "autoload": {
  2401. "psr-4": {
  2402. "phpDocumentor\\Reflection\\": [
  2403. "src"
  2404. ]
  2405. }
  2406. },
  2407. "notification-url": "https://packagist.org/downloads/",
  2408. "license": [
  2409. "MIT"
  2410. ],
  2411. "authors": [
  2412. {
  2413. "name": "Jaap van Otterdijk",
  2414. "email": "opensource@ijaap.nl"
  2415. }
  2416. ],
  2417. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2418. "homepage": "http://www.phpdoc.org",
  2419. "keywords": [
  2420. "FQSEN",
  2421. "phpDocumentor",
  2422. "phpdoc",
  2423. "reflection",
  2424. "static analysis"
  2425. ],
  2426. "time": "2017-09-11T18:02:19+00:00"
  2427. },
  2428. {
  2429. "name": "phpdocumentor/reflection-docblock",
  2430. "version": "4.3.0",
  2431. "source": {
  2432. "type": "git",
  2433. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2434. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  2435. },
  2436. "dist": {
  2437. "type": "zip",
  2438. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  2439. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  2440. "shasum": ""
  2441. },
  2442. "require": {
  2443. "php": "^7.0",
  2444. "phpdocumentor/reflection-common": "^1.0.0",
  2445. "phpdocumentor/type-resolver": "^0.4.0",
  2446. "webmozart/assert": "^1.0"
  2447. },
  2448. "require-dev": {
  2449. "doctrine/instantiator": "~1.0.5",
  2450. "mockery/mockery": "^1.0",
  2451. "phpunit/phpunit": "^6.4"
  2452. },
  2453. "type": "library",
  2454. "extra": {
  2455. "branch-alias": {
  2456. "dev-master": "4.x-dev"
  2457. }
  2458. },
  2459. "autoload": {
  2460. "psr-4": {
  2461. "phpDocumentor\\Reflection\\": [
  2462. "src/"
  2463. ]
  2464. }
  2465. },
  2466. "notification-url": "https://packagist.org/downloads/",
  2467. "license": [
  2468. "MIT"
  2469. ],
  2470. "authors": [
  2471. {
  2472. "name": "Mike van Riel",
  2473. "email": "me@mikevanriel.com"
  2474. }
  2475. ],
  2476. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2477. "time": "2017-11-30T07:14:17+00:00"
  2478. },
  2479. {
  2480. "name": "phpdocumentor/type-resolver",
  2481. "version": "0.4.0",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2485. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  2490. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  2491. "shasum": ""
  2492. },
  2493. "require": {
  2494. "php": "^5.5 || ^7.0",
  2495. "phpdocumentor/reflection-common": "^1.0"
  2496. },
  2497. "require-dev": {
  2498. "mockery/mockery": "^0.9.4",
  2499. "phpunit/phpunit": "^5.2||^4.8.24"
  2500. },
  2501. "type": "library",
  2502. "extra": {
  2503. "branch-alias": {
  2504. "dev-master": "1.0.x-dev"
  2505. }
  2506. },
  2507. "autoload": {
  2508. "psr-4": {
  2509. "phpDocumentor\\Reflection\\": [
  2510. "src/"
  2511. ]
  2512. }
  2513. },
  2514. "notification-url": "https://packagist.org/downloads/",
  2515. "license": [
  2516. "MIT"
  2517. ],
  2518. "authors": [
  2519. {
  2520. "name": "Mike van Riel",
  2521. "email": "me@mikevanriel.com"
  2522. }
  2523. ],
  2524. "time": "2017-07-14T14:27:02+00:00"
  2525. },
  2526. {
  2527. "name": "psr/cache",
  2528. "version": "1.0.1",
  2529. "source": {
  2530. "type": "git",
  2531. "url": "https://github.com/php-fig/cache.git",
  2532. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2533. },
  2534. "dist": {
  2535. "type": "zip",
  2536. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2537. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2538. "shasum": ""
  2539. },
  2540. "require": {
  2541. "php": ">=5.3.0"
  2542. },
  2543. "type": "library",
  2544. "extra": {
  2545. "branch-alias": {
  2546. "dev-master": "1.0.x-dev"
  2547. }
  2548. },
  2549. "autoload": {
  2550. "psr-4": {
  2551. "Psr\\Cache\\": "src/"
  2552. }
  2553. },
  2554. "notification-url": "https://packagist.org/downloads/",
  2555. "license": [
  2556. "MIT"
  2557. ],
  2558. "authors": [
  2559. {
  2560. "name": "PHP-FIG",
  2561. "homepage": "http://www.php-fig.org/"
  2562. }
  2563. ],
  2564. "description": "Common interface for caching libraries",
  2565. "keywords": [
  2566. "cache",
  2567. "psr",
  2568. "psr-6"
  2569. ],
  2570. "time": "2016-08-06T20:24:11+00:00"
  2571. },
  2572. {
  2573. "name": "psr/container",
  2574. "version": "1.0.0",
  2575. "source": {
  2576. "type": "git",
  2577. "url": "https://github.com/php-fig/container.git",
  2578. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2579. },
  2580. "dist": {
  2581. "type": "zip",
  2582. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2583. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2584. "shasum": ""
  2585. },
  2586. "require": {
  2587. "php": ">=5.3.0"
  2588. },
  2589. "type": "library",
  2590. "extra": {
  2591. "branch-alias": {
  2592. "dev-master": "1.0.x-dev"
  2593. }
  2594. },
  2595. "autoload": {
  2596. "psr-4": {
  2597. "Psr\\Container\\": "src/"
  2598. }
  2599. },
  2600. "notification-url": "https://packagist.org/downloads/",
  2601. "license": [
  2602. "MIT"
  2603. ],
  2604. "authors": [
  2605. {
  2606. "name": "PHP-FIG",
  2607. "homepage": "http://www.php-fig.org/"
  2608. }
  2609. ],
  2610. "description": "Common Container Interface (PHP FIG PSR-11)",
  2611. "homepage": "https://github.com/php-fig/container",
  2612. "keywords": [
  2613. "PSR-11",
  2614. "container",
  2615. "container-interface",
  2616. "container-interop",
  2617. "psr"
  2618. ],
  2619. "time": "2017-02-14T16:28:37+00:00"
  2620. },
  2621. {
  2622. "name": "psr/http-message",
  2623. "version": "1.0.1",
  2624. "source": {
  2625. "type": "git",
  2626. "url": "https://github.com/php-fig/http-message.git",
  2627. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2628. },
  2629. "dist": {
  2630. "type": "zip",
  2631. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2632. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2633. "shasum": ""
  2634. },
  2635. "require": {
  2636. "php": ">=5.3.0"
  2637. },
  2638. "type": "library",
  2639. "extra": {
  2640. "branch-alias": {
  2641. "dev-master": "1.0.x-dev"
  2642. }
  2643. },
  2644. "autoload": {
  2645. "psr-4": {
  2646. "Psr\\Http\\Message\\": "src/"
  2647. }
  2648. },
  2649. "notification-url": "https://packagist.org/downloads/",
  2650. "license": [
  2651. "MIT"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "PHP-FIG",
  2656. "homepage": "http://www.php-fig.org/"
  2657. }
  2658. ],
  2659. "description": "Common interface for HTTP messages",
  2660. "homepage": "https://github.com/php-fig/http-message",
  2661. "keywords": [
  2662. "http",
  2663. "http-message",
  2664. "psr",
  2665. "psr-7",
  2666. "request",
  2667. "response"
  2668. ],
  2669. "time": "2016-08-06T14:39:51+00:00"
  2670. },
  2671. {
  2672. "name": "psr/link",
  2673. "version": "1.0.0",
  2674. "source": {
  2675. "type": "git",
  2676. "url": "https://github.com/php-fig/link.git",
  2677. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  2678. },
  2679. "dist": {
  2680. "type": "zip",
  2681. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  2682. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  2683. "shasum": ""
  2684. },
  2685. "require": {
  2686. "php": ">=5.3.0"
  2687. },
  2688. "type": "library",
  2689. "extra": {
  2690. "branch-alias": {
  2691. "dev-master": "1.0.x-dev"
  2692. }
  2693. },
  2694. "autoload": {
  2695. "psr-4": {
  2696. "Psr\\Link\\": "src/"
  2697. }
  2698. },
  2699. "notification-url": "https://packagist.org/downloads/",
  2700. "license": [
  2701. "MIT"
  2702. ],
  2703. "authors": [
  2704. {
  2705. "name": "PHP-FIG",
  2706. "homepage": "http://www.php-fig.org/"
  2707. }
  2708. ],
  2709. "description": "Common interfaces for HTTP links",
  2710. "keywords": [
  2711. "http",
  2712. "http-link",
  2713. "link",
  2714. "psr",
  2715. "psr-13",
  2716. "rest"
  2717. ],
  2718. "time": "2016-10-28T16:06:13+00:00"
  2719. },
  2720. {
  2721. "name": "psr/log",
  2722. "version": "1.0.2",
  2723. "source": {
  2724. "type": "git",
  2725. "url": "https://github.com/php-fig/log.git",
  2726. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  2727. },
  2728. "dist": {
  2729. "type": "zip",
  2730. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  2731. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  2732. "shasum": ""
  2733. },
  2734. "require": {
  2735. "php": ">=5.3.0"
  2736. },
  2737. "type": "library",
  2738. "extra": {
  2739. "branch-alias": {
  2740. "dev-master": "1.0.x-dev"
  2741. }
  2742. },
  2743. "autoload": {
  2744. "psr-4": {
  2745. "Psr\\Log\\": "Psr/Log/"
  2746. }
  2747. },
  2748. "notification-url": "https://packagist.org/downloads/",
  2749. "license": [
  2750. "MIT"
  2751. ],
  2752. "authors": [
  2753. {
  2754. "name": "PHP-FIG",
  2755. "homepage": "http://www.php-fig.org/"
  2756. }
  2757. ],
  2758. "description": "Common interface for logging libraries",
  2759. "homepage": "https://github.com/php-fig/log",
  2760. "keywords": [
  2761. "log",
  2762. "psr",
  2763. "psr-3"
  2764. ],
  2765. "time": "2016-10-10T12:19:37+00:00"
  2766. },
  2767. {
  2768. "name": "psr/simple-cache",
  2769. "version": "1.0.1",
  2770. "source": {
  2771. "type": "git",
  2772. "url": "https://github.com/php-fig/simple-cache.git",
  2773. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2774. },
  2775. "dist": {
  2776. "type": "zip",
  2777. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2778. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2779. "shasum": ""
  2780. },
  2781. "require": {
  2782. "php": ">=5.3.0"
  2783. },
  2784. "type": "library",
  2785. "extra": {
  2786. "branch-alias": {
  2787. "dev-master": "1.0.x-dev"
  2788. }
  2789. },
  2790. "autoload": {
  2791. "psr-4": {
  2792. "Psr\\SimpleCache\\": "src/"
  2793. }
  2794. },
  2795. "notification-url": "https://packagist.org/downloads/",
  2796. "license": [
  2797. "MIT"
  2798. ],
  2799. "authors": [
  2800. {
  2801. "name": "PHP-FIG",
  2802. "homepage": "http://www.php-fig.org/"
  2803. }
  2804. ],
  2805. "description": "Common interfaces for simple caching",
  2806. "keywords": [
  2807. "cache",
  2808. "caching",
  2809. "psr",
  2810. "psr-16",
  2811. "simple-cache"
  2812. ],
  2813. "time": "2017-10-23T01:57:42+00:00"
  2814. },
  2815. {
  2816. "name": "ramsey/uuid",
  2817. "version": "3.7.3",
  2818. "source": {
  2819. "type": "git",
  2820. "url": "https://github.com/ramsey/uuid.git",
  2821. "reference": "44abcdad877d9a46685a3a4d221e3b2c4b87cb76"
  2822. },
  2823. "dist": {
  2824. "type": "zip",
  2825. "url": "https://api.github.com/repos/ramsey/uuid/zipball/44abcdad877d9a46685a3a4d221e3b2c4b87cb76",
  2826. "reference": "44abcdad877d9a46685a3a4d221e3b2c4b87cb76",
  2827. "shasum": ""
  2828. },
  2829. "require": {
  2830. "paragonie/random_compat": "^1.0|^2.0",
  2831. "php": "^5.4 || ^7.0"
  2832. },
  2833. "replace": {
  2834. "rhumsaa/uuid": "self.version"
  2835. },
  2836. "require-dev": {
  2837. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  2838. "doctrine/annotations": "~1.2.0",
  2839. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ^2.1",
  2840. "ircmaxell/random-lib": "^1.1",
  2841. "jakub-onderka/php-parallel-lint": "^0.9.0",
  2842. "mockery/mockery": "^0.9.9",
  2843. "moontoast/math": "^1.1",
  2844. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  2845. "phpunit/phpunit": "^4.7|^5.0",
  2846. "squizlabs/php_codesniffer": "^2.3"
  2847. },
  2848. "suggest": {
  2849. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  2850. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  2851. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2852. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  2853. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  2854. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2855. },
  2856. "type": "library",
  2857. "extra": {
  2858. "branch-alias": {
  2859. "dev-master": "3.x-dev"
  2860. }
  2861. },
  2862. "autoload": {
  2863. "psr-4": {
  2864. "Ramsey\\Uuid\\": "src/"
  2865. }
  2866. },
  2867. "notification-url": "https://packagist.org/downloads/",
  2868. "license": [
  2869. "MIT"
  2870. ],
  2871. "authors": [
  2872. {
  2873. "name": "Marijn Huizendveld",
  2874. "email": "marijn.huizendveld@gmail.com"
  2875. },
  2876. {
  2877. "name": "Thibaud Fabre",
  2878. "email": "thibaud@aztech.io"
  2879. },
  2880. {
  2881. "name": "Ben Ramsey",
  2882. "email": "ben@benramsey.com",
  2883. "homepage": "https://benramsey.com"
  2884. }
  2885. ],
  2886. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  2887. "homepage": "https://github.com/ramsey/uuid",
  2888. "keywords": [
  2889. "guid",
  2890. "identifier",
  2891. "uuid"
  2892. ],
  2893. "time": "2018-01-20T00:28:24+00:00"
  2894. },
  2895. {
  2896. "name": "ramsey/uuid-doctrine",
  2897. "version": "1.4.3",
  2898. "source": {
  2899. "type": "git",
  2900. "url": "https://github.com/ramsey/uuid-doctrine.git",
  2901. "reference": "224a55a2605a33a484bdfa4bd209e5bf9ec35e3c"
  2902. },
  2903. "dist": {
  2904. "type": "zip",
  2905. "url": "https://api.github.com/repos/ramsey/uuid-doctrine/zipball/224a55a2605a33a484bdfa4bd209e5bf9ec35e3c",
  2906. "reference": "224a55a2605a33a484bdfa4bd209e5bf9ec35e3c",
  2907. "shasum": ""
  2908. },
  2909. "require": {
  2910. "doctrine/orm": "^2.5",
  2911. "php": "^5.4 || ^7.0",
  2912. "ramsey/uuid": "^3.0"
  2913. },
  2914. "require-dev": {
  2915. "jakub-onderka/php-parallel-lint": "^0.9.0",
  2916. "phpunit/phpunit": "^4.7 || ^5.0",
  2917. "satooshi/php-coveralls": "^0.6.1",
  2918. "squizlabs/php_codesniffer": "^2.3"
  2919. },
  2920. "type": "library",
  2921. "autoload": {
  2922. "psr-4": {
  2923. "Ramsey\\Uuid\\Doctrine\\": "src/"
  2924. }
  2925. },
  2926. "notification-url": "https://packagist.org/downloads/",
  2927. "license": [
  2928. "MIT"
  2929. ],
  2930. "authors": [
  2931. {
  2932. "name": "Marijn Huizendveld",
  2933. "email": "marijn.huizendveld@gmail.com"
  2934. },
  2935. {
  2936. "name": "Ben Ramsey",
  2937. "email": "ben@benramsey.com",
  2938. "homepage": "http://benramsey.com"
  2939. }
  2940. ],
  2941. "description": "Allow the use of a ramsey/uuid UUID as Doctrine field type.",
  2942. "homepage": "https://github.com/ramsey/uuid-doctrine",
  2943. "keywords": [
  2944. "doctrine",
  2945. "guid",
  2946. "identifier",
  2947. "uuid"
  2948. ],
  2949. "time": "2017-11-07T22:09:45+00:00"
  2950. },
  2951. {
  2952. "name": "sabberworm/php-css-parser",
  2953. "version": "8.1.0",
  2954. "source": {
  2955. "type": "git",
  2956. "url": "https://github.com/sabberworm/PHP-CSS-Parser.git",
  2957. "reference": "850cbbcbe7fbb155387a151ea562897a67e242ef"
  2958. },
  2959. "dist": {
  2960. "type": "zip",
  2961. "url": "https://api.github.com/repos/sabberworm/PHP-CSS-Parser/zipball/850cbbcbe7fbb155387a151ea562897a67e242ef",
  2962. "reference": "850cbbcbe7fbb155387a151ea562897a67e242ef",
  2963. "shasum": ""
  2964. },
  2965. "require": {
  2966. "php": ">=5.3.2"
  2967. },
  2968. "require-dev": {
  2969. "phpunit/phpunit": "*"
  2970. },
  2971. "type": "library",
  2972. "autoload": {
  2973. "psr-0": {
  2974. "Sabberworm\\CSS": "lib/"
  2975. }
  2976. },
  2977. "notification-url": "https://packagist.org/downloads/",
  2978. "license": [
  2979. "MIT"
  2980. ],
  2981. "authors": [
  2982. {
  2983. "name": "Raphael Schweikert"
  2984. }
  2985. ],
  2986. "description": "Parser for CSS Files written in PHP",
  2987. "homepage": "http://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  2988. "keywords": [
  2989. "css",
  2990. "parser",
  2991. "stylesheet"
  2992. ],
  2993. "time": "2016-07-19T19:14:21+00:00"
  2994. },
  2995. {
  2996. "name": "sebastian/diff",
  2997. "version": "3.0.1",
  2998. "source": {
  2999. "type": "git",
  3000. "url": "https://github.com/sebastianbergmann/diff.git",
  3001. "reference": "366541b989927187c4ca70490a35615d3fef2dce"
  3002. },
  3003. "dist": {
  3004. "type": "zip",
  3005. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/366541b989927187c4ca70490a35615d3fef2dce",
  3006. "reference": "366541b989927187c4ca70490a35615d3fef2dce",
  3007. "shasum": ""
  3008. },
  3009. "require": {
  3010. "php": "^7.1"
  3011. },
  3012. "require-dev": {
  3013. "phpunit/phpunit": "^7.0",
  3014. "symfony/process": "^2 || ^3.3 || ^4"
  3015. },
  3016. "type": "library",
  3017. "extra": {
  3018. "branch-alias": {
  3019. "dev-master": "3.0-dev"
  3020. }
  3021. },
  3022. "autoload": {
  3023. "classmap": [
  3024. "src/"
  3025. ]
  3026. },
  3027. "notification-url": "https://packagist.org/downloads/",
  3028. "license": [
  3029. "BSD-3-Clause"
  3030. ],
  3031. "authors": [
  3032. {
  3033. "name": "Kore Nordmann",
  3034. "email": "mail@kore-nordmann.de"
  3035. },
  3036. {
  3037. "name": "Sebastian Bergmann",
  3038. "email": "sebastian@phpunit.de"
  3039. }
  3040. ],
  3041. "description": "Diff implementation",
  3042. "homepage": "https://github.com/sebastianbergmann/diff",
  3043. "keywords": [
  3044. "diff",
  3045. "udiff",
  3046. "unidiff",
  3047. "unified diff"
  3048. ],
  3049. "time": "2018-06-10T07:54:39+00:00"
  3050. },
  3051. {
  3052. "name": "sensio/framework-extra-bundle",
  3053. "version": "v5.1.6",
  3054. "source": {
  3055. "type": "git",
  3056. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  3057. "reference": "bf4940572e43af679aaa13be98f3446a1c237bd8"
  3058. },
  3059. "dist": {
  3060. "type": "zip",
  3061. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/bf4940572e43af679aaa13be98f3446a1c237bd8",
  3062. "reference": "bf4940572e43af679aaa13be98f3446a1c237bd8",
  3063. "shasum": ""
  3064. },
  3065. "require": {
  3066. "doctrine/common": "^2.2",
  3067. "symfony/config": "^3.3|^4.0",
  3068. "symfony/dependency-injection": "^3.3|^4.0",
  3069. "symfony/framework-bundle": "^3.3|^4.0",
  3070. "symfony/http-kernel": "^3.3|^4.0"
  3071. },
  3072. "require-dev": {
  3073. "doctrine/doctrine-bundle": "^1.6",
  3074. "doctrine/orm": "^2.5",
  3075. "symfony/browser-kit": "^3.3|^4.0",
  3076. "symfony/dom-crawler": "^3.3|^4.0",
  3077. "symfony/expression-language": "^3.3|^4.0",
  3078. "symfony/finder": "^3.3|^4.0",
  3079. "symfony/phpunit-bridge": "^3.3|^4.0",
  3080. "symfony/psr-http-message-bridge": "^0.3",
  3081. "symfony/security-bundle": "^3.3|^4.0",
  3082. "symfony/twig-bundle": "^3.3|^4.0",
  3083. "symfony/yaml": "^3.3|^4.0",
  3084. "twig/twig": "~1.12|~2.0",
  3085. "zendframework/zend-diactoros": "^1.3"
  3086. },
  3087. "suggest": {
  3088. "symfony/expression-language": "",
  3089. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  3090. "symfony/security-bundle": ""
  3091. },
  3092. "type": "symfony-bundle",
  3093. "extra": {
  3094. "branch-alias": {
  3095. "dev-master": "5.1.x-dev"
  3096. }
  3097. },
  3098. "autoload": {
  3099. "psr-4": {
  3100. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  3101. }
  3102. },
  3103. "notification-url": "https://packagist.org/downloads/",
  3104. "license": [
  3105. "MIT"
  3106. ],
  3107. "authors": [
  3108. {
  3109. "name": "Fabien Potencier",
  3110. "email": "fabien@symfony.com"
  3111. }
  3112. ],
  3113. "description": "This bundle provides a way to configure your controllers with annotations",
  3114. "keywords": [
  3115. "annotations",
  3116. "controllers"
  3117. ],
  3118. "time": "2018-02-14T08:40:54+00:00"
  3119. },
  3120. {
  3121. "name": "swiftmailer/swiftmailer",
  3122. "version": "v6.0.2",
  3123. "source": {
  3124. "type": "git",
  3125. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3126. "reference": "412333372fb6c8ffb65496a2bbd7321af75733fc"
  3127. },
  3128. "dist": {
  3129. "type": "zip",
  3130. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/412333372fb6c8ffb65496a2bbd7321af75733fc",
  3131. "reference": "412333372fb6c8ffb65496a2bbd7321af75733fc",
  3132. "shasum": ""
  3133. },
  3134. "require": {
  3135. "egulias/email-validator": "~2.0",
  3136. "php": ">=7.0.0"
  3137. },
  3138. "require-dev": {
  3139. "mockery/mockery": "~0.9.1",
  3140. "symfony/phpunit-bridge": "~3.3@dev"
  3141. },
  3142. "type": "library",
  3143. "extra": {
  3144. "branch-alias": {
  3145. "dev-master": "6.0-dev"
  3146. }
  3147. },
  3148. "autoload": {
  3149. "files": [
  3150. "lib/swift_required.php"
  3151. ]
  3152. },
  3153. "notification-url": "https://packagist.org/downloads/",
  3154. "license": [
  3155. "MIT"
  3156. ],
  3157. "authors": [
  3158. {
  3159. "name": "Chris Corbyn"
  3160. },
  3161. {
  3162. "name": "Fabien Potencier",
  3163. "email": "fabien@symfony.com"
  3164. }
  3165. ],
  3166. "description": "Swiftmailer, free feature-rich PHP mailer",
  3167. "homepage": "http://swiftmailer.symfony.com",
  3168. "keywords": [
  3169. "email",
  3170. "mail",
  3171. "mailer"
  3172. ],
  3173. "time": "2017-09-30T22:39:41+00:00"
  3174. },
  3175. {
  3176. "name": "symfony/asset",
  3177. "version": "v4.1.1",
  3178. "source": {
  3179. "type": "git",
  3180. "url": "https://github.com/symfony/asset.git",
  3181. "reference": "73358508628c10832e87c3ff18db527d48387afc"
  3182. },
  3183. "dist": {
  3184. "type": "zip",
  3185. "url": "https://api.github.com/repos/symfony/asset/zipball/73358508628c10832e87c3ff18db527d48387afc",
  3186. "reference": "73358508628c10832e87c3ff18db527d48387afc",
  3187. "shasum": ""
  3188. },
  3189. "require": {
  3190. "php": "^7.1.3"
  3191. },
  3192. "require-dev": {
  3193. "symfony/http-foundation": "~3.4|~4.0",
  3194. "symfony/http-kernel": "~3.4|~4.0"
  3195. },
  3196. "suggest": {
  3197. "symfony/http-foundation": ""
  3198. },
  3199. "type": "library",
  3200. "extra": {
  3201. "branch-alias": {
  3202. "dev-master": "4.1-dev"
  3203. }
  3204. },
  3205. "autoload": {
  3206. "psr-4": {
  3207. "Symfony\\Component\\Asset\\": ""
  3208. },
  3209. "exclude-from-classmap": [
  3210. "/Tests/"
  3211. ]
  3212. },
  3213. "notification-url": "https://packagist.org/downloads/",
  3214. "license": [
  3215. "MIT"
  3216. ],
  3217. "authors": [
  3218. {
  3219. "name": "Fabien Potencier",
  3220. "email": "fabien@symfony.com"
  3221. },
  3222. {
  3223. "name": "Symfony Community",
  3224. "homepage": "https://symfony.com/contributors"
  3225. }
  3226. ],
  3227. "description": "Symfony Asset Component",
  3228. "homepage": "https://symfony.com",
  3229. "time": "2018-05-30T07:26:09+00:00"
  3230. },
  3231. {
  3232. "name": "symfony/cache",
  3233. "version": "v4.1.1",
  3234. "source": {
  3235. "type": "git",
  3236. "url": "https://github.com/symfony/cache.git",
  3237. "reference": "be95ef3665747e6ff9d883a8adc87085769009f0"
  3238. },
  3239. "dist": {
  3240. "type": "zip",
  3241. "url": "https://api.github.com/repos/symfony/cache/zipball/be95ef3665747e6ff9d883a8adc87085769009f0",
  3242. "reference": "be95ef3665747e6ff9d883a8adc87085769009f0",
  3243. "shasum": ""
  3244. },
  3245. "require": {
  3246. "php": "^7.1.3",
  3247. "psr/cache": "~1.0",
  3248. "psr/log": "~1.0",
  3249. "psr/simple-cache": "^1.0"
  3250. },
  3251. "conflict": {
  3252. "symfony/var-dumper": "<3.4"
  3253. },
  3254. "provide": {
  3255. "psr/cache-implementation": "1.0",
  3256. "psr/simple-cache-implementation": "1.0"
  3257. },
  3258. "require-dev": {
  3259. "cache/integration-tests": "dev-master",
  3260. "doctrine/cache": "~1.6",
  3261. "doctrine/dbal": "~2.4",
  3262. "predis/predis": "~1.0"
  3263. },
  3264. "type": "library",
  3265. "extra": {
  3266. "branch-alias": {
  3267. "dev-master": "4.1-dev"
  3268. }
  3269. },
  3270. "autoload": {
  3271. "psr-4": {
  3272. "Symfony\\Component\\Cache\\": ""
  3273. },
  3274. "exclude-from-classmap": [
  3275. "/Tests/"
  3276. ]
  3277. },
  3278. "notification-url": "https://packagist.org/downloads/",
  3279. "license": [
  3280. "MIT"
  3281. ],
  3282. "authors": [
  3283. {
  3284. "name": "Nicolas Grekas",
  3285. "email": "p@tchwork.com"
  3286. },
  3287. {
  3288. "name": "Symfony Community",
  3289. "homepage": "https://symfony.com/contributors"
  3290. }
  3291. ],
  3292. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  3293. "homepage": "https://symfony.com",
  3294. "keywords": [
  3295. "caching",
  3296. "psr6"
  3297. ],
  3298. "time": "2018-06-22T08:59:39+00:00"
  3299. },
  3300. {
  3301. "name": "symfony/config",
  3302. "version": "v4.1.1",
  3303. "source": {
  3304. "type": "git",
  3305. "url": "https://github.com/symfony/config.git",
  3306. "reference": "e57e7b573df9d0eaa8c0152768c708ee7ea2b8e5"
  3307. },
  3308. "dist": {
  3309. "type": "zip",
  3310. "url": "https://api.github.com/repos/symfony/config/zipball/e57e7b573df9d0eaa8c0152768c708ee7ea2b8e5",
  3311. "reference": "e57e7b573df9d0eaa8c0152768c708ee7ea2b8e5",
  3312. "shasum": ""
  3313. },
  3314. "require": {
  3315. "php": "^7.1.3",
  3316. "symfony/filesystem": "~3.4|~4.0",
  3317. "symfony/polyfill-ctype": "~1.8"
  3318. },
  3319. "conflict": {
  3320. "symfony/finder": "<3.4"
  3321. },
  3322. "require-dev": {
  3323. "symfony/dependency-injection": "~3.4|~4.0",
  3324. "symfony/event-dispatcher": "~3.4|~4.0",
  3325. "symfony/finder": "~3.4|~4.0",
  3326. "symfony/yaml": "~3.4|~4.0"
  3327. },
  3328. "suggest": {
  3329. "symfony/yaml": "To use the yaml reference dumper"
  3330. },
  3331. "type": "library",
  3332. "extra": {
  3333. "branch-alias": {
  3334. "dev-master": "4.1-dev"
  3335. }
  3336. },
  3337. "autoload": {
  3338. "psr-4": {
  3339. "Symfony\\Component\\Config\\": ""
  3340. },
  3341. "exclude-from-classmap": [
  3342. "/Tests/"
  3343. ]
  3344. },
  3345. "notification-url": "https://packagist.org/downloads/",
  3346. "license": [
  3347. "MIT"
  3348. ],
  3349. "authors": [
  3350. {
  3351. "name": "Fabien Potencier",
  3352. "email": "fabien@symfony.com"
  3353. },
  3354. {
  3355. "name": "Symfony Community",
  3356. "homepage": "https://symfony.com/contributors"
  3357. }
  3358. ],
  3359. "description": "Symfony Config Component",
  3360. "homepage": "https://symfony.com",
  3361. "time": "2018-06-20T11:15:17+00:00"
  3362. },
  3363. {
  3364. "name": "symfony/console",
  3365. "version": "v4.1.1",
  3366. "source": {
  3367. "type": "git",
  3368. "url": "https://github.com/symfony/console.git",
  3369. "reference": "70591cda56b4b47c55776ac78e157c4bb6c8b43f"
  3370. },
  3371. "dist": {
  3372. "type": "zip",
  3373. "url": "https://api.github.com/repos/symfony/console/zipball/70591cda56b4b47c55776ac78e157c4bb6c8b43f",
  3374. "reference": "70591cda56b4b47c55776ac78e157c4bb6c8b43f",
  3375. "shasum": ""
  3376. },
  3377. "require": {
  3378. "php": "^7.1.3",
  3379. "symfony/polyfill-mbstring": "~1.0"
  3380. },
  3381. "conflict": {
  3382. "symfony/dependency-injection": "<3.4",
  3383. "symfony/process": "<3.3"
  3384. },
  3385. "require-dev": {
  3386. "psr/log": "~1.0",
  3387. "symfony/config": "~3.4|~4.0",
  3388. "symfony/dependency-injection": "~3.4|~4.0",
  3389. "symfony/event-dispatcher": "~3.4|~4.0",
  3390. "symfony/lock": "~3.4|~4.0",
  3391. "symfony/process": "~3.4|~4.0"
  3392. },
  3393. "suggest": {
  3394. "psr/log-implementation": "For using the console logger",
  3395. "symfony/event-dispatcher": "",
  3396. "symfony/lock": "",
  3397. "symfony/process": ""
  3398. },
  3399. "type": "library",
  3400. "extra": {
  3401. "branch-alias": {
  3402. "dev-master": "4.1-dev"
  3403. }
  3404. },
  3405. "autoload": {
  3406. "psr-4": {
  3407. "Symfony\\Component\\Console\\": ""
  3408. },
  3409. "exclude-from-classmap": [
  3410. "/Tests/"
  3411. ]
  3412. },
  3413. "notification-url": "https://packagist.org/downloads/",
  3414. "license": [
  3415. "MIT"
  3416. ],
  3417. "authors": [
  3418. {
  3419. "name": "Fabien Potencier",
  3420. "email": "fabien@symfony.com"
  3421. },
  3422. {
  3423. "name": "Symfony Community",
  3424. "homepage": "https://symfony.com/contributors"
  3425. }
  3426. ],
  3427. "description": "Symfony Console Component",
  3428. "homepage": "https://symfony.com",
  3429. "time": "2018-05-31T10:17:53+00:00"
  3430. },
  3431. {
  3432. "name": "symfony/debug",
  3433. "version": "v4.1.1",
  3434. "source": {
  3435. "type": "git",
  3436. "url": "https://github.com/symfony/debug.git",
  3437. "reference": "dbe0fad88046a755dcf9379f2964c61a02f5ae3d"
  3438. },
  3439. "dist": {
  3440. "type": "zip",
  3441. "url": "https://api.github.com/repos/symfony/debug/zipball/dbe0fad88046a755dcf9379f2964c61a02f5ae3d",
  3442. "reference": "dbe0fad88046a755dcf9379f2964c61a02f5ae3d",
  3443. "shasum": ""
  3444. },
  3445. "require": {
  3446. "php": "^7.1.3",
  3447. "psr/log": "~1.0"
  3448. },
  3449. "conflict": {
  3450. "symfony/http-kernel": "<3.4"
  3451. },
  3452. "require-dev": {
  3453. "symfony/http-kernel": "~3.4|~4.0"
  3454. },
  3455. "type": "library",
  3456. "extra": {
  3457. "branch-alias": {
  3458. "dev-master": "4.1-dev"
  3459. }
  3460. },
  3461. "autoload": {
  3462. "psr-4": {
  3463. "Symfony\\Component\\Debug\\": ""
  3464. },
  3465. "exclude-from-classmap": [
  3466. "/Tests/"
  3467. ]
  3468. },
  3469. "notification-url": "https://packagist.org/downloads/",
  3470. "license": [
  3471. "MIT"
  3472. ],
  3473. "authors": [
  3474. {
  3475. "name": "Fabien Potencier",
  3476. "email": "fabien@symfony.com"
  3477. },
  3478. {
  3479. "name": "Symfony Community",
  3480. "homepage": "https://symfony.com/contributors"
  3481. }
  3482. ],
  3483. "description": "Symfony Debug Component",
  3484. "homepage": "https://symfony.com",
  3485. "time": "2018-06-08T09:39:36+00:00"
  3486. },
  3487. {
  3488. "name": "symfony/dependency-injection",
  3489. "version": "v4.1.1",
  3490. "source": {
  3491. "type": "git",
  3492. "url": "https://github.com/symfony/dependency-injection.git",
  3493. "reference": "e761828a85d7dfc00b927f94ccbe1851ce0b6535"
  3494. },
  3495. "dist": {
  3496. "type": "zip",
  3497. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e761828a85d7dfc00b927f94ccbe1851ce0b6535",
  3498. "reference": "e761828a85d7dfc00b927f94ccbe1851ce0b6535",
  3499. "shasum": ""
  3500. },
  3501. "require": {
  3502. "php": "^7.1.3",
  3503. "psr/container": "^1.0"
  3504. },
  3505. "conflict": {
  3506. "symfony/config": "<4.1.1",
  3507. "symfony/finder": "<3.4",
  3508. "symfony/proxy-manager-bridge": "<3.4",
  3509. "symfony/yaml": "<3.4"
  3510. },
  3511. "provide": {
  3512. "psr/container-implementation": "1.0"
  3513. },
  3514. "require-dev": {
  3515. "symfony/config": "~4.1",
  3516. "symfony/expression-language": "~3.4|~4.0",
  3517. "symfony/yaml": "~3.4|~4.0"
  3518. },
  3519. "suggest": {
  3520. "symfony/config": "",
  3521. "symfony/expression-language": "For using expressions in service container configuration",
  3522. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3523. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  3524. "symfony/yaml": ""
  3525. },
  3526. "type": "library",
  3527. "extra": {
  3528. "branch-alias": {
  3529. "dev-master": "4.1-dev"
  3530. }
  3531. },
  3532. "autoload": {
  3533. "psr-4": {
  3534. "Symfony\\Component\\DependencyInjection\\": ""
  3535. },
  3536. "exclude-from-classmap": [
  3537. "/Tests/"
  3538. ]
  3539. },
  3540. "notification-url": "https://packagist.org/downloads/",
  3541. "license": [
  3542. "MIT"
  3543. ],
  3544. "authors": [
  3545. {
  3546. "name": "Fabien Potencier",
  3547. "email": "fabien@symfony.com"
  3548. },
  3549. {
  3550. "name": "Symfony Community",
  3551. "homepage": "https://symfony.com/contributors"
  3552. }
  3553. ],
  3554. "description": "Symfony DependencyInjection Component",
  3555. "homepage": "https://symfony.com",
  3556. "time": "2018-06-25T11:12:43+00:00"
  3557. },
  3558. {
  3559. "name": "symfony/doctrine-bridge",
  3560. "version": "v4.1.1",
  3561. "source": {
  3562. "type": "git",
  3563. "url": "https://github.com/symfony/doctrine-bridge.git",
  3564. "reference": "a7751cc8d949c16366976633678116f85662b989"
  3565. },
  3566. "dist": {
  3567. "type": "zip",
  3568. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/a7751cc8d949c16366976633678116f85662b989",
  3569. "reference": "a7751cc8d949c16366976633678116f85662b989",
  3570. "shasum": ""
  3571. },
  3572. "require": {
  3573. "doctrine/common": "~2.4@stable",
  3574. "php": "^7.1.3",
  3575. "symfony/polyfill-ctype": "~1.8",
  3576. "symfony/polyfill-mbstring": "~1.0"
  3577. },
  3578. "conflict": {
  3579. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3580. "symfony/dependency-injection": "<3.4"
  3581. },
  3582. "require-dev": {
  3583. "doctrine/data-fixtures": "1.0.*",
  3584. "doctrine/dbal": "~2.4",
  3585. "doctrine/orm": "^2.4.5",
  3586. "symfony/dependency-injection": "~3.4|~4.0",
  3587. "symfony/expression-language": "~3.4|~4.0",
  3588. "symfony/form": "~3.4|~4.0",
  3589. "symfony/http-kernel": "~3.4|~4.0",
  3590. "symfony/property-access": "~3.4|~4.0",
  3591. "symfony/property-info": "~3.4|~4.0",
  3592. "symfony/proxy-manager-bridge": "~3.4|~4.0",
  3593. "symfony/security": "~3.4|~4.0",
  3594. "symfony/stopwatch": "~3.4|~4.0",
  3595. "symfony/translation": "~3.4|~4.0",
  3596. "symfony/validator": "~3.4|~4.0"
  3597. },
  3598. "suggest": {
  3599. "doctrine/data-fixtures": "",
  3600. "doctrine/dbal": "",
  3601. "doctrine/orm": "",
  3602. "symfony/form": "",
  3603. "symfony/property-info": "",
  3604. "symfony/validator": ""
  3605. },
  3606. "type": "symfony-bridge",
  3607. "extra": {
  3608. "branch-alias": {
  3609. "dev-master": "4.1-dev"
  3610. }
  3611. },
  3612. "autoload": {
  3613. "psr-4": {
  3614. "Symfony\\Bridge\\Doctrine\\": ""
  3615. },
  3616. "exclude-from-classmap": [
  3617. "/Tests/"
  3618. ]
  3619. },
  3620. "notification-url": "https://packagist.org/downloads/",
  3621. "license": [
  3622. "MIT"
  3623. ],
  3624. "authors": [
  3625. {
  3626. "name": "Fabien Potencier",
  3627. "email": "fabien@symfony.com"
  3628. },
  3629. {
  3630. "name": "Symfony Community",
  3631. "homepage": "https://symfony.com/contributors"
  3632. }
  3633. ],
  3634. "description": "Symfony Doctrine Bridge",
  3635. "homepage": "https://symfony.com",
  3636. "time": "2018-06-25T11:31:22+00:00"
  3637. },
  3638. {
  3639. "name": "symfony/event-dispatcher",
  3640. "version": "v4.1.1",
  3641. "source": {
  3642. "type": "git",
  3643. "url": "https://github.com/symfony/event-dispatcher.git",
  3644. "reference": "2391ed210a239868e7256eb6921b1bd83f3087b5"
  3645. },
  3646. "dist": {
  3647. "type": "zip",
  3648. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2391ed210a239868e7256eb6921b1bd83f3087b5",
  3649. "reference": "2391ed210a239868e7256eb6921b1bd83f3087b5",
  3650. "shasum": ""
  3651. },
  3652. "require": {
  3653. "php": "^7.1.3"
  3654. },
  3655. "conflict": {
  3656. "symfony/dependency-injection": "<3.4"
  3657. },
  3658. "require-dev": {
  3659. "psr/log": "~1.0",
  3660. "symfony/config": "~3.4|~4.0",
  3661. "symfony/dependency-injection": "~3.4|~4.0",
  3662. "symfony/expression-language": "~3.4|~4.0",
  3663. "symfony/stopwatch": "~3.4|~4.0"
  3664. },
  3665. "suggest": {
  3666. "symfony/dependency-injection": "",
  3667. "symfony/http-kernel": ""
  3668. },
  3669. "type": "library",
  3670. "extra": {
  3671. "branch-alias": {
  3672. "dev-master": "4.1-dev"
  3673. }
  3674. },
  3675. "autoload": {
  3676. "psr-4": {
  3677. "Symfony\\Component\\EventDispatcher\\": ""
  3678. },
  3679. "exclude-from-classmap": [
  3680. "/Tests/"
  3681. ]
  3682. },
  3683. "notification-url": "https://packagist.org/downloads/",
  3684. "license": [
  3685. "MIT"
  3686. ],
  3687. "authors": [
  3688. {
  3689. "name": "Fabien Potencier",
  3690. "email": "fabien@symfony.com"
  3691. },
  3692. {
  3693. "name": "Symfony Community",
  3694. "homepage": "https://symfony.com/contributors"
  3695. }
  3696. ],
  3697. "description": "Symfony EventDispatcher Component",
  3698. "homepage": "https://symfony.com",
  3699. "time": "2018-04-06T07:35:57+00:00"
  3700. },
  3701. {
  3702. "name": "symfony/expression-language",
  3703. "version": "v4.1.1",
  3704. "source": {
  3705. "type": "git",
  3706. "url": "https://github.com/symfony/expression-language.git",
  3707. "reference": "81653bbb8e0feff271bebfdea492386f1c75c098"
  3708. },
  3709. "dist": {
  3710. "type": "zip",
  3711. "url": "https://api.github.com/repos/symfony/expression-language/zipball/81653bbb8e0feff271bebfdea492386f1c75c098",
  3712. "reference": "81653bbb8e0feff271bebfdea492386f1c75c098",
  3713. "shasum": ""
  3714. },
  3715. "require": {
  3716. "php": "^7.1.3",
  3717. "symfony/cache": "~3.4|~4.0"
  3718. },
  3719. "type": "library",
  3720. "extra": {
  3721. "branch-alias": {
  3722. "dev-master": "4.1-dev"
  3723. }
  3724. },
  3725. "autoload": {
  3726. "psr-4": {
  3727. "Symfony\\Component\\ExpressionLanguage\\": ""
  3728. },
  3729. "exclude-from-classmap": [
  3730. "/Tests/"
  3731. ]
  3732. },
  3733. "notification-url": "https://packagist.org/downloads/",
  3734. "license": [
  3735. "MIT"
  3736. ],
  3737. "authors": [
  3738. {
  3739. "name": "Fabien Potencier",
  3740. "email": "fabien@symfony.com"
  3741. },
  3742. {
  3743. "name": "Symfony Community",
  3744. "homepage": "https://symfony.com/contributors"
  3745. }
  3746. ],
  3747. "description": "Symfony ExpressionLanguage Component",
  3748. "homepage": "https://symfony.com",
  3749. "time": "2018-06-21T11:15:46+00:00"
  3750. },
  3751. {
  3752. "name": "symfony/filesystem",
  3753. "version": "v4.1.1",
  3754. "source": {
  3755. "type": "git",
  3756. "url": "https://github.com/symfony/filesystem.git",
  3757. "reference": "562bf7005b55fd80d26b582d28e3e10f2dd5ae9c"
  3758. },
  3759. "dist": {
  3760. "type": "zip",
  3761. "url": "https://api.github.com/repos/symfony/filesystem/zipball/562bf7005b55fd80d26b582d28e3e10f2dd5ae9c",
  3762. "reference": "562bf7005b55fd80d26b582d28e3e10f2dd5ae9c",
  3763. "shasum": ""
  3764. },
  3765. "require": {
  3766. "php": "^7.1.3",
  3767. "symfony/polyfill-ctype": "~1.8"
  3768. },
  3769. "type": "library",
  3770. "extra": {
  3771. "branch-alias": {
  3772. "dev-master": "4.1-dev"
  3773. }
  3774. },
  3775. "autoload": {
  3776. "psr-4": {
  3777. "Symfony\\Component\\Filesystem\\": ""
  3778. },
  3779. "exclude-from-classmap": [
  3780. "/Tests/"
  3781. ]
  3782. },
  3783. "notification-url": "https://packagist.org/downloads/",
  3784. "license": [
  3785. "MIT"
  3786. ],
  3787. "authors": [
  3788. {
  3789. "name": "Fabien Potencier",
  3790. "email": "fabien@symfony.com"
  3791. },
  3792. {
  3793. "name": "Symfony Community",
  3794. "homepage": "https://symfony.com/contributors"
  3795. }
  3796. ],
  3797. "description": "Symfony Filesystem Component",
  3798. "homepage": "https://symfony.com",
  3799. "time": "2018-05-30T07:26:09+00:00"
  3800. },
  3801. {
  3802. "name": "symfony/finder",
  3803. "version": "v4.1.1",
  3804. "source": {
  3805. "type": "git",
  3806. "url": "https://github.com/symfony/finder.git",
  3807. "reference": "84714b8417d19e4ba02ea78a41a975b3efaafddb"
  3808. },
  3809. "dist": {
  3810. "type": "zip",
  3811. "url": "https://api.github.com/repos/symfony/finder/zipball/84714b8417d19e4ba02ea78a41a975b3efaafddb",
  3812. "reference": "84714b8417d19e4ba02ea78a41a975b3efaafddb",
  3813. "shasum": ""
  3814. },
  3815. "require": {
  3816. "php": "^7.1.3"
  3817. },
  3818. "type": "library",
  3819. "extra": {
  3820. "branch-alias": {
  3821. "dev-master": "4.1-dev"
  3822. }
  3823. },
  3824. "autoload": {
  3825. "psr-4": {
  3826. "Symfony\\Component\\Finder\\": ""
  3827. },
  3828. "exclude-from-classmap": [
  3829. "/Tests/"
  3830. ]
  3831. },
  3832. "notification-url": "https://packagist.org/downloads/",
  3833. "license": [
  3834. "MIT"
  3835. ],
  3836. "authors": [
  3837. {
  3838. "name": "Fabien Potencier",
  3839. "email": "fabien@symfony.com"
  3840. },
  3841. {
  3842. "name": "Symfony Community",
  3843. "homepage": "https://symfony.com/contributors"
  3844. }
  3845. ],
  3846. "description": "Symfony Finder Component",
  3847. "homepage": "https://symfony.com",
  3848. "time": "2018-06-19T21:38:16+00:00"
  3849. },
  3850. {
  3851. "name": "symfony/flex",
  3852. "version": "v1.0.80",
  3853. "source": {
  3854. "type": "git",
  3855. "url": "https://github.com/symfony/flex.git",
  3856. "reference": "729aee08d62b47224e85b83c97e2824ff7d1735e"
  3857. },
  3858. "dist": {
  3859. "type": "zip",
  3860. "url": "https://api.github.com/repos/symfony/flex/zipball/729aee08d62b47224e85b83c97e2824ff7d1735e",
  3861. "reference": "729aee08d62b47224e85b83c97e2824ff7d1735e",
  3862. "shasum": ""
  3863. },
  3864. "require": {
  3865. "composer-plugin-api": "^1.0",
  3866. "php": "^7.0"
  3867. },
  3868. "require-dev": {
  3869. "composer/composer": "^1.0.2",
  3870. "symfony/phpunit-bridge": "^3.2.8"
  3871. },
  3872. "type": "composer-plugin",
  3873. "extra": {
  3874. "branch-alias": {
  3875. "dev-master": "1.0-dev"
  3876. },
  3877. "class": "Symfony\\Flex\\Flex"
  3878. },
  3879. "autoload": {
  3880. "psr-4": {
  3881. "Symfony\\Flex\\": "src"
  3882. }
  3883. },
  3884. "notification-url": "https://packagist.org/downloads/",
  3885. "license": [
  3886. "MIT"
  3887. ],
  3888. "authors": [
  3889. {
  3890. "name": "Fabien Potencier",
  3891. "email": "fabien.potencier@gmail.com"
  3892. }
  3893. ],
  3894. "time": "2018-05-02T19:08:56+00:00"
  3895. },
  3896. {
  3897. "name": "symfony/form",
  3898. "version": "v4.1.1",
  3899. "source": {
  3900. "type": "git",
  3901. "url": "https://github.com/symfony/form.git",
  3902. "reference": "cf9ed8b1a17b34d52c458352cb0c29838ee5f825"
  3903. },
  3904. "dist": {
  3905. "type": "zip",
  3906. "url": "https://api.github.com/repos/symfony/form/zipball/cf9ed8b1a17b34d52c458352cb0c29838ee5f825",
  3907. "reference": "cf9ed8b1a17b34d52c458352cb0c29838ee5f825",
  3908. "shasum": ""
  3909. },
  3910. "require": {
  3911. "php": "^7.1.3",
  3912. "symfony/event-dispatcher": "~3.4|~4.0",
  3913. "symfony/intl": "~3.4|~4.0",
  3914. "symfony/options-resolver": "~3.4|~4.0",
  3915. "symfony/polyfill-ctype": "~1.8",
  3916. "symfony/polyfill-mbstring": "~1.0",
  3917. "symfony/property-access": "~3.4|~4.0"
  3918. },
  3919. "conflict": {
  3920. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3921. "symfony/dependency-injection": "<3.4",
  3922. "symfony/doctrine-bridge": "<3.4",
  3923. "symfony/framework-bundle": "<3.4",
  3924. "symfony/http-kernel": "<3.4",
  3925. "symfony/twig-bridge": "<3.4.5|<4.0.5,>=4.0"
  3926. },
  3927. "require-dev": {
  3928. "doctrine/collections": "~1.0",
  3929. "symfony/config": "~3.4|~4.0",
  3930. "symfony/console": "~3.4|~4.0",
  3931. "symfony/dependency-injection": "~3.4|~4.0",
  3932. "symfony/http-foundation": "~3.4|~4.0",
  3933. "symfony/http-kernel": "~3.4|~4.0",
  3934. "symfony/security-csrf": "~3.4|~4.0",
  3935. "symfony/translation": "~3.4|~4.0",
  3936. "symfony/validator": "~3.4|~4.0",
  3937. "symfony/var-dumper": "~3.4|~4.0"
  3938. },
  3939. "suggest": {
  3940. "symfony/framework-bundle": "For templating with PHP.",
  3941. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  3942. "symfony/twig-bridge": "For templating with Twig.",
  3943. "symfony/validator": "For form validation."
  3944. },
  3945. "type": "library",
  3946. "extra": {
  3947. "branch-alias": {
  3948. "dev-master": "4.1-dev"
  3949. }
  3950. },
  3951. "autoload": {
  3952. "psr-4": {
  3953. "Symfony\\Component\\Form\\": ""
  3954. },
  3955. "exclude-from-classmap": [
  3956. "/Tests/"
  3957. ]
  3958. },
  3959. "notification-url": "https://packagist.org/downloads/",
  3960. "license": [
  3961. "MIT"
  3962. ],
  3963. "authors": [
  3964. {
  3965. "name": "Fabien Potencier",
  3966. "email": "fabien@symfony.com"
  3967. },
  3968. {
  3969. "name": "Symfony Community",
  3970. "homepage": "https://symfony.com/contributors"
  3971. }
  3972. ],
  3973. "description": "Symfony Form Component",
  3974. "homepage": "https://symfony.com",
  3975. "time": "2018-06-22T08:59:39+00:00"
  3976. },
  3977. {
  3978. "name": "symfony/framework-bundle",
  3979. "version": "v4.1.1",
  3980. "source": {
  3981. "type": "git",
  3982. "url": "https://github.com/symfony/framework-bundle.git",
  3983. "reference": "a34630e9712b23fb0a20cc12fe937a9ddcaacbe8"
  3984. },
  3985. "dist": {
  3986. "type": "zip",
  3987. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/a34630e9712b23fb0a20cc12fe937a9ddcaacbe8",
  3988. "reference": "a34630e9712b23fb0a20cc12fe937a9ddcaacbe8",
  3989. "shasum": ""
  3990. },
  3991. "require": {
  3992. "ext-xml": "*",
  3993. "php": "^7.1.3",
  3994. "symfony/cache": "~3.4|~4.0",
  3995. "symfony/config": "~3.4|~4.0",
  3996. "symfony/dependency-injection": "^4.1.1",
  3997. "symfony/event-dispatcher": "^4.1",
  3998. "symfony/filesystem": "~3.4|~4.0",
  3999. "symfony/finder": "~3.4|~4.0",
  4000. "symfony/http-foundation": "^4.1",
  4001. "symfony/http-kernel": "^4.1",
  4002. "symfony/polyfill-mbstring": "~1.0",
  4003. "symfony/routing": "^4.1"
  4004. },
  4005. "conflict": {
  4006. "phpdocumentor/reflection-docblock": "<3.0",
  4007. "phpdocumentor/type-resolver": "<0.2.1",
  4008. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4009. "symfony/asset": "<3.4",
  4010. "symfony/console": "<3.4",
  4011. "symfony/form": "<4.1",
  4012. "symfony/property-info": "<3.4",
  4013. "symfony/serializer": "<4.1",
  4014. "symfony/stopwatch": "<3.4",
  4015. "symfony/translation": "<3.4",
  4016. "symfony/validator": "<4.1",
  4017. "symfony/workflow": "<4.1"
  4018. },
  4019. "require-dev": {
  4020. "doctrine/annotations": "~1.0",
  4021. "doctrine/cache": "~1.0",
  4022. "fig/link-util": "^1.0",
  4023. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  4024. "symfony/asset": "~3.4|~4.0",
  4025. "symfony/browser-kit": "~3.4|~4.0",
  4026. "symfony/console": "~3.4|~4.0",
  4027. "symfony/css-selector": "~3.4|~4.0",
  4028. "symfony/dom-crawler": "~3.4|~4.0",
  4029. "symfony/expression-language": "~3.4|~4.0",
  4030. "symfony/form": "^4.1",
  4031. "symfony/lock": "~3.4|~4.0",
  4032. "symfony/messenger": "^4.1",
  4033. "symfony/polyfill-intl-icu": "~1.0",
  4034. "symfony/process": "~3.4|~4.0",
  4035. "symfony/property-info": "~3.4|~4.0",
  4036. "symfony/security": "~3.4|~4.0",
  4037. "symfony/security-core": "~3.4|~4.0",
  4038. "symfony/security-csrf": "~3.4|~4.0",
  4039. "symfony/serializer": "^4.1",
  4040. "symfony/stopwatch": "~3.4|~4.0",
  4041. "symfony/templating": "~3.4|~4.0",
  4042. "symfony/translation": "~3.4|~4.0",
  4043. "symfony/validator": "^4.1",
  4044. "symfony/var-dumper": "~3.4|~4.0",
  4045. "symfony/web-link": "~3.4|~4.0",
  4046. "symfony/workflow": "^4.1",
  4047. "symfony/yaml": "~3.4|~4.0",
  4048. "twig/twig": "~1.34|~2.4"
  4049. },
  4050. "suggest": {
  4051. "ext-apcu": "For best performance of the system caches",
  4052. "symfony/console": "For using the console commands",
  4053. "symfony/form": "For using forms",
  4054. "symfony/property-info": "For using the property_info service",
  4055. "symfony/serializer": "For using the serializer service",
  4056. "symfony/validator": "For using validation",
  4057. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  4058. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  4059. },
  4060. "type": "symfony-bundle",
  4061. "extra": {
  4062. "branch-alias": {
  4063. "dev-master": "4.1-dev"
  4064. }
  4065. },
  4066. "autoload": {
  4067. "psr-4": {
  4068. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4069. },
  4070. "exclude-from-classmap": [
  4071. "/Tests/"
  4072. ]
  4073. },
  4074. "notification-url": "https://packagist.org/downloads/",
  4075. "license": [
  4076. "MIT"
  4077. ],
  4078. "authors": [
  4079. {
  4080. "name": "Fabien Potencier",
  4081. "email": "fabien@symfony.com"
  4082. },
  4083. {
  4084. "name": "Symfony Community",
  4085. "homepage": "https://symfony.com/contributors"
  4086. }
  4087. ],
  4088. "description": "Symfony FrameworkBundle",
  4089. "homepage": "https://symfony.com",
  4090. "time": "2018-06-20T21:41:56+00:00"
  4091. },
  4092. {
  4093. "name": "symfony/http-foundation",
  4094. "version": "v4.1.1",
  4095. "source": {
  4096. "type": "git",
  4097. "url": "https://github.com/symfony/http-foundation.git",
  4098. "reference": "4f9c7cf962e635b0b26b14500ac046e07dbef7f3"
  4099. },
  4100. "dist": {
  4101. "type": "zip",
  4102. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4f9c7cf962e635b0b26b14500ac046e07dbef7f3",
  4103. "reference": "4f9c7cf962e635b0b26b14500ac046e07dbef7f3",
  4104. "shasum": ""
  4105. },
  4106. "require": {
  4107. "php": "^7.1.3",
  4108. "symfony/polyfill-mbstring": "~1.1"
  4109. },
  4110. "require-dev": {
  4111. "predis/predis": "~1.0",
  4112. "symfony/expression-language": "~3.4|~4.0"
  4113. },
  4114. "type": "library",
  4115. "extra": {
  4116. "branch-alias": {
  4117. "dev-master": "4.1-dev"
  4118. }
  4119. },
  4120. "autoload": {
  4121. "psr-4": {
  4122. "Symfony\\Component\\HttpFoundation\\": ""
  4123. },
  4124. "exclude-from-classmap": [
  4125. "/Tests/"
  4126. ]
  4127. },
  4128. "notification-url": "https://packagist.org/downloads/",
  4129. "license": [
  4130. "MIT"
  4131. ],
  4132. "authors": [
  4133. {
  4134. "name": "Fabien Potencier",
  4135. "email": "fabien@symfony.com"
  4136. },
  4137. {
  4138. "name": "Symfony Community",
  4139. "homepage": "https://symfony.com/contributors"
  4140. }
  4141. ],
  4142. "description": "Symfony HttpFoundation Component",
  4143. "homepage": "https://symfony.com",
  4144. "time": "2018-06-19T21:38:16+00:00"
  4145. },
  4146. {
  4147. "name": "symfony/http-kernel",
  4148. "version": "v4.1.1",
  4149. "source": {
  4150. "type": "git",
  4151. "url": "https://github.com/symfony/http-kernel.git",
  4152. "reference": "29c094a1c4f8209b7e033f612cbbd69029e38955"
  4153. },
  4154. "dist": {
  4155. "type": "zip",
  4156. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/29c094a1c4f8209b7e033f612cbbd69029e38955",
  4157. "reference": "29c094a1c4f8209b7e033f612cbbd69029e38955",
  4158. "shasum": ""
  4159. },
  4160. "require": {
  4161. "php": "^7.1.3",
  4162. "psr/log": "~1.0",
  4163. "symfony/debug": "~3.4|~4.0",
  4164. "symfony/event-dispatcher": "~4.1",
  4165. "symfony/http-foundation": "^4.1.1",
  4166. "symfony/polyfill-ctype": "~1.8"
  4167. },
  4168. "conflict": {
  4169. "symfony/config": "<3.4",
  4170. "symfony/dependency-injection": "<4.1",
  4171. "symfony/var-dumper": "<4.1.1",
  4172. "twig/twig": "<1.34|<2.4,>=2"
  4173. },
  4174. "provide": {
  4175. "psr/log-implementation": "1.0"
  4176. },
  4177. "require-dev": {
  4178. "psr/cache": "~1.0",
  4179. "symfony/browser-kit": "~3.4|~4.0",
  4180. "symfony/config": "~3.4|~4.0",
  4181. "symfony/console": "~3.4|~4.0",
  4182. "symfony/css-selector": "~3.4|~4.0",
  4183. "symfony/dependency-injection": "^4.1",
  4184. "symfony/dom-crawler": "~3.4|~4.0",
  4185. "symfony/expression-language": "~3.4|~4.0",
  4186. "symfony/finder": "~3.4|~4.0",
  4187. "symfony/process": "~3.4|~4.0",
  4188. "symfony/routing": "~3.4|~4.0",
  4189. "symfony/stopwatch": "~3.4|~4.0",
  4190. "symfony/templating": "~3.4|~4.0",
  4191. "symfony/translation": "~3.4|~4.0",
  4192. "symfony/var-dumper": "^4.1.1"
  4193. },
  4194. "suggest": {
  4195. "symfony/browser-kit": "",
  4196. "symfony/config": "",
  4197. "symfony/console": "",
  4198. "symfony/dependency-injection": "",
  4199. "symfony/var-dumper": ""
  4200. },
  4201. "type": "library",
  4202. "extra": {
  4203. "branch-alias": {
  4204. "dev-master": "4.1-dev"
  4205. }
  4206. },
  4207. "autoload": {
  4208. "psr-4": {
  4209. "Symfony\\Component\\HttpKernel\\": ""
  4210. },
  4211. "exclude-from-classmap": [
  4212. "/Tests/"
  4213. ]
  4214. },
  4215. "notification-url": "https://packagist.org/downloads/",
  4216. "license": [
  4217. "MIT"
  4218. ],
  4219. "authors": [
  4220. {
  4221. "name": "Fabien Potencier",
  4222. "email": "fabien@symfony.com"
  4223. },
  4224. {
  4225. "name": "Symfony Community",
  4226. "homepage": "https://symfony.com/contributors"
  4227. }
  4228. ],
  4229. "description": "Symfony HttpKernel Component",
  4230. "homepage": "https://symfony.com",
  4231. "time": "2018-06-25T13:06:45+00:00"
  4232. },
  4233. {
  4234. "name": "symfony/inflector",
  4235. "version": "v4.1.1",
  4236. "source": {
  4237. "type": "git",
  4238. "url": "https://github.com/symfony/inflector.git",
  4239. "reference": "a55513ebd8aa4843300e325c84d0954a9d1f4ed8"
  4240. },
  4241. "dist": {
  4242. "type": "zip",
  4243. "url": "https://api.github.com/repos/symfony/inflector/zipball/a55513ebd8aa4843300e325c84d0954a9d1f4ed8",
  4244. "reference": "a55513ebd8aa4843300e325c84d0954a9d1f4ed8",
  4245. "shasum": ""
  4246. },
  4247. "require": {
  4248. "php": "^7.1.3",
  4249. "symfony/polyfill-ctype": "~1.8"
  4250. },
  4251. "type": "library",
  4252. "extra": {
  4253. "branch-alias": {
  4254. "dev-master": "4.1-dev"
  4255. }
  4256. },
  4257. "autoload": {
  4258. "psr-4": {
  4259. "Symfony\\Component\\Inflector\\": ""
  4260. },
  4261. "exclude-from-classmap": [
  4262. "/Tests/"
  4263. ]
  4264. },
  4265. "notification-url": "https://packagist.org/downloads/",
  4266. "license": [
  4267. "MIT"
  4268. ],
  4269. "authors": [
  4270. {
  4271. "name": "Bernhard Schussek",
  4272. "email": "bschussek@gmail.com"
  4273. },
  4274. {
  4275. "name": "Symfony Community",
  4276. "homepage": "https://symfony.com/contributors"
  4277. }
  4278. ],
  4279. "description": "Symfony Inflector Component",
  4280. "homepage": "https://symfony.com",
  4281. "keywords": [
  4282. "inflection",
  4283. "pluralize",
  4284. "singularize",
  4285. "string",
  4286. "symfony",
  4287. "words"
  4288. ],
  4289. "time": "2018-05-01T23:02:13+00:00"
  4290. },
  4291. {
  4292. "name": "symfony/intl",
  4293. "version": "v4.1.1",
  4294. "source": {
  4295. "type": "git",
  4296. "url": "https://github.com/symfony/intl.git",
  4297. "reference": "cb21b901892c0d637f9c2f50860ed2fe29ce4b55"
  4298. },
  4299. "dist": {
  4300. "type": "zip",
  4301. "url": "https://api.github.com/repos/symfony/intl/zipball/cb21b901892c0d637f9c2f50860ed2fe29ce4b55",
  4302. "reference": "cb21b901892c0d637f9c2f50860ed2fe29ce4b55",
  4303. "shasum": ""
  4304. },
  4305. "require": {
  4306. "php": "^7.1.3",
  4307. "symfony/polyfill-intl-icu": "~1.0"
  4308. },
  4309. "require-dev": {
  4310. "symfony/filesystem": "~3.4|~4.0"
  4311. },
  4312. "suggest": {
  4313. "ext-intl": "to use the component with locales other than \"en\""
  4314. },
  4315. "type": "library",
  4316. "extra": {
  4317. "branch-alias": {
  4318. "dev-master": "4.1-dev"
  4319. }
  4320. },
  4321. "autoload": {
  4322. "psr-4": {
  4323. "Symfony\\Component\\Intl\\": ""
  4324. },
  4325. "classmap": [
  4326. "Resources/stubs"
  4327. ],
  4328. "exclude-from-classmap": [
  4329. "/Tests/"
  4330. ]
  4331. },
  4332. "notification-url": "https://packagist.org/downloads/",
  4333. "license": [
  4334. "MIT"
  4335. ],
  4336. "authors": [
  4337. {
  4338. "name": "Bernhard Schussek",
  4339. "email": "bschussek@gmail.com"
  4340. },
  4341. {
  4342. "name": "Eriksen Costa",
  4343. "email": "eriksen.costa@infranology.com.br"
  4344. },
  4345. {
  4346. "name": "Igor Wiedler",
  4347. "email": "igor@wiedler.ch"
  4348. },
  4349. {
  4350. "name": "Symfony Community",
  4351. "homepage": "https://symfony.com/contributors"
  4352. }
  4353. ],
  4354. "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.",
  4355. "homepage": "https://symfony.com",
  4356. "keywords": [
  4357. "i18n",
  4358. "icu",
  4359. "internationalization",
  4360. "intl",
  4361. "l10n",
  4362. "localization"
  4363. ],
  4364. "time": "2018-06-25T11:12:43+00:00"
  4365. },
  4366. {
  4367. "name": "symfony/monolog-bridge",
  4368. "version": "v4.1.1",
  4369. "source": {
  4370. "type": "git",
  4371. "url": "https://github.com/symfony/monolog-bridge.git",
  4372. "reference": "0a7cac4e6f2eb72428367893d6d2fc2883b4aeba"
  4373. },
  4374. "dist": {
  4375. "type": "zip",
  4376. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/0a7cac4e6f2eb72428367893d6d2fc2883b4aeba",
  4377. "reference": "0a7cac4e6f2eb72428367893d6d2fc2883b4aeba",
  4378. "shasum": ""
  4379. },
  4380. "require": {
  4381. "monolog/monolog": "~1.19",
  4382. "php": "^7.1.3",
  4383. "symfony/http-kernel": "~3.4|~4.0"
  4384. },
  4385. "conflict": {
  4386. "symfony/http-foundation": "<3.4"
  4387. },
  4388. "require-dev": {
  4389. "symfony/console": "~3.4|~4.0",
  4390. "symfony/event-dispatcher": "~3.4|~4.0",
  4391. "symfony/security-core": "~3.4|~4.0",
  4392. "symfony/var-dumper": "~3.4|~4.0"
  4393. },
  4394. "suggest": {
  4395. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings. You need version ~2.3 of the console for it.",
  4396. "symfony/event-dispatcher": "Needed when using log messages in console commands.",
  4397. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  4398. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  4399. },
  4400. "type": "symfony-bridge",
  4401. "extra": {
  4402. "branch-alias": {
  4403. "dev-master": "4.1-dev"
  4404. }
  4405. },
  4406. "autoload": {
  4407. "psr-4": {
  4408. "Symfony\\Bridge\\Monolog\\": ""
  4409. },
  4410. "exclude-from-classmap": [
  4411. "/Tests/"
  4412. ]
  4413. },
  4414. "notification-url": "https://packagist.org/downloads/",
  4415. "license": [
  4416. "MIT"
  4417. ],
  4418. "authors": [
  4419. {
  4420. "name": "Fabien Potencier",
  4421. "email": "fabien@symfony.com"
  4422. },
  4423. {
  4424. "name": "Symfony Community",
  4425. "homepage": "https://symfony.com/contributors"
  4426. }
  4427. ],
  4428. "description": "Symfony Monolog Bridge",
  4429. "homepage": "https://symfony.com",
  4430. "time": "2018-05-31T10:17:53+00:00"
  4431. },
  4432. {
  4433. "name": "symfony/monolog-bundle",
  4434. "version": "v3.3.0",
  4435. "source": {
  4436. "type": "git",
  4437. "url": "https://github.com/symfony/monolog-bundle.git",
  4438. "reference": "8204f3cd7c1bd6a6e2955c0a34475243a7bd9802"
  4439. },
  4440. "dist": {
  4441. "type": "zip",
  4442. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/8204f3cd7c1bd6a6e2955c0a34475243a7bd9802",
  4443. "reference": "8204f3cd7c1bd6a6e2955c0a34475243a7bd9802",
  4444. "shasum": ""
  4445. },
  4446. "require": {
  4447. "monolog/monolog": "~1.22",
  4448. "php": ">=5.6",
  4449. "symfony/config": "~2.7|~3.3|~4.0",
  4450. "symfony/dependency-injection": "~2.7|~3.4.10|^4.0.10",
  4451. "symfony/http-kernel": "~2.7|~3.3|~4.0",
  4452. "symfony/monolog-bridge": "~2.7|~3.3|~4.0"
  4453. },
  4454. "require-dev": {
  4455. "symfony/console": "~2.7|~3.3|~4.0",
  4456. "symfony/phpunit-bridge": "^3.3|^4.0",
  4457. "symfony/yaml": "~2.7|~3.3|~4.0"
  4458. },
  4459. "type": "symfony-bundle",
  4460. "extra": {
  4461. "branch-alias": {
  4462. "dev-master": "3.x-dev"
  4463. }
  4464. },
  4465. "autoload": {
  4466. "psr-4": {
  4467. "Symfony\\Bundle\\MonologBundle\\": ""
  4468. },
  4469. "exclude-from-classmap": [
  4470. "/Tests/"
  4471. ]
  4472. },
  4473. "notification-url": "https://packagist.org/downloads/",
  4474. "license": [
  4475. "MIT"
  4476. ],
  4477. "authors": [
  4478. {
  4479. "name": "Symfony Community",
  4480. "homepage": "http://symfony.com/contributors"
  4481. },
  4482. {
  4483. "name": "Fabien Potencier",
  4484. "email": "fabien@symfony.com"
  4485. }
  4486. ],
  4487. "description": "Symfony MonologBundle",
  4488. "homepage": "http://symfony.com",
  4489. "keywords": [
  4490. "log",
  4491. "logging"
  4492. ],
  4493. "time": "2018-06-04T05:55:43+00:00"
  4494. },
  4495. {
  4496. "name": "symfony/options-resolver",
  4497. "version": "v4.1.1",
  4498. "source": {
  4499. "type": "git",
  4500. "url": "https://github.com/symfony/options-resolver.git",
  4501. "reference": "45cdcc8a96ef92b43a50723e6d1f5f83096e8cef"
  4502. },
  4503. "dist": {
  4504. "type": "zip",
  4505. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/45cdcc8a96ef92b43a50723e6d1f5f83096e8cef",
  4506. "reference": "45cdcc8a96ef92b43a50723e6d1f5f83096e8cef",
  4507. "shasum": ""
  4508. },
  4509. "require": {
  4510. "php": "^7.1.3"
  4511. },
  4512. "type": "library",
  4513. "extra": {
  4514. "branch-alias": {
  4515. "dev-master": "4.1-dev"
  4516. }
  4517. },
  4518. "autoload": {
  4519. "psr-4": {
  4520. "Symfony\\Component\\OptionsResolver\\": ""
  4521. },
  4522. "exclude-from-classmap": [
  4523. "/Tests/"
  4524. ]
  4525. },
  4526. "notification-url": "https://packagist.org/downloads/",
  4527. "license": [
  4528. "MIT"
  4529. ],
  4530. "authors": [
  4531. {
  4532. "name": "Fabien Potencier",
  4533. "email": "fabien@symfony.com"
  4534. },
  4535. {
  4536. "name": "Symfony Community",
  4537. "homepage": "https://symfony.com/contributors"
  4538. }
  4539. ],
  4540. "description": "Symfony OptionsResolver Component",
  4541. "homepage": "https://symfony.com",
  4542. "keywords": [
  4543. "config",
  4544. "configuration",
  4545. "options"
  4546. ],
  4547. "time": "2018-05-31T10:17:53+00:00"
  4548. },
  4549. {
  4550. "name": "symfony/orm-pack",
  4551. "version": "v1.0.5",
  4552. "source": {
  4553. "type": "git",
  4554. "url": "https://github.com/symfony/orm-pack.git",
  4555. "reference": "1b58f752cd917a08c9c8df020781d9c46a2275b1"
  4556. },
  4557. "dist": {
  4558. "type": "zip",
  4559. "url": "https://api.github.com/repos/symfony/orm-pack/zipball/1b58f752cd917a08c9c8df020781d9c46a2275b1",
  4560. "reference": "1b58f752cd917a08c9c8df020781d9c46a2275b1",
  4561. "shasum": ""
  4562. },
  4563. "require": {
  4564. "doctrine/doctrine-bundle": "^1.6.10",
  4565. "doctrine/doctrine-migrations-bundle": "^1.3",
  4566. "doctrine/orm": "^2.5.11",
  4567. "php": "^7.0"
  4568. },
  4569. "type": "symfony-pack",
  4570. "notification-url": "https://packagist.org/downloads/",
  4571. "license": [
  4572. "MIT"
  4573. ],
  4574. "description": "A pack for the Doctrine ORM",
  4575. "time": "2017-12-12T01:47:50+00:00"
  4576. },
  4577. {
  4578. "name": "symfony/polyfill-ctype",
  4579. "version": "v1.8.0",
  4580. "source": {
  4581. "type": "git",
  4582. "url": "https://github.com/symfony/polyfill-ctype.git",
  4583. "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae"
  4584. },
  4585. "dist": {
  4586. "type": "zip",
  4587. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/7cc359f1b7b80fc25ed7796be7d96adc9b354bae",
  4588. "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae",
  4589. "shasum": ""
  4590. },
  4591. "require": {
  4592. "php": ">=5.3.3"
  4593. },
  4594. "type": "library",
  4595. "extra": {
  4596. "branch-alias": {
  4597. "dev-master": "1.8-dev"
  4598. }
  4599. },
  4600. "autoload": {
  4601. "psr-4": {
  4602. "Symfony\\Polyfill\\Ctype\\": ""
  4603. },
  4604. "files": [
  4605. "bootstrap.php"
  4606. ]
  4607. },
  4608. "notification-url": "https://packagist.org/downloads/",
  4609. "license": [
  4610. "MIT"
  4611. ],
  4612. "authors": [
  4613. {
  4614. "name": "Symfony Community",
  4615. "homepage": "https://symfony.com/contributors"
  4616. },
  4617. {
  4618. "name": "Gert de Pagter",
  4619. "email": "BackEndTea@gmail.com"
  4620. }
  4621. ],
  4622. "description": "Symfony polyfill for ctype functions",
  4623. "homepage": "https://symfony.com",
  4624. "keywords": [
  4625. "compatibility",
  4626. "ctype",
  4627. "polyfill",
  4628. "portable"
  4629. ],
  4630. "time": "2018-04-30T19:57:29+00:00"
  4631. },
  4632. {
  4633. "name": "symfony/polyfill-intl-grapheme",
  4634. "version": "v1.8.0",
  4635. "source": {
  4636. "type": "git",
  4637. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4638. "reference": "f30a9fb355ef8cc7411caf8da7c59b4e2db137fe"
  4639. },
  4640. "dist": {
  4641. "type": "zip",
  4642. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/f30a9fb355ef8cc7411caf8da7c59b4e2db137fe",
  4643. "reference": "f30a9fb355ef8cc7411caf8da7c59b4e2db137fe",
  4644. "shasum": ""
  4645. },
  4646. "require": {
  4647. "php": ">=5.3.3"
  4648. },
  4649. "suggest": {
  4650. "ext-intl": "For best performance"
  4651. },
  4652. "type": "library",
  4653. "extra": {
  4654. "branch-alias": {
  4655. "dev-master": "1.8-dev"
  4656. }
  4657. },
  4658. "autoload": {
  4659. "psr-4": {
  4660. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4661. },
  4662. "files": [
  4663. "bootstrap.php"
  4664. ]
  4665. },
  4666. "notification-url": "https://packagist.org/downloads/",
  4667. "license": [
  4668. "MIT"
  4669. ],
  4670. "authors": [
  4671. {
  4672. "name": "Nicolas Grekas",
  4673. "email": "p@tchwork.com"
  4674. },
  4675. {
  4676. "name": "Symfony Community",
  4677. "homepage": "https://symfony.com/contributors"
  4678. }
  4679. ],
  4680. "description": "Symfony polyfill for intl's grapheme_* functions",
  4681. "homepage": "https://symfony.com",
  4682. "keywords": [
  4683. "compatibility",
  4684. "grapheme",
  4685. "intl",
  4686. "polyfill",
  4687. "portable",
  4688. "shim"
  4689. ],
  4690. "time": "2018-04-26T10:06:28+00:00"
  4691. },
  4692. {
  4693. "name": "symfony/polyfill-intl-icu",
  4694. "version": "v1.8.0",
  4695. "source": {
  4696. "type": "git",
  4697. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4698. "reference": "80ee17ae83c10cd513e5144f91a73607a21edb4e"
  4699. },
  4700. "dist": {
  4701. "type": "zip",
  4702. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/80ee17ae83c10cd513e5144f91a73607a21edb4e",
  4703. "reference": "80ee17ae83c10cd513e5144f91a73607a21edb4e",
  4704. "shasum": ""
  4705. },
  4706. "require": {
  4707. "php": ">=5.3.3",
  4708. "symfony/intl": "~2.3|~3.0|~4.0"
  4709. },
  4710. "suggest": {
  4711. "ext-intl": "For best performance"
  4712. },
  4713. "type": "library",
  4714. "extra": {
  4715. "branch-alias": {
  4716. "dev-master": "1.8-dev"
  4717. }
  4718. },
  4719. "autoload": {
  4720. "files": [
  4721. "bootstrap.php"
  4722. ]
  4723. },
  4724. "notification-url": "https://packagist.org/downloads/",
  4725. "license": [
  4726. "MIT"
  4727. ],
  4728. "authors": [
  4729. {
  4730. "name": "Nicolas Grekas",
  4731. "email": "p@tchwork.com"
  4732. },
  4733. {
  4734. "name": "Symfony Community",
  4735. "homepage": "https://symfony.com/contributors"
  4736. }
  4737. ],
  4738. "description": "Symfony polyfill for intl's ICU-related data and classes",
  4739. "homepage": "https://symfony.com",
  4740. "keywords": [
  4741. "compatibility",
  4742. "icu",
  4743. "intl",
  4744. "polyfill",
  4745. "portable",
  4746. "shim"
  4747. ],
  4748. "time": "2018-04-25T14:53:50+00:00"
  4749. },
  4750. {
  4751. "name": "symfony/polyfill-mbstring",
  4752. "version": "v1.8.0",
  4753. "source": {
  4754. "type": "git",
  4755. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4756. "reference": "3296adf6a6454a050679cde90f95350ad604b171"
  4757. },
  4758. "dist": {
  4759. "type": "zip",
  4760. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/3296adf6a6454a050679cde90f95350ad604b171",
  4761. "reference": "3296adf6a6454a050679cde90f95350ad604b171",
  4762. "shasum": ""
  4763. },
  4764. "require": {
  4765. "php": ">=5.3.3"
  4766. },
  4767. "suggest": {
  4768. "ext-mbstring": "For best performance"
  4769. },
  4770. "type": "library",
  4771. "extra": {
  4772. "branch-alias": {
  4773. "dev-master": "1.8-dev"
  4774. }
  4775. },
  4776. "autoload": {
  4777. "psr-4": {
  4778. "Symfony\\Polyfill\\Mbstring\\": ""
  4779. },
  4780. "files": [
  4781. "bootstrap.php"
  4782. ]
  4783. },
  4784. "notification-url": "https://packagist.org/downloads/",
  4785. "license": [
  4786. "MIT"
  4787. ],
  4788. "authors": [
  4789. {
  4790. "name": "Nicolas Grekas",
  4791. "email": "p@tchwork.com"
  4792. },
  4793. {
  4794. "name": "Symfony Community",
  4795. "homepage": "https://symfony.com/contributors"
  4796. }
  4797. ],
  4798. "description": "Symfony polyfill for the Mbstring extension",
  4799. "homepage": "https://symfony.com",
  4800. "keywords": [
  4801. "compatibility",
  4802. "mbstring",
  4803. "polyfill",
  4804. "portable",
  4805. "shim"
  4806. ],
  4807. "time": "2018-04-26T10:06:28+00:00"
  4808. },
  4809. {
  4810. "name": "symfony/process",
  4811. "version": "v4.1.1",
  4812. "source": {
  4813. "type": "git",
  4814. "url": "https://github.com/symfony/process.git",
  4815. "reference": "1d1677391ecf00d1c5b9482d6050c0c27aa3ac3a"
  4816. },
  4817. "dist": {
  4818. "type": "zip",
  4819. "url": "https://api.github.com/repos/symfony/process/zipball/1d1677391ecf00d1c5b9482d6050c0c27aa3ac3a",
  4820. "reference": "1d1677391ecf00d1c5b9482d6050c0c27aa3ac3a",
  4821. "shasum": ""
  4822. },
  4823. "require": {
  4824. "php": "^7.1.3"
  4825. },
  4826. "type": "library",
  4827. "extra": {
  4828. "branch-alias": {
  4829. "dev-master": "4.1-dev"
  4830. }
  4831. },
  4832. "autoload": {
  4833. "psr-4": {
  4834. "Symfony\\Component\\Process\\": ""
  4835. },
  4836. "exclude-from-classmap": [
  4837. "/Tests/"
  4838. ]
  4839. },
  4840. "notification-url": "https://packagist.org/downloads/",
  4841. "license": [
  4842. "MIT"
  4843. ],
  4844. "authors": [
  4845. {
  4846. "name": "Fabien Potencier",
  4847. "email": "fabien@symfony.com"
  4848. },
  4849. {
  4850. "name": "Symfony Community",
  4851. "homepage": "https://symfony.com/contributors"
  4852. }
  4853. ],
  4854. "description": "Symfony Process Component",
  4855. "homepage": "https://symfony.com",
  4856. "time": "2018-05-31T10:17:53+00:00"
  4857. },
  4858. {
  4859. "name": "symfony/property-access",
  4860. "version": "v4.1.1",
  4861. "source": {
  4862. "type": "git",
  4863. "url": "https://github.com/symfony/property-access.git",
  4864. "reference": "f957d37eb476c9442a0c684b0cd0dd1fb38cb74a"
  4865. },
  4866. "dist": {
  4867. "type": "zip",
  4868. "url": "https://api.github.com/repos/symfony/property-access/zipball/f957d37eb476c9442a0c684b0cd0dd1fb38cb74a",
  4869. "reference": "f957d37eb476c9442a0c684b0cd0dd1fb38cb74a",
  4870. "shasum": ""
  4871. },
  4872. "require": {
  4873. "php": "^7.1.3",
  4874. "symfony/inflector": "~3.4|~4.0"
  4875. },
  4876. "require-dev": {
  4877. "symfony/cache": "~3.4|~4.0"
  4878. },
  4879. "suggest": {
  4880. "psr/cache-implementation": "To cache access methods."
  4881. },
  4882. "type": "library",
  4883. "extra": {
  4884. "branch-alias": {
  4885. "dev-master": "4.1-dev"
  4886. }
  4887. },
  4888. "autoload": {
  4889. "psr-4": {
  4890. "Symfony\\Component\\PropertyAccess\\": ""
  4891. },
  4892. "exclude-from-classmap": [
  4893. "/Tests/"
  4894. ]
  4895. },
  4896. "notification-url": "https://packagist.org/downloads/",
  4897. "license": [
  4898. "MIT"
  4899. ],
  4900. "authors": [
  4901. {
  4902. "name": "Fabien Potencier",
  4903. "email": "fabien@symfony.com"
  4904. },
  4905. {
  4906. "name": "Symfony Community",
  4907. "homepage": "https://symfony.com/contributors"
  4908. }
  4909. ],
  4910. "description": "Symfony PropertyAccess Component",
  4911. "homepage": "https://symfony.com",
  4912. "keywords": [
  4913. "access",
  4914. "array",
  4915. "extraction",
  4916. "index",
  4917. "injection",
  4918. "object",
  4919. "property",
  4920. "property path",
  4921. "reflection"
  4922. ],
  4923. "time": "2018-05-30T07:26:09+00:00"
  4924. },
  4925. {
  4926. "name": "symfony/property-info",
  4927. "version": "v4.1.1",
  4928. "source": {
  4929. "type": "git",
  4930. "url": "https://github.com/symfony/property-info.git",
  4931. "reference": "724cca5ae45760156029f14d2e293a281fab89e0"
  4932. },
  4933. "dist": {
  4934. "type": "zip",
  4935. "url": "https://api.github.com/repos/symfony/property-info/zipball/724cca5ae45760156029f14d2e293a281fab89e0",
  4936. "reference": "724cca5ae45760156029f14d2e293a281fab89e0",
  4937. "shasum": ""
  4938. },
  4939. "require": {
  4940. "php": "^7.1.3",
  4941. "symfony/inflector": "~3.4|~4.0"
  4942. },
  4943. "conflict": {
  4944. "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2",
  4945. "phpdocumentor/type-resolver": "<0.2.1",
  4946. "symfony/dependency-injection": "<3.4"
  4947. },
  4948. "require-dev": {
  4949. "doctrine/annotations": "~1.0",
  4950. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  4951. "symfony/cache": "~3.4|~4.0",
  4952. "symfony/dependency-injection": "~3.4|~4.0",
  4953. "symfony/serializer": "~3.4|~4.0"
  4954. },
  4955. "suggest": {
  4956. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  4957. "psr/cache-implementation": "To cache results",
  4958. "symfony/doctrine-bridge": "To use Doctrine metadata",
  4959. "symfony/serializer": "To use Serializer metadata"
  4960. },
  4961. "type": "library",
  4962. "extra": {
  4963. "branch-alias": {
  4964. "dev-master": "4.1-dev"
  4965. }
  4966. },
  4967. "autoload": {
  4968. "psr-4": {
  4969. "Symfony\\Component\\PropertyInfo\\": ""
  4970. },
  4971. "exclude-from-classmap": [
  4972. "/Tests/"
  4973. ]
  4974. },
  4975. "notification-url": "https://packagist.org/downloads/",
  4976. "license": [
  4977. "MIT"
  4978. ],
  4979. "authors": [
  4980. {
  4981. "name": "Kévin Dunglas",
  4982. "email": "dunglas@gmail.com"
  4983. },
  4984. {
  4985. "name": "Symfony Community",
  4986. "homepage": "https://symfony.com/contributors"
  4987. }
  4988. ],
  4989. "description": "Symfony Property Info Component",
  4990. "homepage": "https://symfony.com",
  4991. "keywords": [
  4992. "doctrine",
  4993. "phpdoc",
  4994. "property",
  4995. "symfony",
  4996. "type",
  4997. "validator"
  4998. ],
  4999. "time": "2018-05-16T14:33:22+00:00"
  5000. },
  5001. {
  5002. "name": "symfony/requirements-checker",
  5003. "version": "v1.1.2",
  5004. "source": {
  5005. "type": "git",
  5006. "url": "https://github.com/symfony/requirements-checker.git",
  5007. "reference": "a4c66b5f2633a022269b57a16478a4ea3bfd89ab"
  5008. },
  5009. "dist": {
  5010. "type": "zip",
  5011. "url": "https://api.github.com/repos/symfony/requirements-checker/zipball/a4c66b5f2633a022269b57a16478a4ea3bfd89ab",
  5012. "reference": "a4c66b5f2633a022269b57a16478a4ea3bfd89ab",
  5013. "shasum": ""
  5014. },
  5015. "require": {
  5016. "php": ">=5.3.9"
  5017. },
  5018. "bin": [
  5019. "bin/requirements-checker"
  5020. ],
  5021. "type": "library",
  5022. "extra": {
  5023. "branch-alias": {
  5024. "dev-master": "1.1.x-dev"
  5025. }
  5026. },
  5027. "autoload": {
  5028. "psr-4": {
  5029. "Symfony\\Requirements\\": "src/"
  5030. }
  5031. },
  5032. "notification-url": "https://packagist.org/downloads/",
  5033. "license": [
  5034. "MIT"
  5035. ],
  5036. "authors": [
  5037. {
  5038. "name": "Fabien Potencier",
  5039. "email": "fabien@symfony.com"
  5040. }
  5041. ],
  5042. "description": "Check Symfony requirements and give recommendations",
  5043. "keywords": [
  5044. "configuration",
  5045. "distribution"
  5046. ],
  5047. "time": "2018-06-07T06:14:20+00:00"
  5048. },
  5049. {
  5050. "name": "symfony/routing",
  5051. "version": "v4.1.1",
  5052. "source": {
  5053. "type": "git",
  5054. "url": "https://github.com/symfony/routing.git",
  5055. "reference": "b38b9797327b26ea2e4146a40e6e2dc9820a6932"
  5056. },
  5057. "dist": {
  5058. "type": "zip",
  5059. "url": "https://api.github.com/repos/symfony/routing/zipball/b38b9797327b26ea2e4146a40e6e2dc9820a6932",
  5060. "reference": "b38b9797327b26ea2e4146a40e6e2dc9820a6932",
  5061. "shasum": ""
  5062. },
  5063. "require": {
  5064. "php": "^7.1.3"
  5065. },
  5066. "conflict": {
  5067. "symfony/config": "<3.4",
  5068. "symfony/dependency-injection": "<3.4",
  5069. "symfony/yaml": "<3.4"
  5070. },
  5071. "require-dev": {
  5072. "doctrine/annotations": "~1.0",
  5073. "psr/log": "~1.0",
  5074. "symfony/config": "~3.4|~4.0",
  5075. "symfony/dependency-injection": "~3.4|~4.0",
  5076. "symfony/expression-language": "~3.4|~4.0",
  5077. "symfony/http-foundation": "~3.4|~4.0",
  5078. "symfony/yaml": "~3.4|~4.0"
  5079. },
  5080. "suggest": {
  5081. "doctrine/annotations": "For using the annotation loader",
  5082. "symfony/config": "For using the all-in-one router or any loader",
  5083. "symfony/dependency-injection": "For loading routes from a service",
  5084. "symfony/expression-language": "For using expression matching",
  5085. "symfony/http-foundation": "For using a Symfony Request object",
  5086. "symfony/yaml": "For using the YAML loader"
  5087. },
  5088. "type": "library",
  5089. "extra": {
  5090. "branch-alias": {
  5091. "dev-master": "4.1-dev"
  5092. }
  5093. },
  5094. "autoload": {
  5095. "psr-4": {
  5096. "Symfony\\Component\\Routing\\": ""
  5097. },
  5098. "exclude-from-classmap": [
  5099. "/Tests/"
  5100. ]
  5101. },
  5102. "notification-url": "https://packagist.org/downloads/",
  5103. "license": [
  5104. "MIT"
  5105. ],
  5106. "authors": [
  5107. {
  5108. "name": "Fabien Potencier",
  5109. "email": "fabien@symfony.com"
  5110. },
  5111. {
  5112. "name": "Symfony Community",
  5113. "homepage": "https://symfony.com/contributors"
  5114. }
  5115. ],
  5116. "description": "Symfony Routing Component",
  5117. "homepage": "https://symfony.com",
  5118. "keywords": [
  5119. "router",
  5120. "routing",
  5121. "uri",
  5122. "url"
  5123. ],
  5124. "time": "2018-06-19T21:38:16+00:00"
  5125. },
  5126. {
  5127. "name": "symfony/security",
  5128. "version": "v4.1.1",
  5129. "source": {
  5130. "type": "git",
  5131. "url": "https://github.com/symfony/security.git",
  5132. "reference": "fa46e38ff4dea2d3949630efd33ed73e2ac0850a"
  5133. },
  5134. "dist": {
  5135. "type": "zip",
  5136. "url": "https://api.github.com/repos/symfony/security/zipball/fa46e38ff4dea2d3949630efd33ed73e2ac0850a",
  5137. "reference": "fa46e38ff4dea2d3949630efd33ed73e2ac0850a",
  5138. "shasum": ""
  5139. },
  5140. "require": {
  5141. "php": "^7.1.3",
  5142. "symfony/event-dispatcher": "~3.4|~4.0",
  5143. "symfony/http-foundation": "~3.4|~4.0",
  5144. "symfony/http-kernel": "~3.4|~4.0",
  5145. "symfony/property-access": "~3.4|~4.0"
  5146. },
  5147. "replace": {
  5148. "symfony/security-core": "self.version",
  5149. "symfony/security-csrf": "self.version",
  5150. "symfony/security-guard": "self.version",
  5151. "symfony/security-http": "self.version"
  5152. },
  5153. "require-dev": {
  5154. "psr/container": "^1.0",
  5155. "psr/log": "~1.0",
  5156. "symfony/expression-language": "~3.4|~4.0",
  5157. "symfony/finder": "~3.4|~4.0",
  5158. "symfony/ldap": "~3.4|~4.0",
  5159. "symfony/polyfill-intl-icu": "~1.0",
  5160. "symfony/routing": "~3.4|~4.0",
  5161. "symfony/validator": "~3.4|~4.0"
  5162. },
  5163. "suggest": {
  5164. "psr/container-implementation": "To instantiate the Security class",
  5165. "symfony/expression-language": "For using the expression voter",
  5166. "symfony/form": "",
  5167. "symfony/ldap": "For using the LDAP user and authentication providers",
  5168. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  5169. "symfony/validator": "For using the user password constraint"
  5170. },
  5171. "type": "library",
  5172. "extra": {
  5173. "branch-alias": {
  5174. "dev-master": "4.1-dev"
  5175. }
  5176. },
  5177. "autoload": {
  5178. "psr-4": {
  5179. "Symfony\\Component\\Security\\": ""
  5180. },
  5181. "exclude-from-classmap": [
  5182. "/Tests/"
  5183. ]
  5184. },
  5185. "notification-url": "https://packagist.org/downloads/",
  5186. "license": [
  5187. "MIT"
  5188. ],
  5189. "authors": [
  5190. {
  5191. "name": "Fabien Potencier",
  5192. "email": "fabien@symfony.com"
  5193. },
  5194. {
  5195. "name": "Symfony Community",
  5196. "homepage": "https://symfony.com/contributors"
  5197. }
  5198. ],
  5199. "description": "Symfony Security Component",
  5200. "homepage": "https://symfony.com",
  5201. "time": "2018-06-22T08:59:39+00:00"
  5202. },
  5203. {
  5204. "name": "symfony/security-bundle",
  5205. "version": "v4.1.1",
  5206. "source": {
  5207. "type": "git",
  5208. "url": "https://github.com/symfony/security-bundle.git",
  5209. "reference": "58c0db1915ab9c54c013d9336cace46f9e02cbb2"
  5210. },
  5211. "dist": {
  5212. "type": "zip",
  5213. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/58c0db1915ab9c54c013d9336cace46f9e02cbb2",
  5214. "reference": "58c0db1915ab9c54c013d9336cace46f9e02cbb2",
  5215. "shasum": ""
  5216. },
  5217. "require": {
  5218. "ext-xml": "*",
  5219. "php": "^7.1.3",
  5220. "symfony/dependency-injection": "^3.4.3|^4.0.3",
  5221. "symfony/http-kernel": "^4.1",
  5222. "symfony/security": "^4.1.1"
  5223. },
  5224. "conflict": {
  5225. "symfony/console": "<3.4",
  5226. "symfony/event-dispatcher": "<3.4",
  5227. "symfony/framework-bundle": "<4.1.1",
  5228. "symfony/var-dumper": "<3.4"
  5229. },
  5230. "require-dev": {
  5231. "doctrine/doctrine-bundle": "~1.5",
  5232. "symfony/asset": "~3.4|~4.0",
  5233. "symfony/browser-kit": "~3.4|~4.0",
  5234. "symfony/console": "~3.4|~4.0",
  5235. "symfony/css-selector": "~3.4|~4.0",
  5236. "symfony/dom-crawler": "~3.4|~4.0",
  5237. "symfony/event-dispatcher": "~3.4|~4.0",
  5238. "symfony/expression-language": "~3.4|~4.0",
  5239. "symfony/form": "~3.4|~4.0",
  5240. "symfony/framework-bundle": "~4.1",
  5241. "symfony/http-foundation": "~3.4|~4.0",
  5242. "symfony/process": "~3.4|~4.0",
  5243. "symfony/translation": "~3.4|~4.0",
  5244. "symfony/twig-bridge": "~3.4|~4.0",
  5245. "symfony/twig-bundle": "~3.4|~4.0",
  5246. "symfony/validator": "~3.4|~4.0",
  5247. "symfony/var-dumper": "~3.4|~4.0",
  5248. "symfony/yaml": "~3.4|~4.0",
  5249. "twig/twig": "~1.34|~2.4"
  5250. },
  5251. "type": "symfony-bundle",
  5252. "extra": {
  5253. "branch-alias": {
  5254. "dev-master": "4.1-dev"
  5255. }
  5256. },
  5257. "autoload": {
  5258. "psr-4": {
  5259. "Symfony\\Bundle\\SecurityBundle\\": ""
  5260. },
  5261. "exclude-from-classmap": [
  5262. "/Tests/"
  5263. ]
  5264. },
  5265. "notification-url": "https://packagist.org/downloads/",
  5266. "license": [
  5267. "MIT"
  5268. ],
  5269. "authors": [
  5270. {
  5271. "name": "Fabien Potencier",
  5272. "email": "fabien@symfony.com"
  5273. },
  5274. {
  5275. "name": "Symfony Community",
  5276. "homepage": "https://symfony.com/contributors"
  5277. }
  5278. ],
  5279. "description": "Symfony SecurityBundle",
  5280. "homepage": "https://symfony.com",
  5281. "time": "2018-06-25T11:12:43+00:00"
  5282. },
  5283. {
  5284. "name": "symfony/serializer",
  5285. "version": "v4.1.1",
  5286. "source": {
  5287. "type": "git",
  5288. "url": "https://github.com/symfony/serializer.git",
  5289. "reference": "2ddc6ec084eba809aec92bf723e007bc3a8345c0"
  5290. },
  5291. "dist": {
  5292. "type": "zip",
  5293. "url": "https://api.github.com/repos/symfony/serializer/zipball/2ddc6ec084eba809aec92bf723e007bc3a8345c0",
  5294. "reference": "2ddc6ec084eba809aec92bf723e007bc3a8345c0",
  5295. "shasum": ""
  5296. },
  5297. "require": {
  5298. "php": "^7.1.3",
  5299. "symfony/polyfill-ctype": "~1.8"
  5300. },
  5301. "conflict": {
  5302. "phpdocumentor/type-resolver": "<0.2.1",
  5303. "symfony/dependency-injection": "<3.4",
  5304. "symfony/property-access": "<3.4",
  5305. "symfony/property-info": "<3.4",
  5306. "symfony/yaml": "<3.4"
  5307. },
  5308. "require-dev": {
  5309. "doctrine/annotations": "~1.0",
  5310. "doctrine/cache": "~1.0",
  5311. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  5312. "symfony/cache": "~3.4|~4.0",
  5313. "symfony/config": "~3.4|~4.0",
  5314. "symfony/dependency-injection": "~3.4|~4.0",
  5315. "symfony/http-foundation": "~3.4|~4.0",
  5316. "symfony/property-access": "~3.4|~4.0",
  5317. "symfony/property-info": "~3.4|~4.0",
  5318. "symfony/validator": "~3.4|~4.0",
  5319. "symfony/yaml": "~3.4|~4.0"
  5320. },
  5321. "suggest": {
  5322. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  5323. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  5324. "psr/cache-implementation": "For using the metadata cache.",
  5325. "symfony/config": "For using the XML mapping loader.",
  5326. "symfony/http-foundation": "To use the DataUriNormalizer.",
  5327. "symfony/property-access": "For using the ObjectNormalizer.",
  5328. "symfony/property-info": "To deserialize relations.",
  5329. "symfony/yaml": "For using the default YAML mapping loader."
  5330. },
  5331. "type": "library",
  5332. "extra": {
  5333. "branch-alias": {
  5334. "dev-master": "4.1-dev"
  5335. }
  5336. },
  5337. "autoload": {
  5338. "psr-4": {
  5339. "Symfony\\Component\\Serializer\\": ""
  5340. },
  5341. "exclude-from-classmap": [
  5342. "/Tests/"
  5343. ]
  5344. },
  5345. "notification-url": "https://packagist.org/downloads/",
  5346. "license": [
  5347. "MIT"
  5348. ],
  5349. "authors": [
  5350. {
  5351. "name": "Fabien Potencier",
  5352. "email": "fabien@symfony.com"
  5353. },
  5354. {
  5355. "name": "Symfony Community",
  5356. "homepage": "https://symfony.com/contributors"
  5357. }
  5358. ],
  5359. "description": "Symfony Serializer Component",
  5360. "homepage": "https://symfony.com",
  5361. "time": "2018-06-22T08:59:39+00:00"
  5362. },
  5363. {
  5364. "name": "symfony/serializer-pack",
  5365. "version": "v1.0.1",
  5366. "source": {
  5367. "type": "git",
  5368. "url": "https://github.com/symfony/serializer-pack.git",
  5369. "reference": "35cea385ea44d1f40ec12571996bf768fbe409de"
  5370. },
  5371. "dist": {
  5372. "type": "zip",
  5373. "url": "https://api.github.com/repos/symfony/serializer-pack/zipball/35cea385ea44d1f40ec12571996bf768fbe409de",
  5374. "reference": "35cea385ea44d1f40ec12571996bf768fbe409de",
  5375. "shasum": ""
  5376. },
  5377. "require": {
  5378. "doctrine/annotations": "^1.0",
  5379. "php": "^7.0",
  5380. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  5381. "symfony/cache": "^3.3|^4.0",
  5382. "symfony/property-access": "^3.3|^4.0",
  5383. "symfony/property-info": "^3.3|^4.0",
  5384. "symfony/serializer": "^3.3|^4.0"
  5385. },
  5386. "type": "symfony-pack",
  5387. "notification-url": "https://packagist.org/downloads/",
  5388. "license": [
  5389. "MIT"
  5390. ],
  5391. "description": "A pack for the Symfony serializer",
  5392. "time": "2017-12-12T01:48:53+00:00"
  5393. },
  5394. {
  5395. "name": "symfony/swiftmailer-bundle",
  5396. "version": "v3.2.2",
  5397. "source": {
  5398. "type": "git",
  5399. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  5400. "reference": "f1ba0552a9cd4df0191a58845fbd5541cf9eda2d"
  5401. },
  5402. "dist": {
  5403. "type": "zip",
  5404. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/f1ba0552a9cd4df0191a58845fbd5541cf9eda2d",
  5405. "reference": "f1ba0552a9cd4df0191a58845fbd5541cf9eda2d",
  5406. "shasum": ""
  5407. },
  5408. "require": {
  5409. "php": ">=7.0.0",
  5410. "swiftmailer/swiftmailer": "^6.0.1",
  5411. "symfony/config": "~2.8|~3.3|~4.0",
  5412. "symfony/dependency-injection": "~2.7|~3.3|~4.0",
  5413. "symfony/http-kernel": "~2.7|~3.3|~4.0"
  5414. },
  5415. "require-dev": {
  5416. "symfony/console": "~2.7|~3.3|~4.0",
  5417. "symfony/framework-bundle": "~2.7|~3.3|~4.0",
  5418. "symfony/phpunit-bridge": "~3.3|~4.0",
  5419. "symfony/yaml": "~2.7|~3.3|~4.0"
  5420. },
  5421. "suggest": {
  5422. "psr/log": "Allows logging"
  5423. },
  5424. "type": "symfony-bundle",
  5425. "extra": {
  5426. "branch-alias": {
  5427. "dev-master": "3.2-dev"
  5428. }
  5429. },
  5430. "autoload": {
  5431. "psr-4": {
  5432. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  5433. },
  5434. "exclude-from-classmap": [
  5435. "/Tests/"
  5436. ]
  5437. },
  5438. "notification-url": "https://packagist.org/downloads/",
  5439. "license": [
  5440. "MIT"
  5441. ],
  5442. "authors": [
  5443. {
  5444. "name": "Symfony Community",
  5445. "homepage": "http://symfony.com/contributors"
  5446. },
  5447. {
  5448. "name": "Fabien Potencier",
  5449. "email": "fabien@symfony.com"
  5450. }
  5451. ],
  5452. "description": "Symfony SwiftmailerBundle",
  5453. "homepage": "http://symfony.com",
  5454. "time": "2018-04-03T16:29:41+00:00"
  5455. },
  5456. {
  5457. "name": "symfony/templating",
  5458. "version": "v4.1.1",
  5459. "source": {
  5460. "type": "git",
  5461. "url": "https://github.com/symfony/templating.git",
  5462. "reference": "c9731b5e11fc01a1363e0cf9b3c90faf619ea479"
  5463. },
  5464. "dist": {
  5465. "type": "zip",
  5466. "url": "https://api.github.com/repos/symfony/templating/zipball/c9731b5e11fc01a1363e0cf9b3c90faf619ea479",
  5467. "reference": "c9731b5e11fc01a1363e0cf9b3c90faf619ea479",
  5468. "shasum": ""
  5469. },
  5470. "require": {
  5471. "php": "^7.1.3",
  5472. "symfony/polyfill-ctype": "~1.8"
  5473. },
  5474. "require-dev": {
  5475. "psr/log": "~1.0"
  5476. },
  5477. "suggest": {
  5478. "psr/log-implementation": "For using debug logging in loaders"
  5479. },
  5480. "type": "library",
  5481. "extra": {
  5482. "branch-alias": {
  5483. "dev-master": "4.1-dev"
  5484. }
  5485. },
  5486. "autoload": {
  5487. "psr-4": {
  5488. "Symfony\\Component\\Templating\\": ""
  5489. },
  5490. "exclude-from-classmap": [
  5491. "/Tests/"
  5492. ]
  5493. },
  5494. "notification-url": "https://packagist.org/downloads/",
  5495. "license": [
  5496. "MIT"
  5497. ],
  5498. "authors": [
  5499. {
  5500. "name": "Fabien Potencier",
  5501. "email": "fabien@symfony.com"
  5502. },
  5503. {
  5504. "name": "Symfony Community",
  5505. "homepage": "https://symfony.com/contributors"
  5506. }
  5507. ],
  5508. "description": "Symfony Templating Component",
  5509. "homepage": "https://symfony.com",
  5510. "time": "2018-05-01T23:02:13+00:00"
  5511. },
  5512. {
  5513. "name": "symfony/translation",
  5514. "version": "v4.1.1",
  5515. "source": {
  5516. "type": "git",
  5517. "url": "https://github.com/symfony/translation.git",
  5518. "reference": "b6d8164085ee0b6debcd1b7a131fd6f63bb04854"
  5519. },
  5520. "dist": {
  5521. "type": "zip",
  5522. "url": "https://api.github.com/repos/symfony/translation/zipball/b6d8164085ee0b6debcd1b7a131fd6f63bb04854",
  5523. "reference": "b6d8164085ee0b6debcd1b7a131fd6f63bb04854",
  5524. "shasum": ""
  5525. },
  5526. "require": {
  5527. "php": "^7.1.3",
  5528. "symfony/polyfill-mbstring": "~1.0"
  5529. },
  5530. "conflict": {
  5531. "symfony/config": "<3.4",
  5532. "symfony/dependency-injection": "<3.4",
  5533. "symfony/yaml": "<3.4"
  5534. },
  5535. "require-dev": {
  5536. "psr/log": "~1.0",
  5537. "symfony/config": "~3.4|~4.0",
  5538. "symfony/console": "~3.4|~4.0",
  5539. "symfony/dependency-injection": "~3.4|~4.0",
  5540. "symfony/finder": "~2.8|~3.0|~4.0",
  5541. "symfony/intl": "~3.4|~4.0",
  5542. "symfony/yaml": "~3.4|~4.0"
  5543. },
  5544. "suggest": {
  5545. "psr/log-implementation": "To use logging capability in translator",
  5546. "symfony/config": "",
  5547. "symfony/yaml": ""
  5548. },
  5549. "type": "library",
  5550. "extra": {
  5551. "branch-alias": {
  5552. "dev-master": "4.1-dev"
  5553. }
  5554. },
  5555. "autoload": {
  5556. "psr-4": {
  5557. "Symfony\\Component\\Translation\\": ""
  5558. },
  5559. "exclude-from-classmap": [
  5560. "/Tests/"
  5561. ]
  5562. },
  5563. "notification-url": "https://packagist.org/downloads/",
  5564. "license": [
  5565. "MIT"
  5566. ],
  5567. "authors": [
  5568. {
  5569. "name": "Fabien Potencier",
  5570. "email": "fabien@symfony.com"
  5571. },
  5572. {
  5573. "name": "Symfony Community",
  5574. "homepage": "https://symfony.com/contributors"
  5575. }
  5576. ],
  5577. "description": "Symfony Translation Component",
  5578. "homepage": "https://symfony.com",
  5579. "time": "2018-06-22T08:59:39+00:00"
  5580. },
  5581. {
  5582. "name": "symfony/twig-bridge",
  5583. "version": "v4.1.1",
  5584. "source": {
  5585. "type": "git",
  5586. "url": "https://github.com/symfony/twig-bridge.git",
  5587. "reference": "4794c3cac1cd3c0104ec194ecd3ea82019d94c64"
  5588. },
  5589. "dist": {
  5590. "type": "zip",
  5591. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/4794c3cac1cd3c0104ec194ecd3ea82019d94c64",
  5592. "reference": "4794c3cac1cd3c0104ec194ecd3ea82019d94c64",
  5593. "shasum": ""
  5594. },
  5595. "require": {
  5596. "php": "^7.1.3",
  5597. "twig/twig": "^1.35|^2.4.4"
  5598. },
  5599. "conflict": {
  5600. "symfony/console": "<3.4",
  5601. "symfony/form": "<4.1"
  5602. },
  5603. "require-dev": {
  5604. "symfony/asset": "~3.4|~4.0",
  5605. "symfony/console": "~3.4|~4.0",
  5606. "symfony/dependency-injection": "~3.4|~4.0",
  5607. "symfony/expression-language": "~3.4|~4.0",
  5608. "symfony/finder": "~3.4|~4.0",
  5609. "symfony/form": "^4.1",
  5610. "symfony/http-foundation": "~3.4|~4.0",
  5611. "symfony/http-kernel": "~3.4|~4.0",
  5612. "symfony/polyfill-intl-icu": "~1.0",
  5613. "symfony/routing": "~3.4|~4.0",
  5614. "symfony/security": "~3.4|~4.0",
  5615. "symfony/security-acl": "~2.8|~3.0",
  5616. "symfony/stopwatch": "~3.4|~4.0",
  5617. "symfony/templating": "~3.4|~4.0",
  5618. "symfony/translation": "~3.4|~4.0",
  5619. "symfony/var-dumper": "~3.4|~4.0",
  5620. "symfony/web-link": "~3.4|~4.0",
  5621. "symfony/workflow": "~3.4|~4.0",
  5622. "symfony/yaml": "~3.4|~4.0"
  5623. },
  5624. "suggest": {
  5625. "symfony/asset": "For using the AssetExtension",
  5626. "symfony/expression-language": "For using the ExpressionExtension",
  5627. "symfony/finder": "",
  5628. "symfony/form": "For using the FormExtension",
  5629. "symfony/http-kernel": "For using the HttpKernelExtension",
  5630. "symfony/routing": "For using the RoutingExtension",
  5631. "symfony/security": "For using the SecurityExtension",
  5632. "symfony/stopwatch": "For using the StopwatchExtension",
  5633. "symfony/templating": "For using the TwigEngine",
  5634. "symfony/translation": "For using the TranslationExtension",
  5635. "symfony/var-dumper": "For using the DumpExtension",
  5636. "symfony/web-link": "For using the WebLinkExtension",
  5637. "symfony/yaml": "For using the YamlExtension"
  5638. },
  5639. "type": "symfony-bridge",
  5640. "extra": {
  5641. "branch-alias": {
  5642. "dev-master": "4.1-dev"
  5643. }
  5644. },
  5645. "autoload": {
  5646. "psr-4": {
  5647. "Symfony\\Bridge\\Twig\\": ""
  5648. },
  5649. "exclude-from-classmap": [
  5650. "/Tests/"
  5651. ]
  5652. },
  5653. "notification-url": "https://packagist.org/downloads/",
  5654. "license": [
  5655. "MIT"
  5656. ],
  5657. "authors": [
  5658. {
  5659. "name": "Fabien Potencier",
  5660. "email": "fabien@symfony.com"
  5661. },
  5662. {
  5663. "name": "Symfony Community",
  5664. "homepage": "https://symfony.com/contributors"
  5665. }
  5666. ],
  5667. "description": "Symfony Twig Bridge",
  5668. "homepage": "https://symfony.com",
  5669. "time": "2018-06-25T11:12:43+00:00"
  5670. },
  5671. {
  5672. "name": "symfony/twig-bundle",
  5673. "version": "v4.1.1",
  5674. "source": {
  5675. "type": "git",
  5676. "url": "https://github.com/symfony/twig-bundle.git",
  5677. "reference": "04f9b5055ca8ea1cb2abc247149b0b4ae4bac6da"
  5678. },
  5679. "dist": {
  5680. "type": "zip",
  5681. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/04f9b5055ca8ea1cb2abc247149b0b4ae4bac6da",
  5682. "reference": "04f9b5055ca8ea1cb2abc247149b0b4ae4bac6da",
  5683. "shasum": ""
  5684. },
  5685. "require": {
  5686. "php": "^7.1.3",
  5687. "symfony/config": "~3.4|~4.0",
  5688. "symfony/http-foundation": "~4.1",
  5689. "symfony/http-kernel": "~4.1",
  5690. "symfony/polyfill-ctype": "~1.8",
  5691. "symfony/twig-bridge": "^3.4.3|^4.0.3",
  5692. "twig/twig": "~1.34|~2.4"
  5693. },
  5694. "conflict": {
  5695. "symfony/dependency-injection": "<4.1",
  5696. "symfony/framework-bundle": "<4.1"
  5697. },
  5698. "require-dev": {
  5699. "doctrine/annotations": "~1.0",
  5700. "doctrine/cache": "~1.0",
  5701. "symfony/asset": "~3.4|~4.0",
  5702. "symfony/dependency-injection": "~4.1",
  5703. "symfony/expression-language": "~3.4|~4.0",
  5704. "symfony/finder": "~3.4|~4.0",
  5705. "symfony/form": "~3.4|~4.0",
  5706. "symfony/framework-bundle": "~4.1",
  5707. "symfony/routing": "~3.4|~4.0",
  5708. "symfony/stopwatch": "~3.4|~4.0",
  5709. "symfony/templating": "~3.4|~4.0",
  5710. "symfony/web-link": "~3.4|~4.0",
  5711. "symfony/yaml": "~3.4|~4.0"
  5712. },
  5713. "type": "symfony-bundle",
  5714. "extra": {
  5715. "branch-alias": {
  5716. "dev-master": "4.1-dev"
  5717. }
  5718. },
  5719. "autoload": {
  5720. "psr-4": {
  5721. "Symfony\\Bundle\\TwigBundle\\": ""
  5722. },
  5723. "exclude-from-classmap": [
  5724. "/Tests/"
  5725. ]
  5726. },
  5727. "notification-url": "https://packagist.org/downloads/",
  5728. "license": [
  5729. "MIT"
  5730. ],
  5731. "authors": [
  5732. {
  5733. "name": "Fabien Potencier",
  5734. "email": "fabien@symfony.com"
  5735. },
  5736. {
  5737. "name": "Symfony Community",
  5738. "homepage": "https://symfony.com/contributors"
  5739. }
  5740. ],
  5741. "description": "Symfony TwigBundle",
  5742. "homepage": "https://symfony.com",
  5743. "time": "2018-06-25T11:12:43+00:00"
  5744. },
  5745. {
  5746. "name": "symfony/validator",
  5747. "version": "v4.1.1",
  5748. "source": {
  5749. "type": "git",
  5750. "url": "https://github.com/symfony/validator.git",
  5751. "reference": "f2523bfd8dc5ff648aca55c0f2748674ca4661bb"
  5752. },
  5753. "dist": {
  5754. "type": "zip",
  5755. "url": "https://api.github.com/repos/symfony/validator/zipball/f2523bfd8dc5ff648aca55c0f2748674ca4661bb",
  5756. "reference": "f2523bfd8dc5ff648aca55c0f2748674ca4661bb",
  5757. "shasum": ""
  5758. },
  5759. "require": {
  5760. "php": "^7.1.3",
  5761. "symfony/polyfill-ctype": "~1.8",
  5762. "symfony/polyfill-mbstring": "~1.0",
  5763. "symfony/translation": "~3.4|~4.0"
  5764. },
  5765. "conflict": {
  5766. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  5767. "symfony/dependency-injection": "<3.4",
  5768. "symfony/http-kernel": "<3.4",
  5769. "symfony/intl": "<4.1",
  5770. "symfony/yaml": "<3.4"
  5771. },
  5772. "require-dev": {
  5773. "doctrine/annotations": "~1.0",
  5774. "doctrine/cache": "~1.0",
  5775. "egulias/email-validator": "^1.2.8|~2.0",
  5776. "symfony/cache": "~3.4|~4.0",
  5777. "symfony/config": "~3.4|~4.0",
  5778. "symfony/dependency-injection": "~3.4|~4.0",
  5779. "symfony/expression-language": "~3.4|~4.0",
  5780. "symfony/http-foundation": "~4.1",
  5781. "symfony/http-kernel": "~3.4|~4.0",
  5782. "symfony/intl": "~4.1",
  5783. "symfony/property-access": "~3.4|~4.0",
  5784. "symfony/var-dumper": "~3.4|~4.0",
  5785. "symfony/yaml": "~3.4|~4.0"
  5786. },
  5787. "suggest": {
  5788. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  5789. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  5790. "egulias/email-validator": "Strict (RFC compliant) email validation",
  5791. "psr/cache-implementation": "For using the metadata cache.",
  5792. "symfony/config": "",
  5793. "symfony/expression-language": "For using the Expression validator",
  5794. "symfony/http-foundation": "",
  5795. "symfony/intl": "",
  5796. "symfony/property-access": "For accessing properties within comparison constraints",
  5797. "symfony/yaml": ""
  5798. },
  5799. "type": "library",
  5800. "extra": {
  5801. "branch-alias": {
  5802. "dev-master": "4.1-dev"
  5803. }
  5804. },
  5805. "autoload": {
  5806. "psr-4": {
  5807. "Symfony\\Component\\Validator\\": ""
  5808. },
  5809. "exclude-from-classmap": [
  5810. "/Tests/"
  5811. ]
  5812. },
  5813. "notification-url": "https://packagist.org/downloads/",
  5814. "license": [
  5815. "MIT"
  5816. ],
  5817. "authors": [
  5818. {
  5819. "name": "Fabien Potencier",
  5820. "email": "fabien@symfony.com"
  5821. },
  5822. {
  5823. "name": "Symfony Community",
  5824. "homepage": "https://symfony.com/contributors"
  5825. }
  5826. ],
  5827. "description": "Symfony Validator Component",
  5828. "homepage": "https://symfony.com",
  5829. "time": "2018-06-19T21:38:16+00:00"
  5830. },
  5831. {
  5832. "name": "symfony/web-link",
  5833. "version": "v4.1.1",
  5834. "source": {
  5835. "type": "git",
  5836. "url": "https://github.com/symfony/web-link.git",
  5837. "reference": "6719851332d1899a39e764e0cc4331bb71af0efd"
  5838. },
  5839. "dist": {
  5840. "type": "zip",
  5841. "url": "https://api.github.com/repos/symfony/web-link/zipball/6719851332d1899a39e764e0cc4331bb71af0efd",
  5842. "reference": "6719851332d1899a39e764e0cc4331bb71af0efd",
  5843. "shasum": ""
  5844. },
  5845. "require": {
  5846. "fig/link-util": "^1.0",
  5847. "php": "^7.1.3",
  5848. "psr/link": "^1.0"
  5849. },
  5850. "require-dev": {
  5851. "symfony/event-dispatcher": "~3.4|~4.0",
  5852. "symfony/http-foundation": "~3.4|~4.0",
  5853. "symfony/http-kernel": "~3.4|~4.0"
  5854. },
  5855. "suggest": {
  5856. "symfony/http-kernel": ""
  5857. },
  5858. "type": "library",
  5859. "extra": {
  5860. "branch-alias": {
  5861. "dev-master": "4.1-dev"
  5862. }
  5863. },
  5864. "autoload": {
  5865. "psr-4": {
  5866. "Symfony\\Component\\WebLink\\": ""
  5867. },
  5868. "exclude-from-classmap": [
  5869. "/Tests/"
  5870. ]
  5871. },
  5872. "notification-url": "https://packagist.org/downloads/",
  5873. "license": [
  5874. "MIT"
  5875. ],
  5876. "authors": [
  5877. {
  5878. "name": "Kévin Dunglas",
  5879. "email": "dunglas@gmail.com"
  5880. },
  5881. {
  5882. "name": "Symfony Community",
  5883. "homepage": "https://symfony.com/contributors"
  5884. }
  5885. ],
  5886. "description": "Symfony WebLink Component",
  5887. "homepage": "https://symfony.com",
  5888. "keywords": [
  5889. "dns-prefetch",
  5890. "http",
  5891. "http2",
  5892. "link",
  5893. "performance",
  5894. "prefetch",
  5895. "preload",
  5896. "prerender",
  5897. "psr13",
  5898. "push"
  5899. ],
  5900. "time": "2018-01-03T07:38:11+00:00"
  5901. },
  5902. {
  5903. "name": "twig/extensions",
  5904. "version": "v1.5.1",
  5905. "source": {
  5906. "type": "git",
  5907. "url": "https://github.com/twigphp/Twig-extensions.git",
  5908. "reference": "d188c76168b853481cc75879ea045bf93d718e9c"
  5909. },
  5910. "dist": {
  5911. "type": "zip",
  5912. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/d188c76168b853481cc75879ea045bf93d718e9c",
  5913. "reference": "d188c76168b853481cc75879ea045bf93d718e9c",
  5914. "shasum": ""
  5915. },
  5916. "require": {
  5917. "twig/twig": "~1.27|~2.0"
  5918. },
  5919. "require-dev": {
  5920. "symfony/phpunit-bridge": "~3.3@dev",
  5921. "symfony/translation": "~2.3|~3.0"
  5922. },
  5923. "suggest": {
  5924. "symfony/translation": "Allow the time_diff output to be translated"
  5925. },
  5926. "type": "library",
  5927. "extra": {
  5928. "branch-alias": {
  5929. "dev-master": "1.5-dev"
  5930. }
  5931. },
  5932. "autoload": {
  5933. "psr-0": {
  5934. "Twig_Extensions_": "lib/"
  5935. },
  5936. "psr-4": {
  5937. "Twig\\Extensions\\": "src/"
  5938. }
  5939. },
  5940. "notification-url": "https://packagist.org/downloads/",
  5941. "license": [
  5942. "MIT"
  5943. ],
  5944. "authors": [
  5945. {
  5946. "name": "Fabien Potencier",
  5947. "email": "fabien@symfony.com"
  5948. }
  5949. ],
  5950. "description": "Common additional features for Twig that do not directly belong in core",
  5951. "homepage": "http://twig.sensiolabs.org/doc/extensions/index.html",
  5952. "keywords": [
  5953. "i18n",
  5954. "text"
  5955. ],
  5956. "time": "2017-06-08T18:19:53+00:00"
  5957. },
  5958. {
  5959. "name": "twig/twig",
  5960. "version": "v2.4.8",
  5961. "source": {
  5962. "type": "git",
  5963. "url": "https://github.com/twigphp/Twig.git",
  5964. "reference": "7b604c89da162034bdf4bb66310f358d313dd16d"
  5965. },
  5966. "dist": {
  5967. "type": "zip",
  5968. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7b604c89da162034bdf4bb66310f358d313dd16d",
  5969. "reference": "7b604c89da162034bdf4bb66310f358d313dd16d",
  5970. "shasum": ""
  5971. },
  5972. "require": {
  5973. "php": "^7.0",
  5974. "symfony/polyfill-mbstring": "~1.0"
  5975. },
  5976. "require-dev": {
  5977. "psr/container": "^1.0",
  5978. "symfony/debug": "^2.7",
  5979. "symfony/phpunit-bridge": "^3.3"
  5980. },
  5981. "type": "library",
  5982. "extra": {
  5983. "branch-alias": {
  5984. "dev-master": "2.4-dev"
  5985. }
  5986. },
  5987. "autoload": {
  5988. "psr-0": {
  5989. "Twig_": "lib/"
  5990. },
  5991. "psr-4": {
  5992. "Twig\\": "src/"
  5993. }
  5994. },
  5995. "notification-url": "https://packagist.org/downloads/",
  5996. "license": [
  5997. "BSD-3-Clause"
  5998. ],
  5999. "authors": [
  6000. {
  6001. "name": "Fabien Potencier",
  6002. "email": "fabien@symfony.com",
  6003. "homepage": "http://fabien.potencier.org",
  6004. "role": "Lead Developer"
  6005. },
  6006. {
  6007. "name": "Armin Ronacher",
  6008. "email": "armin.ronacher@active-4.com",
  6009. "role": "Project Founder"
  6010. },
  6011. {
  6012. "name": "Twig Team",
  6013. "homepage": "http://twig.sensiolabs.org/contributors",
  6014. "role": "Contributors"
  6015. }
  6016. ],
  6017. "description": "Twig, the flexible, fast, and secure template language for PHP",
  6018. "homepage": "http://twig.sensiolabs.org",
  6019. "keywords": [
  6020. "templating"
  6021. ],
  6022. "time": "2018-04-02T09:24:19+00:00"
  6023. },
  6024. {
  6025. "name": "webmozart/assert",
  6026. "version": "1.3.0",
  6027. "source": {
  6028. "type": "git",
  6029. "url": "https://github.com/webmozart/assert.git",
  6030. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  6031. },
  6032. "dist": {
  6033. "type": "zip",
  6034. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  6035. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  6036. "shasum": ""
  6037. },
  6038. "require": {
  6039. "php": "^5.3.3 || ^7.0"
  6040. },
  6041. "require-dev": {
  6042. "phpunit/phpunit": "^4.6",
  6043. "sebastian/version": "^1.0.1"
  6044. },
  6045. "type": "library",
  6046. "extra": {
  6047. "branch-alias": {
  6048. "dev-master": "1.3-dev"
  6049. }
  6050. },
  6051. "autoload": {
  6052. "psr-4": {
  6053. "Webmozart\\Assert\\": "src/"
  6054. }
  6055. },
  6056. "notification-url": "https://packagist.org/downloads/",
  6057. "license": [
  6058. "MIT"
  6059. ],
  6060. "authors": [
  6061. {
  6062. "name": "Bernhard Schussek",
  6063. "email": "bschussek@gmail.com"
  6064. }
  6065. ],
  6066. "description": "Assertions to validate method input/output with nice error messages.",
  6067. "keywords": [
  6068. "assert",
  6069. "check",
  6070. "validate"
  6071. ],
  6072. "time": "2018-01-29T19:49:41+00:00"
  6073. },
  6074. {
  6075. "name": "webuni/commonmark-table-extension",
  6076. "version": "0.8.0",
  6077. "source": {
  6078. "type": "git",
  6079. "url": "https://github.com/webuni/commonmark-table-extension.git",
  6080. "reference": "4304b1f56b26e5213a4a781b654f62ef5ed8fbe3"
  6081. },
  6082. "dist": {
  6083. "type": "zip",
  6084. "url": "https://api.github.com/repos/webuni/commonmark-table-extension/zipball/4304b1f56b26e5213a4a781b654f62ef5ed8fbe3",
  6085. "reference": "4304b1f56b26e5213a4a781b654f62ef5ed8fbe3",
  6086. "shasum": ""
  6087. },
  6088. "require": {
  6089. "league/commonmark": "^0.16|^0.17",
  6090. "php": "^5.6|^7.0"
  6091. },
  6092. "require-dev": {
  6093. "friendsofphp/php-cs-fixer": "^2.9",
  6094. "phpunit/phpunit": "^5.4|^6.0",
  6095. "symfony/var-dumper": "^3.0|^4.0",
  6096. "vimeo/psalm": "~0.3"
  6097. },
  6098. "type": "library",
  6099. "extra": {
  6100. "branch-alias": {
  6101. "dev-master": "0.8-dev"
  6102. }
  6103. },
  6104. "autoload": {
  6105. "psr-4": {
  6106. "Webuni\\CommonMark\\TableExtension\\": "src"
  6107. }
  6108. },
  6109. "notification-url": "https://packagist.org/downloads/",
  6110. "license": [
  6111. "MIT"
  6112. ],
  6113. "authors": [
  6114. {
  6115. "name": "Martin Hasoň",
  6116. "email": "martin.hason@gmail.com"
  6117. },
  6118. {
  6119. "name": "Webuni s.r.o.",
  6120. "homepage": "https://www.webuni.cz"
  6121. }
  6122. ],
  6123. "description": "The table extension for CommonMark PHP implementation",
  6124. "homepage": "https://github.com/webuni/commonmark-table-extension",
  6125. "keywords": [
  6126. "commonmark",
  6127. "markdown",
  6128. "table"
  6129. ],
  6130. "time": "2018-01-24T12:30:02+00:00"
  6131. },
  6132. {
  6133. "name": "white-october/pagerfanta-bundle",
  6134. "version": "v1.2.1",
  6135. "source": {
  6136. "type": "git",
  6137. "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  6138. "reference": "3f97e71c9d3f75e7a6179aa82c863497bf298b2d"
  6139. },
  6140. "dist": {
  6141. "type": "zip",
  6142. "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/3f97e71c9d3f75e7a6179aa82c863497bf298b2d",
  6143. "reference": "3f97e71c9d3f75e7a6179aa82c863497bf298b2d",
  6144. "shasum": ""
  6145. },
  6146. "require": {
  6147. "pagerfanta/pagerfanta": "^1.1.0|^2.0.0",
  6148. "php": ">=5.3",
  6149. "symfony/framework-bundle": "~2.3|~3.0|~4.0",
  6150. "symfony/property-access": "~2.3|~3.0|~4.0",
  6151. "symfony/twig-bundle": "~2.3|~3.0|~4.0"
  6152. },
  6153. "require-dev": {
  6154. "phpunit/phpunit": "~3.7|~4.0|^5.0",
  6155. "symfony/symfony": "~2.3|~3.0|~4.0"
  6156. },
  6157. "type": "symfony-bundle",
  6158. "extra": {
  6159. "branch-alias": {
  6160. "dev-master": "1.0.x-dev"
  6161. }
  6162. },
  6163. "autoload": {
  6164. "classmap": [
  6165. "WhiteOctoberPagerfantaBundle.php"
  6166. ],
  6167. "psr-4": {
  6168. "WhiteOctober\\PagerfantaBundle\\DependencyInjection\\": "DependencyInjection",
  6169. "WhiteOctober\\PagerfantaBundle\\EventListener\\": "EventListener",
  6170. "WhiteOctober\\PagerfantaBundle\\Twig\\": "Twig",
  6171. "WhiteOctober\\PagerfantaBundle\\View\\": "View"
  6172. }
  6173. },
  6174. "notification-url": "https://packagist.org/downloads/",
  6175. "license": [
  6176. "MIT"
  6177. ],
  6178. "authors": [
  6179. {
  6180. "name": "Pablo Díez",
  6181. "email": "pablodip@gmail.com"
  6182. }
  6183. ],
  6184. "description": "Bundle to use Pagerfanta with Symfony2",
  6185. "keywords": [
  6186. "page",
  6187. "paging"
  6188. ],
  6189. "time": "2018-06-20T09:32:42+00:00"
  6190. },
  6191. {
  6192. "name": "willdurand/js-translation-bundle",
  6193. "version": "2.6.6",
  6194. "source": {
  6195. "type": "git",
  6196. "url": "https://github.com/willdurand/BazingaJsTranslationBundle.git",
  6197. "reference": "9c80406dd4cc195f1f835a52e038fb80a96563b2"
  6198. },
  6199. "dist": {
  6200. "type": "zip",
  6201. "url": "https://api.github.com/repos/willdurand/BazingaJsTranslationBundle/zipball/9c80406dd4cc195f1f835a52e038fb80a96563b2",
  6202. "reference": "9c80406dd4cc195f1f835a52e038fb80a96563b2",
  6203. "shasum": ""
  6204. },
  6205. "require": {
  6206. "symfony/console": "~2.7|~3.1|~4.0",
  6207. "symfony/finder": "~2.7|~3.1|~4.0",
  6208. "symfony/framework-bundle": "~2.7|~3.1|~4.0",
  6209. "symfony/intl": "~2.7|~3.1|~4.0",
  6210. "symfony/translation": "~2.7|~3.1|~4.0",
  6211. "symfony/twig-bundle": "~2.7|~3.1|~4.0"
  6212. },
  6213. "replace": {
  6214. "willdurand/expose-translation-bundle": "2.5.*"
  6215. },
  6216. "require-dev": {
  6217. "phpunit/phpunit": "^4.8|~5.7",
  6218. "symfony/asset": "~2.7|~3.1|~4.0",
  6219. "symfony/browser-kit": "~2.7|~3.1|~4.0",
  6220. "symfony/phpunit-bridge": "~2.7|~3.1|~4.0",
  6221. "symfony/twig-bundle": "~2.7|~3.1|~4.0",
  6222. "symfony/yaml": "~2.7|~3.1|~4.0"
  6223. },
  6224. "type": "symfony-bundle",
  6225. "extra": {
  6226. "branch-alias": {
  6227. "dev-master": "2.7-dev"
  6228. }
  6229. },
  6230. "autoload": {
  6231. "psr-4": {
  6232. "Bazinga\\Bundle\\JsTranslationBundle\\": ""
  6233. }
  6234. },
  6235. "notification-url": "https://packagist.org/downloads/",
  6236. "license": [
  6237. "MIT"
  6238. ],
  6239. "authors": [
  6240. {
  6241. "name": "William Durand",
  6242. "email": "will+git@drnd.me"
  6243. }
  6244. ],
  6245. "description": "A pretty nice way to expose your translation messages to your JavaScript.",
  6246. "keywords": [
  6247. "javascript",
  6248. "symfony",
  6249. "translation"
  6250. ],
  6251. "time": "2018-02-11T14:19:14+00:00"
  6252. },
  6253. {
  6254. "name": "willdurand/jsonp-callback-validator",
  6255. "version": "v1.1.0",
  6256. "source": {
  6257. "type": "git",
  6258. "url": "https://github.com/willdurand/JsonpCallbackValidator.git",
  6259. "reference": "1a7d388bb521959e612ef50c5c7b1691b097e909"
  6260. },
  6261. "dist": {
  6262. "type": "zip",
  6263. "url": "https://api.github.com/repos/willdurand/JsonpCallbackValidator/zipball/1a7d388bb521959e612ef50c5c7b1691b097e909",
  6264. "reference": "1a7d388bb521959e612ef50c5c7b1691b097e909",
  6265. "shasum": ""
  6266. },
  6267. "require": {
  6268. "php": ">=5.3.0"
  6269. },
  6270. "require-dev": {
  6271. "phpunit/phpunit": "~3.7"
  6272. },
  6273. "type": "library",
  6274. "autoload": {
  6275. "psr-0": {
  6276. "JsonpCallbackValidator": "src/"
  6277. }
  6278. },
  6279. "notification-url": "https://packagist.org/downloads/",
  6280. "license": [
  6281. "MIT"
  6282. ],
  6283. "authors": [
  6284. {
  6285. "name": "William Durand",
  6286. "email": "william.durand1@gmail.com",
  6287. "homepage": "http://www.willdurand.fr"
  6288. }
  6289. ],
  6290. "description": "JSONP callback validator.",
  6291. "time": "2014-01-20T22:35:06+00:00"
  6292. },
  6293. {
  6294. "name": "zendframework/zend-code",
  6295. "version": "3.3.0",
  6296. "source": {
  6297. "type": "git",
  6298. "url": "https://github.com/zendframework/zend-code.git",
  6299. "reference": "6b1059db5b368db769e4392c6cb6cc139e56640d"
  6300. },
  6301. "dist": {
  6302. "type": "zip",
  6303. "url": "https://api.github.com/repos/zendframework/zend-code/zipball/6b1059db5b368db769e4392c6cb6cc139e56640d",
  6304. "reference": "6b1059db5b368db769e4392c6cb6cc139e56640d",
  6305. "shasum": ""
  6306. },
  6307. "require": {
  6308. "php": "^7.1",
  6309. "zendframework/zend-eventmanager": "^2.6 || ^3.0"
  6310. },
  6311. "require-dev": {
  6312. "doctrine/annotations": "~1.0",
  6313. "ext-phar": "*",
  6314. "phpunit/phpunit": "^6.2.3",
  6315. "zendframework/zend-coding-standard": "^1.0.0",
  6316. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  6317. },
  6318. "suggest": {
  6319. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  6320. "zendframework/zend-stdlib": "Zend\\Stdlib component"
  6321. },
  6322. "type": "library",
  6323. "extra": {
  6324. "branch-alias": {
  6325. "dev-master": "3.2-dev",
  6326. "dev-develop": "3.3-dev"
  6327. }
  6328. },
  6329. "autoload": {
  6330. "psr-4": {
  6331. "Zend\\Code\\": "src/"
  6332. }
  6333. },
  6334. "notification-url": "https://packagist.org/downloads/",
  6335. "license": [
  6336. "BSD-3-Clause"
  6337. ],
  6338. "description": "provides facilities to generate arbitrary code using an object oriented interface",
  6339. "homepage": "https://github.com/zendframework/zend-code",
  6340. "keywords": [
  6341. "code",
  6342. "zf2"
  6343. ],
  6344. "time": "2017-10-20T15:21:32+00:00"
  6345. },
  6346. {
  6347. "name": "zendframework/zend-eventmanager",
  6348. "version": "3.2.1",
  6349. "source": {
  6350. "type": "git",
  6351. "url": "https://github.com/zendframework/zend-eventmanager.git",
  6352. "reference": "a5e2583a211f73604691586b8406ff7296a946dd"
  6353. },
  6354. "dist": {
  6355. "type": "zip",
  6356. "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/a5e2583a211f73604691586b8406ff7296a946dd",
  6357. "reference": "a5e2583a211f73604691586b8406ff7296a946dd",
  6358. "shasum": ""
  6359. },
  6360. "require": {
  6361. "php": "^5.6 || ^7.0"
  6362. },
  6363. "require-dev": {
  6364. "athletic/athletic": "^0.1",
  6365. "container-interop/container-interop": "^1.1.0",
  6366. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  6367. "zendframework/zend-coding-standard": "~1.0.0",
  6368. "zendframework/zend-stdlib": "^2.7.3 || ^3.0"
  6369. },
  6370. "suggest": {
  6371. "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature",
  6372. "zendframework/zend-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  6373. },
  6374. "type": "library",
  6375. "extra": {
  6376. "branch-alias": {
  6377. "dev-master": "3.2-dev",
  6378. "dev-develop": "3.3-dev"
  6379. }
  6380. },
  6381. "autoload": {
  6382. "psr-4": {
  6383. "Zend\\EventManager\\": "src/"
  6384. }
  6385. },
  6386. "notification-url": "https://packagist.org/downloads/",
  6387. "license": [
  6388. "BSD-3-Clause"
  6389. ],
  6390. "description": "Trigger and listen to events within a PHP application",
  6391. "homepage": "https://github.com/zendframework/zend-eventmanager",
  6392. "keywords": [
  6393. "event",
  6394. "eventmanager",
  6395. "events",
  6396. "zf2"
  6397. ],
  6398. "time": "2018-04-25T15:33:34+00:00"
  6399. }
  6400. ],
  6401. "packages-dev": [
  6402. {
  6403. "name": "composer/semver",
  6404. "version": "1.4.2",
  6405. "source": {
  6406. "type": "git",
  6407. "url": "https://github.com/composer/semver.git",
  6408. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  6409. },
  6410. "dist": {
  6411. "type": "zip",
  6412. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  6413. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  6414. "shasum": ""
  6415. },
  6416. "require": {
  6417. "php": "^5.3.2 || ^7.0"
  6418. },
  6419. "require-dev": {
  6420. "phpunit/phpunit": "^4.5 || ^5.0.5",
  6421. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  6422. },
  6423. "type": "library",
  6424. "extra": {
  6425. "branch-alias": {
  6426. "dev-master": "1.x-dev"
  6427. }
  6428. },
  6429. "autoload": {
  6430. "psr-4": {
  6431. "Composer\\Semver\\": "src"
  6432. }
  6433. },
  6434. "notification-url": "https://packagist.org/downloads/",
  6435. "license": [
  6436. "MIT"
  6437. ],
  6438. "authors": [
  6439. {
  6440. "name": "Nils Adermann",
  6441. "email": "naderman@naderman.de",
  6442. "homepage": "http://www.naderman.de"
  6443. },
  6444. {
  6445. "name": "Jordi Boggiano",
  6446. "email": "j.boggiano@seld.be",
  6447. "homepage": "http://seld.be"
  6448. },
  6449. {
  6450. "name": "Rob Bast",
  6451. "email": "rob.bast@gmail.com",
  6452. "homepage": "http://robbast.nl"
  6453. }
  6454. ],
  6455. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6456. "keywords": [
  6457. "semantic",
  6458. "semver",
  6459. "validation",
  6460. "versioning"
  6461. ],
  6462. "time": "2016-08-30T16:08:34+00:00"
  6463. },
  6464. {
  6465. "name": "composer/xdebug-handler",
  6466. "version": "1.1.0",
  6467. "source": {
  6468. "type": "git",
  6469. "url": "https://github.com/composer/xdebug-handler.git",
  6470. "reference": "c919dc6c62e221fc6406f861ea13433c0aa24f08"
  6471. },
  6472. "dist": {
  6473. "type": "zip",
  6474. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/c919dc6c62e221fc6406f861ea13433c0aa24f08",
  6475. "reference": "c919dc6c62e221fc6406f861ea13433c0aa24f08",
  6476. "shasum": ""
  6477. },
  6478. "require": {
  6479. "php": "^5.3.2 || ^7.0",
  6480. "psr/log": "^1.0"
  6481. },
  6482. "require-dev": {
  6483. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  6484. },
  6485. "type": "library",
  6486. "autoload": {
  6487. "psr-4": {
  6488. "Composer\\XdebugHandler\\": "src"
  6489. }
  6490. },
  6491. "notification-url": "https://packagist.org/downloads/",
  6492. "license": [
  6493. "MIT"
  6494. ],
  6495. "authors": [
  6496. {
  6497. "name": "John Stevenson",
  6498. "email": "john-stevenson@blueyonder.co.uk"
  6499. }
  6500. ],
  6501. "description": "Restarts a process without xdebug.",
  6502. "keywords": [
  6503. "Xdebug",
  6504. "performance"
  6505. ],
  6506. "time": "2018-04-11T15:42:36+00:00"
  6507. },
  6508. {
  6509. "name": "dama/doctrine-test-bundle",
  6510. "version": "v5.0.1",
  6511. "source": {
  6512. "type": "git",
  6513. "url": "https://github.com/dmaicher/doctrine-test-bundle.git",
  6514. "reference": "c02ff7a3e8502c3ed93b3f40354685e36b9a500a"
  6515. },
  6516. "dist": {
  6517. "type": "zip",
  6518. "url": "https://api.github.com/repos/dmaicher/doctrine-test-bundle/zipball/c02ff7a3e8502c3ed93b3f40354685e36b9a500a",
  6519. "reference": "c02ff7a3e8502c3ed93b3f40354685e36b9a500a",
  6520. "shasum": ""
  6521. },
  6522. "require": {
  6523. "doctrine/dbal": "~2.5",
  6524. "doctrine/doctrine-bundle": "~1.4",
  6525. "php": "^7.1",
  6526. "symfony/framework-bundle": "~2.7|~3.0|~4.0"
  6527. },
  6528. "require-dev": {
  6529. "phpunit/phpunit": "~6.0|~7.0",
  6530. "symfony/yaml": "~2.7|~3.0"
  6531. },
  6532. "type": "symfony-bundle",
  6533. "extra": {
  6534. "branch-alias": {
  6535. "dev-master": "5.1.x-dev"
  6536. }
  6537. },
  6538. "autoload": {
  6539. "psr-4": {
  6540. "DAMA\\DoctrineTestBundle\\": "src/DAMA/DoctrineTestBundle"
  6541. }
  6542. },
  6543. "notification-url": "https://packagist.org/downloads/",
  6544. "license": [
  6545. "MIT"
  6546. ],
  6547. "authors": [
  6548. {
  6549. "name": "David Maicher",
  6550. "email": "mail@dmaicher.de"
  6551. }
  6552. ],
  6553. "description": "Symfony 2/3 bundle to isolate doctrine database tests and improve test performance",
  6554. "keywords": [
  6555. "Symfony 3",
  6556. "doctrine",
  6557. "isolation",
  6558. "performance",
  6559. "symfony",
  6560. "symfony 2",
  6561. "tests"
  6562. ],
  6563. "time": "2018-02-25T14:57:01+00:00"
  6564. },
  6565. {
  6566. "name": "doctrine/data-fixtures",
  6567. "version": "v1.3.1",
  6568. "source": {
  6569. "type": "git",
  6570. "url": "https://github.com/doctrine/data-fixtures.git",
  6571. "reference": "3a1e2c3c600e615a2dffe56d4ca0875cc5233e0a"
  6572. },
  6573. "dist": {
  6574. "type": "zip",
  6575. "url": "https://api.github.com/repos/doctrine/data-fixtures/zipball/3a1e2c3c600e615a2dffe56d4ca0875cc5233e0a",
  6576. "reference": "3a1e2c3c600e615a2dffe56d4ca0875cc5233e0a",
  6577. "shasum": ""
  6578. },
  6579. "require": {
  6580. "doctrine/common": "~2.2",
  6581. "php": "^7.1"
  6582. },
  6583. "conflict": {
  6584. "doctrine/phpcr-odm": "<1.3.0"
  6585. },
  6586. "require-dev": {
  6587. "doctrine/dbal": "^2.5.4",
  6588. "doctrine/orm": "^2.5.4",
  6589. "phpunit/phpunit": "^7.0"
  6590. },
  6591. "suggest": {
  6592. "alcaeus/mongo-php-adapter": "For using MongoDB ODM with PHP 7",
  6593. "doctrine/mongodb-odm": "For loading MongoDB ODM fixtures",
  6594. "doctrine/orm": "For loading ORM fixtures",
  6595. "doctrine/phpcr-odm": "For loading PHPCR ODM fixtures"
  6596. },
  6597. "type": "library",
  6598. "extra": {
  6599. "branch-alias": {
  6600. "dev-master": "1.3.x-dev"
  6601. }
  6602. },
  6603. "autoload": {
  6604. "psr-4": {
  6605. "Doctrine\\Common\\DataFixtures\\": "lib/Doctrine/Common/DataFixtures"
  6606. }
  6607. },
  6608. "notification-url": "https://packagist.org/downloads/",
  6609. "license": [
  6610. "MIT"
  6611. ],
  6612. "authors": [
  6613. {
  6614. "name": "Jonathan Wage",
  6615. "email": "jonwage@gmail.com"
  6616. }
  6617. ],
  6618. "description": "Data Fixtures for all Doctrine Object Managers",
  6619. "homepage": "http://www.doctrine-project.org",
  6620. "keywords": [
  6621. "database"
  6622. ],
  6623. "time": "2018-03-20T09:06:36+00:00"
  6624. },
  6625. {
  6626. "name": "doctrine/doctrine-fixtures-bundle",
  6627. "version": "3.0.2",
  6628. "source": {
  6629. "type": "git",
  6630. "url": "https://github.com/doctrine/DoctrineFixturesBundle.git",
  6631. "reference": "7fc29d2b18c61ed99826b21fbfd1ff9969cc2e7f"
  6632. },
  6633. "dist": {
  6634. "type": "zip",
  6635. "url": "https://api.github.com/repos/doctrine/DoctrineFixturesBundle/zipball/7fc29d2b18c61ed99826b21fbfd1ff9969cc2e7f",
  6636. "reference": "7fc29d2b18c61ed99826b21fbfd1ff9969cc2e7f",
  6637. "shasum": ""
  6638. },
  6639. "require": {
  6640. "doctrine/data-fixtures": "~1.0",
  6641. "doctrine/doctrine-bundle": "~1.0",
  6642. "php": ">=5.5.9|^7.0",
  6643. "symfony/doctrine-bridge": "~2.7|~3.0|~4.0",
  6644. "symfony/framework-bundle": "^3.3|^4.0"
  6645. },
  6646. "require-dev": {
  6647. "symfony/phpunit-bridge": "^3.3"
  6648. },
  6649. "type": "symfony-bundle",
  6650. "extra": {
  6651. "branch-alias": {
  6652. "dev-master": "3.0.x-dev"
  6653. }
  6654. },
  6655. "autoload": {
  6656. "psr-4": {
  6657. "Doctrine\\Bundle\\FixturesBundle\\": ""
  6658. }
  6659. },
  6660. "notification-url": "https://packagist.org/downloads/",
  6661. "license": [
  6662. "MIT"
  6663. ],
  6664. "authors": [
  6665. {
  6666. "name": "Symfony Community",
  6667. "homepage": "http://symfony.com/contributors"
  6668. },
  6669. {
  6670. "name": "Doctrine Project",
  6671. "homepage": "http://www.doctrine-project.org"
  6672. },
  6673. {
  6674. "name": "Fabien Potencier",
  6675. "email": "fabien@symfony.com"
  6676. }
  6677. ],
  6678. "description": "Symfony DoctrineFixturesBundle",
  6679. "homepage": "http://www.doctrine-project.org",
  6680. "keywords": [
  6681. "Fixture",
  6682. "persistence"
  6683. ],
  6684. "time": "2017-12-04T20:26:38+00:00"
  6685. },
  6686. {
  6687. "name": "easycorp/easy-log-handler",
  6688. "version": "v1.0.5",
  6689. "source": {
  6690. "type": "git",
  6691. "url": "https://github.com/EasyCorp/easy-log-handler.git",
  6692. "reference": "21c442f5d08b6761a6fa7653e08a5525fb4ccd2b"
  6693. },
  6694. "dist": {
  6695. "type": "zip",
  6696. "url": "https://api.github.com/repos/EasyCorp/easy-log-handler/zipball/21c442f5d08b6761a6fa7653e08a5525fb4ccd2b",
  6697. "reference": "21c442f5d08b6761a6fa7653e08a5525fb4ccd2b",
  6698. "shasum": ""
  6699. },
  6700. "require": {
  6701. "monolog/monolog": "~1.6",
  6702. "php": ">=5.3.0",
  6703. "symfony/yaml": "~2.3|~3.0|~4.0"
  6704. },
  6705. "type": "library",
  6706. "autoload": {
  6707. "psr-4": {
  6708. "EasyCorp\\EasyLog\\": "src"
  6709. }
  6710. },
  6711. "notification-url": "https://packagist.org/downloads/",
  6712. "license": [
  6713. "MIT"
  6714. ],
  6715. "authors": [
  6716. {
  6717. "name": "Javier Eguiluz",
  6718. "email": "javiereguiluz@gmail.com"
  6719. },
  6720. {
  6721. "name": "Project Contributors",
  6722. "homepage": "https://github.com/EasyCorp/easy-log-handler"
  6723. }
  6724. ],
  6725. "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.",
  6726. "homepage": "https://github.com/EasyCorp/easy-log-handler",
  6727. "keywords": [
  6728. "easy",
  6729. "log",
  6730. "logging",
  6731. "monolog",
  6732. "productivity"
  6733. ],
  6734. "time": "2018-06-12T06:27:09+00:00"
  6735. },
  6736. {
  6737. "name": "friendsofphp/php-cs-fixer",
  6738. "version": "v2.12.1",
  6739. "source": {
  6740. "type": "git",
  6741. "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
  6742. "reference": "beef6cbe6dec7205edcd143842a49f9a691859a6"
  6743. },
  6744. "dist": {
  6745. "type": "zip",
  6746. "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/beef6cbe6dec7205edcd143842a49f9a691859a6",
  6747. "reference": "beef6cbe6dec7205edcd143842a49f9a691859a6",
  6748. "shasum": ""
  6749. },
  6750. "require": {
  6751. "composer/semver": "^1.4",
  6752. "composer/xdebug-handler": "^1.0",
  6753. "doctrine/annotations": "^1.2",
  6754. "ext-json": "*",
  6755. "ext-tokenizer": "*",
  6756. "php": "^5.6 || >=7.0 <7.3",
  6757. "php-cs-fixer/diff": "^1.3",
  6758. "symfony/console": "^3.2 || ^4.0",
  6759. "symfony/event-dispatcher": "^3.0 || ^4.0",
  6760. "symfony/filesystem": "^3.0 || ^4.0",
  6761. "symfony/finder": "^3.0 || ^4.0",
  6762. "symfony/options-resolver": "^3.0 || ^4.0",
  6763. "symfony/polyfill-php70": "^1.0",
  6764. "symfony/polyfill-php72": "^1.4",
  6765. "symfony/process": "^3.0 || ^4.0",
  6766. "symfony/stopwatch": "^3.0 || ^4.0"
  6767. },
  6768. "conflict": {
  6769. "hhvm": "*"
  6770. },
  6771. "require-dev": {
  6772. "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0",
  6773. "justinrainbow/json-schema": "^5.0",
  6774. "keradus/cli-executor": "^1.1",
  6775. "mikey179/vfsstream": "^1.6",
  6776. "php-coveralls/php-coveralls": "^2.1",
  6777. "php-cs-fixer/accessible-object": "^1.0",
  6778. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.0.1",
  6779. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.0.1",
  6780. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1",
  6781. "phpunitgoodpractices/traits": "^1.5",
  6782. "symfony/phpunit-bridge": "^4.0"
  6783. },
  6784. "suggest": {
  6785. "ext-mbstring": "For handling non-UTF8 characters in cache signature.",
  6786. "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
  6787. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
  6788. "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
  6789. },
  6790. "bin": [
  6791. "php-cs-fixer"
  6792. ],
  6793. "type": "application",
  6794. "autoload": {
  6795. "psr-4": {
  6796. "PhpCsFixer\\": "src/"
  6797. },
  6798. "classmap": [
  6799. "tests/Test/AbstractFixerTestCase.php",
  6800. "tests/Test/AbstractIntegrationCaseFactory.php",
  6801. "tests/Test/AbstractIntegrationTestCase.php",
  6802. "tests/Test/Assert/AssertTokensTrait.php",
  6803. "tests/Test/IntegrationCase.php",
  6804. "tests/Test/IntegrationCaseFactory.php",
  6805. "tests/Test/IntegrationCaseFactoryInterface.php",
  6806. "tests/Test/InternalIntegrationCaseFactory.php",
  6807. "tests/TestCase.php"
  6808. ]
  6809. },
  6810. "notification-url": "https://packagist.org/downloads/",
  6811. "license": [
  6812. "MIT"
  6813. ],
  6814. "authors": [
  6815. {
  6816. "name": "Dariusz Rumiński",
  6817. "email": "dariusz.ruminski@gmail.com"
  6818. },
  6819. {
  6820. "name": "Fabien Potencier",
  6821. "email": "fabien@symfony.com"
  6822. }
  6823. ],
  6824. "description": "A tool to automatically fix PHP code style",
  6825. "time": "2018-06-10T08:26:56+00:00"
  6826. },
  6827. {
  6828. "name": "nikic/php-parser",
  6829. "version": "v4.0.2",
  6830. "source": {
  6831. "type": "git",
  6832. "url": "https://github.com/nikic/PHP-Parser.git",
  6833. "reference": "35b8caf75e791ba1b2d24fec1552168d72692b12"
  6834. },
  6835. "dist": {
  6836. "type": "zip",
  6837. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/35b8caf75e791ba1b2d24fec1552168d72692b12",
  6838. "reference": "35b8caf75e791ba1b2d24fec1552168d72692b12",
  6839. "shasum": ""
  6840. },
  6841. "require": {
  6842. "ext-tokenizer": "*",
  6843. "php": ">=7.0"
  6844. },
  6845. "require-dev": {
  6846. "phpunit/phpunit": "^6.5 || ^7.0"
  6847. },
  6848. "bin": [
  6849. "bin/php-parse"
  6850. ],
  6851. "type": "library",
  6852. "extra": {
  6853. "branch-alias": {
  6854. "dev-master": "4.0-dev"
  6855. }
  6856. },
  6857. "autoload": {
  6858. "psr-4": {
  6859. "PhpParser\\": "lib/PhpParser"
  6860. }
  6861. },
  6862. "notification-url": "https://packagist.org/downloads/",
  6863. "license": [
  6864. "BSD-3-Clause"
  6865. ],
  6866. "authors": [
  6867. {
  6868. "name": "Nikita Popov"
  6869. }
  6870. ],
  6871. "description": "A PHP parser written in PHP",
  6872. "keywords": [
  6873. "parser",
  6874. "php"
  6875. ],
  6876. "time": "2018-06-03T11:33:10+00:00"
  6877. },
  6878. {
  6879. "name": "php-cs-fixer/diff",
  6880. "version": "v1.3.0",
  6881. "source": {
  6882. "type": "git",
  6883. "url": "https://github.com/PHP-CS-Fixer/diff.git",
  6884. "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756"
  6885. },
  6886. "dist": {
  6887. "type": "zip",
  6888. "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/78bb099e9c16361126c86ce82ec4405ebab8e756",
  6889. "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756",
  6890. "shasum": ""
  6891. },
  6892. "require": {
  6893. "php": "^5.6 || ^7.0"
  6894. },
  6895. "require-dev": {
  6896. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  6897. "symfony/process": "^3.3"
  6898. },
  6899. "type": "library",
  6900. "autoload": {
  6901. "classmap": [
  6902. "src/"
  6903. ]
  6904. },
  6905. "notification-url": "https://packagist.org/downloads/",
  6906. "license": [
  6907. "BSD-3-Clause"
  6908. ],
  6909. "authors": [
  6910. {
  6911. "name": "Kore Nordmann",
  6912. "email": "mail@kore-nordmann.de"
  6913. },
  6914. {
  6915. "name": "Sebastian Bergmann",
  6916. "email": "sebastian@phpunit.de"
  6917. },
  6918. {
  6919. "name": "SpacePossum"
  6920. }
  6921. ],
  6922. "description": "sebastian/diff v2 backport support for PHP5.6",
  6923. "homepage": "https://github.com/PHP-CS-Fixer",
  6924. "keywords": [
  6925. "diff"
  6926. ],
  6927. "time": "2018-02-15T16:58:55+00:00"
  6928. },
  6929. {
  6930. "name": "symfony/browser-kit",
  6931. "version": "v4.1.1",
  6932. "source": {
  6933. "type": "git",
  6934. "url": "https://github.com/symfony/browser-kit.git",
  6935. "reference": "ff9ac5d5808a530b2e7f6abcf3a2412d4f9bcd62"
  6936. },
  6937. "dist": {
  6938. "type": "zip",
  6939. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/ff9ac5d5808a530b2e7f6abcf3a2412d4f9bcd62",
  6940. "reference": "ff9ac5d5808a530b2e7f6abcf3a2412d4f9bcd62",
  6941. "shasum": ""
  6942. },
  6943. "require": {
  6944. "php": "^7.1.3",
  6945. "symfony/dom-crawler": "~3.4|~4.0"
  6946. },
  6947. "require-dev": {
  6948. "symfony/css-selector": "~3.4|~4.0",
  6949. "symfony/process": "~3.4|~4.0"
  6950. },
  6951. "suggest": {
  6952. "symfony/process": ""
  6953. },
  6954. "type": "library",
  6955. "extra": {
  6956. "branch-alias": {
  6957. "dev-master": "4.1-dev"
  6958. }
  6959. },
  6960. "autoload": {
  6961. "psr-4": {
  6962. "Symfony\\Component\\BrowserKit\\": ""
  6963. },
  6964. "exclude-from-classmap": [
  6965. "/Tests/"
  6966. ]
  6967. },
  6968. "notification-url": "https://packagist.org/downloads/",
  6969. "license": [
  6970. "MIT"
  6971. ],
  6972. "authors": [
  6973. {
  6974. "name": "Fabien Potencier",
  6975. "email": "fabien@symfony.com"
  6976. },
  6977. {
  6978. "name": "Symfony Community",
  6979. "homepage": "https://symfony.com/contributors"
  6980. }
  6981. ],
  6982. "description": "Symfony BrowserKit Component",
  6983. "homepage": "https://symfony.com",
  6984. "time": "2018-06-04T17:31:56+00:00"
  6985. },
  6986. {
  6987. "name": "symfony/css-selector",
  6988. "version": "v4.1.1",
  6989. "source": {
  6990. "type": "git",
  6991. "url": "https://github.com/symfony/css-selector.git",
  6992. "reference": "03ac71606ecb0b0ce792faa17d74cc32c2949ef4"
  6993. },
  6994. "dist": {
  6995. "type": "zip",
  6996. "url": "https://api.github.com/repos/symfony/css-selector/zipball/03ac71606ecb0b0ce792faa17d74cc32c2949ef4",
  6997. "reference": "03ac71606ecb0b0ce792faa17d74cc32c2949ef4",
  6998. "shasum": ""
  6999. },
  7000. "require": {
  7001. "php": "^7.1.3"
  7002. },
  7003. "type": "library",
  7004. "extra": {
  7005. "branch-alias": {
  7006. "dev-master": "4.1-dev"
  7007. }
  7008. },
  7009. "autoload": {
  7010. "psr-4": {
  7011. "Symfony\\Component\\CssSelector\\": ""
  7012. },
  7013. "exclude-from-classmap": [
  7014. "/Tests/"
  7015. ]
  7016. },
  7017. "notification-url": "https://packagist.org/downloads/",
  7018. "license": [
  7019. "MIT"
  7020. ],
  7021. "authors": [
  7022. {
  7023. "name": "Jean-François Simon",
  7024. "email": "jeanfrancois.simon@sensiolabs.com"
  7025. },
  7026. {
  7027. "name": "Fabien Potencier",
  7028. "email": "fabien@symfony.com"
  7029. },
  7030. {
  7031. "name": "Symfony Community",
  7032. "homepage": "https://symfony.com/contributors"
  7033. }
  7034. ],
  7035. "description": "Symfony CssSelector Component",
  7036. "homepage": "https://symfony.com",
  7037. "time": "2018-05-30T07:26:09+00:00"
  7038. },
  7039. {
  7040. "name": "symfony/debug-bundle",
  7041. "version": "v4.1.1",
  7042. "source": {
  7043. "type": "git",
  7044. "url": "https://github.com/symfony/debug-bundle.git",
  7045. "reference": "018e0f393ef6d073e2bf445dfcf9aad310698a51"
  7046. },
  7047. "dist": {
  7048. "type": "zip",
  7049. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/018e0f393ef6d073e2bf445dfcf9aad310698a51",
  7050. "reference": "018e0f393ef6d073e2bf445dfcf9aad310698a51",
  7051. "shasum": ""
  7052. },
  7053. "require": {
  7054. "ext-xml": "*",
  7055. "php": "^7.1.3",
  7056. "symfony/http-kernel": "~3.4|~4.0",
  7057. "symfony/twig-bridge": "~3.4|~4.0",
  7058. "symfony/var-dumper": "^4.1.1"
  7059. },
  7060. "conflict": {
  7061. "symfony/dependency-injection": "<3.4"
  7062. },
  7063. "require-dev": {
  7064. "symfony/config": "~3.4|~4.0",
  7065. "symfony/dependency-injection": "~3.4|~4.0",
  7066. "symfony/web-profiler-bundle": "~3.4|~4.0"
  7067. },
  7068. "suggest": {
  7069. "symfony/config": "For service container configuration",
  7070. "symfony/dependency-injection": "For using as a service from the container"
  7071. },
  7072. "type": "symfony-bundle",
  7073. "extra": {
  7074. "branch-alias": {
  7075. "dev-master": "4.1-dev"
  7076. }
  7077. },
  7078. "autoload": {
  7079. "psr-4": {
  7080. "Symfony\\Bundle\\DebugBundle\\": ""
  7081. },
  7082. "exclude-from-classmap": [
  7083. "/Tests/"
  7084. ]
  7085. },
  7086. "notification-url": "https://packagist.org/downloads/",
  7087. "license": [
  7088. "MIT"
  7089. ],
  7090. "authors": [
  7091. {
  7092. "name": "Fabien Potencier",
  7093. "email": "fabien@symfony.com"
  7094. },
  7095. {
  7096. "name": "Symfony Community",
  7097. "homepage": "https://symfony.com/contributors"
  7098. }
  7099. ],
  7100. "description": "Symfony DebugBundle",
  7101. "homepage": "https://symfony.com",
  7102. "time": "2018-06-23T12:23:56+00:00"
  7103. },
  7104. {
  7105. "name": "symfony/debug-pack",
  7106. "version": "v1.0.5",
  7107. "source": {
  7108. "type": "git",
  7109. "url": "https://github.com/symfony/debug-pack.git",
  7110. "reference": "ae4b15596788f9592f67f8615398671bf3f796e4"
  7111. },
  7112. "dist": {
  7113. "type": "zip",
  7114. "url": "https://api.github.com/repos/symfony/debug-pack/zipball/ae4b15596788f9592f67f8615398671bf3f796e4",
  7115. "reference": "ae4b15596788f9592f67f8615398671bf3f796e4",
  7116. "shasum": ""
  7117. },
  7118. "require": {
  7119. "easycorp/easy-log-handler": "^1.0.2",
  7120. "php": "^7.0",
  7121. "symfony/debug-bundle": "^3.3|^4.0",
  7122. "symfony/monolog-bundle": "^3.0",
  7123. "symfony/profiler-pack": "^1.0",
  7124. "symfony/var-dumper": "^3.3|^4.0"
  7125. },
  7126. "type": "symfony-pack",
  7127. "notification-url": "https://packagist.org/downloads/",
  7128. "license": [
  7129. "MIT"
  7130. ],
  7131. "description": "A debug pack for Symfony projects",
  7132. "time": "2018-03-29T13:53:44+00:00"
  7133. },
  7134. {
  7135. "name": "symfony/dom-crawler",
  7136. "version": "v4.1.1",
  7137. "source": {
  7138. "type": "git",
  7139. "url": "https://github.com/symfony/dom-crawler.git",
  7140. "reference": "3350cacf151b48d903114ab8f7a4ccb23e07e10a"
  7141. },
  7142. "dist": {
  7143. "type": "zip",
  7144. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/3350cacf151b48d903114ab8f7a4ccb23e07e10a",
  7145. "reference": "3350cacf151b48d903114ab8f7a4ccb23e07e10a",
  7146. "shasum": ""
  7147. },
  7148. "require": {
  7149. "php": "^7.1.3",
  7150. "symfony/polyfill-ctype": "~1.8",
  7151. "symfony/polyfill-mbstring": "~1.0"
  7152. },
  7153. "require-dev": {
  7154. "symfony/css-selector": "~3.4|~4.0"
  7155. },
  7156. "suggest": {
  7157. "symfony/css-selector": ""
  7158. },
  7159. "type": "library",
  7160. "extra": {
  7161. "branch-alias": {
  7162. "dev-master": "4.1-dev"
  7163. }
  7164. },
  7165. "autoload": {
  7166. "psr-4": {
  7167. "Symfony\\Component\\DomCrawler\\": ""
  7168. },
  7169. "exclude-from-classmap": [
  7170. "/Tests/"
  7171. ]
  7172. },
  7173. "notification-url": "https://packagist.org/downloads/",
  7174. "license": [
  7175. "MIT"
  7176. ],
  7177. "authors": [
  7178. {
  7179. "name": "Fabien Potencier",
  7180. "email": "fabien@symfony.com"
  7181. },
  7182. {
  7183. "name": "Symfony Community",
  7184. "homepage": "https://symfony.com/contributors"
  7185. }
  7186. ],
  7187. "description": "Symfony DomCrawler Component",
  7188. "homepage": "https://symfony.com",
  7189. "time": "2018-05-01T23:02:13+00:00"
  7190. },
  7191. {
  7192. "name": "symfony/dotenv",
  7193. "version": "v4.1.1",
  7194. "source": {
  7195. "type": "git",
  7196. "url": "https://github.com/symfony/dotenv.git",
  7197. "reference": "f98b6b65e04dd51f40d2cfc81c2c833ff3773b1e"
  7198. },
  7199. "dist": {
  7200. "type": "zip",
  7201. "url": "https://api.github.com/repos/symfony/dotenv/zipball/f98b6b65e04dd51f40d2cfc81c2c833ff3773b1e",
  7202. "reference": "f98b6b65e04dd51f40d2cfc81c2c833ff3773b1e",
  7203. "shasum": ""
  7204. },
  7205. "require": {
  7206. "php": "^7.1.3"
  7207. },
  7208. "require-dev": {
  7209. "symfony/process": "~3.4|~4.0"
  7210. },
  7211. "type": "library",
  7212. "extra": {
  7213. "branch-alias": {
  7214. "dev-master": "4.1-dev"
  7215. }
  7216. },
  7217. "autoload": {
  7218. "psr-4": {
  7219. "Symfony\\Component\\Dotenv\\": ""
  7220. },
  7221. "exclude-from-classmap": [
  7222. "/Tests/"
  7223. ]
  7224. },
  7225. "notification-url": "https://packagist.org/downloads/",
  7226. "license": [
  7227. "MIT"
  7228. ],
  7229. "authors": [
  7230. {
  7231. "name": "Fabien Potencier",
  7232. "email": "fabien@symfony.com"
  7233. },
  7234. {
  7235. "name": "Symfony Community",
  7236. "homepage": "https://symfony.com/contributors"
  7237. }
  7238. ],
  7239. "description": "Registers environment variables from a .env file",
  7240. "homepage": "https://symfony.com",
  7241. "keywords": [
  7242. "dotenv",
  7243. "env",
  7244. "environment"
  7245. ],
  7246. "time": "2018-05-30T07:26:09+00:00"
  7247. },
  7248. {
  7249. "name": "symfony/maker-bundle",
  7250. "version": "v1.5.0",
  7251. "source": {
  7252. "type": "git",
  7253. "url": "https://github.com/symfony/maker-bundle.git",
  7254. "reference": "bb0485a3b2eecc561eff735109316677e18fb1d1"
  7255. },
  7256. "dist": {
  7257. "type": "zip",
  7258. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/bb0485a3b2eecc561eff735109316677e18fb1d1",
  7259. "reference": "bb0485a3b2eecc561eff735109316677e18fb1d1",
  7260. "shasum": ""
  7261. },
  7262. "require": {
  7263. "doctrine/inflector": "^1.2",
  7264. "nikic/php-parser": "^4.0",
  7265. "php": "^7.0.8",
  7266. "symfony/config": "^3.4|^4.0",
  7267. "symfony/console": "^3.4|^4.0",
  7268. "symfony/dependency-injection": "^3.4|^4.0",
  7269. "symfony/filesystem": "^3.4|^4.0",
  7270. "symfony/finder": "^3.4|^4.0",
  7271. "symfony/framework-bundle": "^3.4|^4.0",
  7272. "symfony/http-kernel": "^3.4|^4.0"
  7273. },
  7274. "require-dev": {
  7275. "allocine/twigcs": "^3.0",
  7276. "doctrine/doctrine-bundle": "^1.8",
  7277. "doctrine/orm": "^2.3",
  7278. "friendsofphp/php-cs-fixer": "^2.8",
  7279. "symfony/phpunit-bridge": "^3.4|^4.0",
  7280. "symfony/process": "^3.4|^4.0"
  7281. },
  7282. "type": "symfony-bundle",
  7283. "extra": {
  7284. "branch-alias": {
  7285. "dev-master": "1.0-dev"
  7286. }
  7287. },
  7288. "autoload": {
  7289. "psr-4": {
  7290. "Symfony\\Bundle\\MakerBundle\\": "src/"
  7291. }
  7292. },
  7293. "notification-url": "https://packagist.org/downloads/",
  7294. "license": [
  7295. "MIT"
  7296. ],
  7297. "authors": [
  7298. {
  7299. "name": "Symfony Community",
  7300. "homepage": "https://symfony.com/contributors"
  7301. }
  7302. ],
  7303. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  7304. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  7305. "keywords": [
  7306. "code generator",
  7307. "generator",
  7308. "scaffold",
  7309. "scaffolding"
  7310. ],
  7311. "time": "2018-05-17T19:26:29+00:00"
  7312. },
  7313. {
  7314. "name": "symfony/phpunit-bridge",
  7315. "version": "v4.1.1",
  7316. "source": {
  7317. "type": "git",
  7318. "url": "https://github.com/symfony/phpunit-bridge.git",
  7319. "reference": "c7f28cbf2df4e9deed7fc376ca4f146eaa5afc8a"
  7320. },
  7321. "dist": {
  7322. "type": "zip",
  7323. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/c7f28cbf2df4e9deed7fc376ca4f146eaa5afc8a",
  7324. "reference": "c7f28cbf2df4e9deed7fc376ca4f146eaa5afc8a",
  7325. "shasum": ""
  7326. },
  7327. "require": {
  7328. "php": ">=5.3.3"
  7329. },
  7330. "conflict": {
  7331. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  7332. },
  7333. "suggest": {
  7334. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  7335. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  7336. },
  7337. "bin": [
  7338. "bin/simple-phpunit"
  7339. ],
  7340. "type": "symfony-bridge",
  7341. "extra": {
  7342. "branch-alias": {
  7343. "dev-master": "4.1-dev"
  7344. },
  7345. "thanks": {
  7346. "name": "phpunit/phpunit",
  7347. "url": "https://github.com/sebastianbergmann/phpunit"
  7348. }
  7349. },
  7350. "autoload": {
  7351. "files": [
  7352. "bootstrap.php"
  7353. ],
  7354. "psr-4": {
  7355. "Symfony\\Bridge\\PhpUnit\\": ""
  7356. },
  7357. "exclude-from-classmap": [
  7358. "/Tests/"
  7359. ]
  7360. },
  7361. "notification-url": "https://packagist.org/downloads/",
  7362. "license": [
  7363. "MIT"
  7364. ],
  7365. "authors": [
  7366. {
  7367. "name": "Nicolas Grekas",
  7368. "email": "p@tchwork.com"
  7369. },
  7370. {
  7371. "name": "Symfony Community",
  7372. "homepage": "https://symfony.com/contributors"
  7373. }
  7374. ],
  7375. "description": "Symfony PHPUnit Bridge",
  7376. "homepage": "https://symfony.com",
  7377. "time": "2018-06-11T12:56:28+00:00"
  7378. },
  7379. {
  7380. "name": "symfony/polyfill-php72",
  7381. "version": "v1.8.0",
  7382. "source": {
  7383. "type": "git",
  7384. "url": "https://github.com/symfony/polyfill-php72.git",
  7385. "reference": "a4576e282d782ad82397f3e4ec1df8e0f0cafb46"
  7386. },
  7387. "dist": {
  7388. "type": "zip",
  7389. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/a4576e282d782ad82397f3e4ec1df8e0f0cafb46",
  7390. "reference": "a4576e282d782ad82397f3e4ec1df8e0f0cafb46",
  7391. "shasum": ""
  7392. },
  7393. "require": {
  7394. "php": ">=5.3.3"
  7395. },
  7396. "type": "library",
  7397. "extra": {
  7398. "branch-alias": {
  7399. "dev-master": "1.8-dev"
  7400. }
  7401. },
  7402. "autoload": {
  7403. "psr-4": {
  7404. "Symfony\\Polyfill\\Php72\\": ""
  7405. },
  7406. "files": [
  7407. "bootstrap.php"
  7408. ]
  7409. },
  7410. "notification-url": "https://packagist.org/downloads/",
  7411. "license": [
  7412. "MIT"
  7413. ],
  7414. "authors": [
  7415. {
  7416. "name": "Nicolas Grekas",
  7417. "email": "p@tchwork.com"
  7418. },
  7419. {
  7420. "name": "Symfony Community",
  7421. "homepage": "https://symfony.com/contributors"
  7422. }
  7423. ],
  7424. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7425. "homepage": "https://symfony.com",
  7426. "keywords": [
  7427. "compatibility",
  7428. "polyfill",
  7429. "portable",
  7430. "shim"
  7431. ],
  7432. "time": "2018-04-26T10:06:28+00:00"
  7433. },
  7434. {
  7435. "name": "symfony/profiler-pack",
  7436. "version": "v1.0.3",
  7437. "source": {
  7438. "type": "git",
  7439. "url": "https://github.com/symfony/profiler-pack.git",
  7440. "reference": "fa2e2dad522a3bef322196abad28ffce6d0fdbc5"
  7441. },
  7442. "dist": {
  7443. "type": "zip",
  7444. "url": "https://api.github.com/repos/symfony/profiler-pack/zipball/fa2e2dad522a3bef322196abad28ffce6d0fdbc5",
  7445. "reference": "fa2e2dad522a3bef322196abad28ffce6d0fdbc5",
  7446. "shasum": ""
  7447. },
  7448. "require": {
  7449. "php": "^7.0",
  7450. "symfony/stopwatch": "^3.3|^4.0",
  7451. "symfony/twig-bundle": "^3.3|^4.0",
  7452. "symfony/web-profiler-bundle": "^3.3|^4.0"
  7453. },
  7454. "type": "symfony-pack",
  7455. "notification-url": "https://packagist.org/downloads/",
  7456. "license": [
  7457. "MIT"
  7458. ],
  7459. "description": "A pack for the Symfony web profiler",
  7460. "time": "2017-12-12T01:48:24+00:00"
  7461. },
  7462. {
  7463. "name": "symfony/stopwatch",
  7464. "version": "v4.1.1",
  7465. "source": {
  7466. "type": "git",
  7467. "url": "https://github.com/symfony/stopwatch.git",
  7468. "reference": "07463bbbbbfe119045a24c4a516f92ebd2752784"
  7469. },
  7470. "dist": {
  7471. "type": "zip",
  7472. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/07463bbbbbfe119045a24c4a516f92ebd2752784",
  7473. "reference": "07463bbbbbfe119045a24c4a516f92ebd2752784",
  7474. "shasum": ""
  7475. },
  7476. "require": {
  7477. "php": "^7.1.3"
  7478. },
  7479. "type": "library",
  7480. "extra": {
  7481. "branch-alias": {
  7482. "dev-master": "4.1-dev"
  7483. }
  7484. },
  7485. "autoload": {
  7486. "psr-4": {
  7487. "Symfony\\Component\\Stopwatch\\": ""
  7488. },
  7489. "exclude-from-classmap": [
  7490. "/Tests/"
  7491. ]
  7492. },
  7493. "notification-url": "https://packagist.org/downloads/",
  7494. "license": [
  7495. "MIT"
  7496. ],
  7497. "authors": [
  7498. {
  7499. "name": "Fabien Potencier",
  7500. "email": "fabien@symfony.com"
  7501. },
  7502. {
  7503. "name": "Symfony Community",
  7504. "homepage": "https://symfony.com/contributors"
  7505. }
  7506. ],
  7507. "description": "Symfony Stopwatch Component",
  7508. "homepage": "https://symfony.com",
  7509. "time": "2018-02-19T16:51:42+00:00"
  7510. },
  7511. {
  7512. "name": "symfony/var-dumper",
  7513. "version": "v4.1.1",
  7514. "source": {
  7515. "type": "git",
  7516. "url": "https://github.com/symfony/var-dumper.git",
  7517. "reference": "b2eebaec085d1f2cafbad7644733d494a3bbbc9b"
  7518. },
  7519. "dist": {
  7520. "type": "zip",
  7521. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b2eebaec085d1f2cafbad7644733d494a3bbbc9b",
  7522. "reference": "b2eebaec085d1f2cafbad7644733d494a3bbbc9b",
  7523. "shasum": ""
  7524. },
  7525. "require": {
  7526. "php": "^7.1.3",
  7527. "symfony/polyfill-mbstring": "~1.0",
  7528. "symfony/polyfill-php72": "~1.5"
  7529. },
  7530. "conflict": {
  7531. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  7532. "symfony/console": "<3.4"
  7533. },
  7534. "require-dev": {
  7535. "ext-iconv": "*",
  7536. "symfony/process": "~3.4|~4.0",
  7537. "twig/twig": "~1.34|~2.4"
  7538. },
  7539. "suggest": {
  7540. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7541. "ext-intl": "To show region name in time zone dump",
  7542. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7543. },
  7544. "bin": [
  7545. "Resources/bin/var-dump-server"
  7546. ],
  7547. "type": "library",
  7548. "extra": {
  7549. "branch-alias": {
  7550. "dev-master": "4.1-dev"
  7551. }
  7552. },
  7553. "autoload": {
  7554. "files": [
  7555. "Resources/functions/dump.php"
  7556. ],
  7557. "psr-4": {
  7558. "Symfony\\Component\\VarDumper\\": ""
  7559. },
  7560. "exclude-from-classmap": [
  7561. "/Tests/"
  7562. ]
  7563. },
  7564. "notification-url": "https://packagist.org/downloads/",
  7565. "license": [
  7566. "MIT"
  7567. ],
  7568. "authors": [
  7569. {
  7570. "name": "Nicolas Grekas",
  7571. "email": "p@tchwork.com"
  7572. },
  7573. {
  7574. "name": "Symfony Community",
  7575. "homepage": "https://symfony.com/contributors"
  7576. }
  7577. ],
  7578. "description": "Symfony mechanism for exploring and dumping PHP variables",
  7579. "homepage": "https://symfony.com",
  7580. "keywords": [
  7581. "debug",
  7582. "dump"
  7583. ],
  7584. "time": "2018-06-23T12:23:56+00:00"
  7585. },
  7586. {
  7587. "name": "symfony/web-profiler-bundle",
  7588. "version": "v4.1.1",
  7589. "source": {
  7590. "type": "git",
  7591. "url": "https://github.com/symfony/web-profiler-bundle.git",
  7592. "reference": "0043c661d7dda6cc07b28345832912e548e204b6"
  7593. },
  7594. "dist": {
  7595. "type": "zip",
  7596. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/0043c661d7dda6cc07b28345832912e548e204b6",
  7597. "reference": "0043c661d7dda6cc07b28345832912e548e204b6",
  7598. "shasum": ""
  7599. },
  7600. "require": {
  7601. "php": "^7.1.3",
  7602. "symfony/http-kernel": "~4.1",
  7603. "symfony/routing": "~3.4|~4.0",
  7604. "symfony/twig-bridge": "~3.4|~4.0",
  7605. "symfony/var-dumper": "~3.4|~4.0",
  7606. "twig/twig": "~1.34|~2.4"
  7607. },
  7608. "conflict": {
  7609. "symfony/config": "<3.4",
  7610. "symfony/dependency-injection": "<3.4",
  7611. "symfony/event-dispatcher": "<3.4",
  7612. "symfony/var-dumper": "<3.4"
  7613. },
  7614. "require-dev": {
  7615. "symfony/config": "~3.4|~4.0",
  7616. "symfony/console": "~3.4|~4.0",
  7617. "symfony/dependency-injection": "~3.4|~4.0",
  7618. "symfony/stopwatch": "~3.4|~4.0"
  7619. },
  7620. "type": "symfony-bundle",
  7621. "extra": {
  7622. "branch-alias": {
  7623. "dev-master": "4.1-dev"
  7624. }
  7625. },
  7626. "autoload": {
  7627. "psr-4": {
  7628. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  7629. },
  7630. "exclude-from-classmap": [
  7631. "/Tests/"
  7632. ]
  7633. },
  7634. "notification-url": "https://packagist.org/downloads/",
  7635. "license": [
  7636. "MIT"
  7637. ],
  7638. "authors": [
  7639. {
  7640. "name": "Fabien Potencier",
  7641. "email": "fabien@symfony.com"
  7642. },
  7643. {
  7644. "name": "Symfony Community",
  7645. "homepage": "https://symfony.com/contributors"
  7646. }
  7647. ],
  7648. "description": "Symfony WebProfilerBundle",
  7649. "homepage": "https://symfony.com",
  7650. "time": "2018-06-12T12:15:08+00:00"
  7651. },
  7652. {
  7653. "name": "symfony/web-server-bundle",
  7654. "version": "v4.1.1",
  7655. "source": {
  7656. "type": "git",
  7657. "url": "https://github.com/symfony/web-server-bundle.git",
  7658. "reference": "d8f9acbb98e8ce8c45aabe9b695615bed0e77fb4"
  7659. },
  7660. "dist": {
  7661. "type": "zip",
  7662. "url": "https://api.github.com/repos/symfony/web-server-bundle/zipball/d8f9acbb98e8ce8c45aabe9b695615bed0e77fb4",
  7663. "reference": "d8f9acbb98e8ce8c45aabe9b695615bed0e77fb4",
  7664. "shasum": ""
  7665. },
  7666. "require": {
  7667. "php": "^7.1.3",
  7668. "symfony/config": "~3.4|~4.0",
  7669. "symfony/console": "~3.4|~4.0",
  7670. "symfony/dependency-injection": "~3.4|~4.0",
  7671. "symfony/http-kernel": "~3.4|~4.0",
  7672. "symfony/polyfill-ctype": "~1.8",
  7673. "symfony/process": "^3.4.2|^4.0.2"
  7674. },
  7675. "suggest": {
  7676. "symfony/expression-language": "For using the filter option of the log server.",
  7677. "symfony/monolog-bridge": "For using the log server."
  7678. },
  7679. "type": "symfony-bundle",
  7680. "extra": {
  7681. "branch-alias": {
  7682. "dev-master": "4.1-dev"
  7683. }
  7684. },
  7685. "autoload": {
  7686. "psr-4": {
  7687. "Symfony\\Bundle\\WebServerBundle\\": ""
  7688. },
  7689. "exclude-from-classmap": [
  7690. "/Tests/"
  7691. ]
  7692. },
  7693. "notification-url": "https://packagist.org/downloads/",
  7694. "license": [
  7695. "MIT"
  7696. ],
  7697. "authors": [
  7698. {
  7699. "name": "Fabien Potencier",
  7700. "email": "fabien@symfony.com"
  7701. },
  7702. {
  7703. "name": "Symfony Community",
  7704. "homepage": "https://symfony.com/contributors"
  7705. }
  7706. ],
  7707. "description": "Symfony WebServerBundle",
  7708. "homepage": "https://symfony.com",
  7709. "time": "2018-05-07T07:14:12+00:00"
  7710. },
  7711. {
  7712. "name": "symfony/yaml",
  7713. "version": "v4.1.1",
  7714. "source": {
  7715. "type": "git",
  7716. "url": "https://github.com/symfony/yaml.git",
  7717. "reference": "80e4bfa9685fc4a09acc4a857ec16974a9cd944e"
  7718. },
  7719. "dist": {
  7720. "type": "zip",
  7721. "url": "https://api.github.com/repos/symfony/yaml/zipball/80e4bfa9685fc4a09acc4a857ec16974a9cd944e",
  7722. "reference": "80e4bfa9685fc4a09acc4a857ec16974a9cd944e",
  7723. "shasum": ""
  7724. },
  7725. "require": {
  7726. "php": "^7.1.3",
  7727. "symfony/polyfill-ctype": "~1.8"
  7728. },
  7729. "conflict": {
  7730. "symfony/console": "<3.4"
  7731. },
  7732. "require-dev": {
  7733. "symfony/console": "~3.4|~4.0"
  7734. },
  7735. "suggest": {
  7736. "symfony/console": "For validating YAML files using the lint command"
  7737. },
  7738. "type": "library",
  7739. "extra": {
  7740. "branch-alias": {
  7741. "dev-master": "4.1-dev"
  7742. }
  7743. },
  7744. "autoload": {
  7745. "psr-4": {
  7746. "Symfony\\Component\\Yaml\\": ""
  7747. },
  7748. "exclude-from-classmap": [
  7749. "/Tests/"
  7750. ]
  7751. },
  7752. "notification-url": "https://packagist.org/downloads/",
  7753. "license": [
  7754. "MIT"
  7755. ],
  7756. "authors": [
  7757. {
  7758. "name": "Fabien Potencier",
  7759. "email": "fabien@symfony.com"
  7760. },
  7761. {
  7762. "name": "Symfony Community",
  7763. "homepage": "https://symfony.com/contributors"
  7764. }
  7765. ],
  7766. "description": "Symfony Yaml Component",
  7767. "homepage": "https://symfony.com",
  7768. "time": "2018-05-30T07:26:09+00:00"
  7769. }
  7770. ],
  7771. "aliases": [],
  7772. "minimum-stability": "stable",
  7773. "stability-flags": [],
  7774. "prefer-stable": false,
  7775. "prefer-lowest": false,
  7776. "platform": {
  7777. "php": "^7.1.3",
  7778. "ext-apcu": "*",
  7779. "ext-iconv": "*",
  7780. "ext-pdo_pgsql": "*"
  7781. },
  7782. "platform-dev": [],
  7783. "platform-overrides": {
  7784. "php": "7.1.3"
  7785. }
  7786. }