composer.lock 235 KB

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