composer.lock 235 KB

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