composer.lock 276 KB

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