composer.lock 370 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131
  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": "44946c855081fcd12f1f7e53c4c7576d",
  8. "packages": [
  9. {
  10. "name": "alchemy/resource-component",
  11. "version": "0.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/resource-component.git",
  15. "reference": "5c7680f111c359136051b2155b64851f7da1063a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/resource-component/zipball/5c7680f111c359136051b2155b64851f7da1063a",
  20. "reference": "5c7680f111c359136051b2155b64851f7da1063a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "beberlei/assert": "^2.5",
  25. "php": ">=5.5",
  26. "symfony/polyfill-mbstring": "^1.1"
  27. },
  28. "require-dev": {
  29. "mikey179/vfsstream": "^1.6",
  30. "phpunit/phpunit": "^4.0|^5.0"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "0.1.x-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Alchemy\\Resource\\": "src/"
  41. },
  42. "files": [
  43. "src/functions.php"
  44. ]
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Alchemy",
  53. "email": "dev.team@alchemy.fr",
  54. "homepage": "http://www.alchemy.fr/"
  55. }
  56. ],
  57. "description": "Resource component",
  58. "keywords": [
  59. "alchemy",
  60. "resource",
  61. "uri"
  62. ],
  63. "support": {
  64. "issues": "https://github.com/alchemy-fr/resource-component/issues",
  65. "source": "https://github.com/alchemy-fr/resource-component/tree/master"
  66. },
  67. "time": "2016-05-22T08:56:59+00:00"
  68. },
  69. {
  70. "name": "alchemy/zippy",
  71. "version": "v0.5.x-dev",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/alchemy-fr/Zippy.git",
  75. "reference": "a1f0a0d67af1eb247191e938f1d3ee625b90e2a1"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/a1f0a0d67af1eb247191e938f1d3ee625b90e2a1",
  80. "reference": "a1f0a0d67af1eb247191e938f1d3ee625b90e2a1",
  81. "shasum": ""
  82. },
  83. "require": {
  84. "alchemy/resource-component": "^0.1",
  85. "ext-mbstring": "*",
  86. "php": ">=5.5"
  87. },
  88. "require-dev": {
  89. "ext-rar": "*",
  90. "ext-zip": "*",
  91. "guzzle/guzzle": "~3.0",
  92. "guzzlehttp/guzzle": "^6.0",
  93. "pear-pear.php.net/archive_tar": "*",
  94. "phpunit/phpunit": "^4.0|^5.0"
  95. },
  96. "suggest": {
  97. "ext-rar": "To read/write Rar files",
  98. "ext-tar": "To read/write Tar files",
  99. "ext-zip": "To read/write Zip files",
  100. "guzzle/guzzle": "To read archives and files from remote sources (Guzzle 3)",
  101. "guzzlehttp/guzzle": "To read archives and files from remote sources (Guzzle 6)"
  102. },
  103. "type": "library",
  104. "extra": {
  105. "branch-alias": {
  106. "dev-master": "0.4.x-dev"
  107. }
  108. },
  109. "autoload": {
  110. "psr-4": {
  111. "Alchemy\\Zippy\\": "src/"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "MIT"
  117. ],
  118. "authors": [
  119. {
  120. "name": "Alchemy",
  121. "email": "dev.team@alchemy.fr",
  122. "homepage": "http://www.alchemy.fr/"
  123. }
  124. ],
  125. "description": "Zippy, the archive manager companion",
  126. "keywords": [
  127. "bzip",
  128. "compression",
  129. "tar",
  130. "zip"
  131. ],
  132. "support": {
  133. "issues": "https://github.com/alchemy-fr/Zippy/issues",
  134. "source": "https://github.com/alchemy-fr/Zippy/tree/v0.5.x"
  135. },
  136. "time": "2016-06-29T15:53:10+00:00"
  137. },
  138. {
  139. "name": "beberlei/assert",
  140. "version": "v2.9.9",
  141. "source": {
  142. "type": "git",
  143. "url": "https://github.com/beberlei/assert.git",
  144. "reference": "124317de301b7c91d5fce34c98bba2c6925bec95"
  145. },
  146. "dist": {
  147. "type": "zip",
  148. "url": "https://api.github.com/repos/beberlei/assert/zipball/124317de301b7c91d5fce34c98bba2c6925bec95",
  149. "reference": "124317de301b7c91d5fce34c98bba2c6925bec95",
  150. "shasum": ""
  151. },
  152. "require": {
  153. "ext-mbstring": "*",
  154. "php": ">=5.3"
  155. },
  156. "require-dev": {
  157. "friendsofphp/php-cs-fixer": "^2.1.1",
  158. "phpunit/phpunit": "^4.8.35|^5.7"
  159. },
  160. "type": "library",
  161. "autoload": {
  162. "psr-4": {
  163. "Assert\\": "lib/Assert"
  164. },
  165. "files": [
  166. "lib/Assert/functions.php"
  167. ]
  168. },
  169. "notification-url": "https://packagist.org/downloads/",
  170. "license": [
  171. "BSD-2-Clause"
  172. ],
  173. "authors": [
  174. {
  175. "name": "Benjamin Eberlei",
  176. "email": "kontakt@beberlei.de",
  177. "role": "Lead Developer"
  178. },
  179. {
  180. "name": "Richard Quadling",
  181. "email": "rquadling@gmail.com",
  182. "role": "Collaborator"
  183. }
  184. ],
  185. "description": "Thin assertion library for input validation in business models.",
  186. "keywords": [
  187. "assert",
  188. "assertion",
  189. "validation"
  190. ],
  191. "support": {
  192. "issues": "https://github.com/beberlei/assert/issues",
  193. "source": "https://github.com/beberlei/assert/tree/v2.9.9"
  194. },
  195. "time": "2019-05-28T15:27:37+00:00"
  196. },
  197. {
  198. "name": "composer/package-versions-deprecated",
  199. "version": "1.11.99.1",
  200. "source": {
  201. "type": "git",
  202. "url": "https://github.com/composer/package-versions-deprecated.git",
  203. "reference": "7413f0b55a051e89485c5cb9f765fe24bb02a7b6"
  204. },
  205. "dist": {
  206. "type": "zip",
  207. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/7413f0b55a051e89485c5cb9f765fe24bb02a7b6",
  208. "reference": "7413f0b55a051e89485c5cb9f765fe24bb02a7b6",
  209. "shasum": ""
  210. },
  211. "require": {
  212. "composer-plugin-api": "^1.1.0 || ^2.0",
  213. "php": "^7 || ^8"
  214. },
  215. "replace": {
  216. "ocramius/package-versions": "1.11.99"
  217. },
  218. "require-dev": {
  219. "composer/composer": "^1.9.3 || ^2.0@dev",
  220. "ext-zip": "^1.13",
  221. "phpunit/phpunit": "^6.5 || ^7"
  222. },
  223. "type": "composer-plugin",
  224. "extra": {
  225. "class": "PackageVersions\\Installer",
  226. "branch-alias": {
  227. "dev-master": "1.x-dev"
  228. }
  229. },
  230. "autoload": {
  231. "psr-4": {
  232. "PackageVersions\\": "src/PackageVersions"
  233. }
  234. },
  235. "notification-url": "https://packagist.org/downloads/",
  236. "license": [
  237. "MIT"
  238. ],
  239. "authors": [
  240. {
  241. "name": "Marco Pivetta",
  242. "email": "ocramius@gmail.com"
  243. },
  244. {
  245. "name": "Jordi Boggiano",
  246. "email": "j.boggiano@seld.be"
  247. }
  248. ],
  249. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  250. "support": {
  251. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  252. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.1"
  253. },
  254. "funding": [
  255. {
  256. "url": "https://packagist.com",
  257. "type": "custom"
  258. },
  259. {
  260. "url": "https://github.com/composer",
  261. "type": "github"
  262. },
  263. {
  264. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  265. "type": "tidelift"
  266. }
  267. ],
  268. "time": "2020-11-11T10:22:58+00:00"
  269. },
  270. {
  271. "name": "doctrine/annotations",
  272. "version": "1.11.1",
  273. "source": {
  274. "type": "git",
  275. "url": "https://github.com/doctrine/annotations.git",
  276. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
  277. },
  278. "dist": {
  279. "type": "zip",
  280. "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  281. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  282. "shasum": ""
  283. },
  284. "require": {
  285. "doctrine/lexer": "1.*",
  286. "ext-tokenizer": "*",
  287. "php": "^7.1 || ^8.0"
  288. },
  289. "require-dev": {
  290. "doctrine/cache": "1.*",
  291. "doctrine/coding-standard": "^6.0 || ^8.1",
  292. "phpstan/phpstan": "^0.12.20",
  293. "phpunit/phpunit": "^7.5 || ^9.1.5"
  294. },
  295. "type": "library",
  296. "extra": {
  297. "branch-alias": {
  298. "dev-master": "1.11.x-dev"
  299. }
  300. },
  301. "autoload": {
  302. "psr-4": {
  303. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  304. }
  305. },
  306. "notification-url": "https://packagist.org/downloads/",
  307. "license": [
  308. "MIT"
  309. ],
  310. "authors": [
  311. {
  312. "name": "Guilherme Blanco",
  313. "email": "guilhermeblanco@gmail.com"
  314. },
  315. {
  316. "name": "Roman Borschel",
  317. "email": "roman@code-factory.org"
  318. },
  319. {
  320. "name": "Benjamin Eberlei",
  321. "email": "kontakt@beberlei.de"
  322. },
  323. {
  324. "name": "Jonathan Wage",
  325. "email": "jonwage@gmail.com"
  326. },
  327. {
  328. "name": "Johannes Schmitt",
  329. "email": "schmittjoh@gmail.com"
  330. }
  331. ],
  332. "description": "Docblock Annotations Parser",
  333. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  334. "keywords": [
  335. "annotations",
  336. "docblock",
  337. "parser"
  338. ],
  339. "support": {
  340. "issues": "https://github.com/doctrine/annotations/issues",
  341. "source": "https://github.com/doctrine/annotations/tree/1.11.1"
  342. },
  343. "time": "2020-10-26T10:28:16+00:00"
  344. },
  345. {
  346. "name": "doctrine/cache",
  347. "version": "1.10.2",
  348. "source": {
  349. "type": "git",
  350. "url": "https://github.com/doctrine/cache.git",
  351. "reference": "13e3381b25847283a91948d04640543941309727"
  352. },
  353. "dist": {
  354. "type": "zip",
  355. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  356. "reference": "13e3381b25847283a91948d04640543941309727",
  357. "shasum": ""
  358. },
  359. "require": {
  360. "php": "~7.1 || ^8.0"
  361. },
  362. "conflict": {
  363. "doctrine/common": ">2.2,<2.4"
  364. },
  365. "require-dev": {
  366. "alcaeus/mongo-php-adapter": "^1.1",
  367. "doctrine/coding-standard": "^6.0",
  368. "mongodb/mongodb": "^1.1",
  369. "phpunit/phpunit": "^7.0",
  370. "predis/predis": "~1.0"
  371. },
  372. "suggest": {
  373. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  374. },
  375. "type": "library",
  376. "extra": {
  377. "branch-alias": {
  378. "dev-master": "1.9.x-dev"
  379. }
  380. },
  381. "autoload": {
  382. "psr-4": {
  383. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  384. }
  385. },
  386. "notification-url": "https://packagist.org/downloads/",
  387. "license": [
  388. "MIT"
  389. ],
  390. "authors": [
  391. {
  392. "name": "Guilherme Blanco",
  393. "email": "guilhermeblanco@gmail.com"
  394. },
  395. {
  396. "name": "Roman Borschel",
  397. "email": "roman@code-factory.org"
  398. },
  399. {
  400. "name": "Benjamin Eberlei",
  401. "email": "kontakt@beberlei.de"
  402. },
  403. {
  404. "name": "Jonathan Wage",
  405. "email": "jonwage@gmail.com"
  406. },
  407. {
  408. "name": "Johannes Schmitt",
  409. "email": "schmittjoh@gmail.com"
  410. }
  411. ],
  412. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  413. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  414. "keywords": [
  415. "abstraction",
  416. "apcu",
  417. "cache",
  418. "caching",
  419. "couchdb",
  420. "memcached",
  421. "php",
  422. "redis",
  423. "xcache"
  424. ],
  425. "support": {
  426. "issues": "https://github.com/doctrine/cache/issues",
  427. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  428. },
  429. "funding": [
  430. {
  431. "url": "https://www.doctrine-project.org/sponsorship.html",
  432. "type": "custom"
  433. },
  434. {
  435. "url": "https://www.patreon.com/phpdoctrine",
  436. "type": "patreon"
  437. },
  438. {
  439. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  440. "type": "tidelift"
  441. }
  442. ],
  443. "time": "2020-07-07T18:54:01+00:00"
  444. },
  445. {
  446. "name": "doctrine/collections",
  447. "version": "1.6.7",
  448. "source": {
  449. "type": "git",
  450. "url": "https://github.com/doctrine/collections.git",
  451. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  452. },
  453. "dist": {
  454. "type": "zip",
  455. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  456. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  457. "shasum": ""
  458. },
  459. "require": {
  460. "php": "^7.1.3 || ^8.0"
  461. },
  462. "require-dev": {
  463. "doctrine/coding-standard": "^6.0",
  464. "phpstan/phpstan-shim": "^0.9.2",
  465. "phpunit/phpunit": "^7.0",
  466. "vimeo/psalm": "^3.8.1"
  467. },
  468. "type": "library",
  469. "autoload": {
  470. "psr-4": {
  471. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  472. }
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "MIT"
  477. ],
  478. "authors": [
  479. {
  480. "name": "Guilherme Blanco",
  481. "email": "guilhermeblanco@gmail.com"
  482. },
  483. {
  484. "name": "Roman Borschel",
  485. "email": "roman@code-factory.org"
  486. },
  487. {
  488. "name": "Benjamin Eberlei",
  489. "email": "kontakt@beberlei.de"
  490. },
  491. {
  492. "name": "Jonathan Wage",
  493. "email": "jonwage@gmail.com"
  494. },
  495. {
  496. "name": "Johannes Schmitt",
  497. "email": "schmittjoh@gmail.com"
  498. }
  499. ],
  500. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  501. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  502. "keywords": [
  503. "array",
  504. "collections",
  505. "iterators",
  506. "php"
  507. ],
  508. "support": {
  509. "issues": "https://github.com/doctrine/collections/issues",
  510. "source": "https://github.com/doctrine/collections/tree/1.6.7"
  511. },
  512. "time": "2020-07-27T17:53:49+00:00"
  513. },
  514. {
  515. "name": "doctrine/common",
  516. "version": "3.1.1",
  517. "source": {
  518. "type": "git",
  519. "url": "https://github.com/doctrine/common.git",
  520. "reference": "2afde5a9844126bc311cd5f548b5475e75f800d3"
  521. },
  522. "dist": {
  523. "type": "zip",
  524. "url": "https://api.github.com/repos/doctrine/common/zipball/2afde5a9844126bc311cd5f548b5475e75f800d3",
  525. "reference": "2afde5a9844126bc311cd5f548b5475e75f800d3",
  526. "shasum": ""
  527. },
  528. "require": {
  529. "doctrine/persistence": "^2.0",
  530. "php": "^7.1 || ^8.0"
  531. },
  532. "require-dev": {
  533. "doctrine/coding-standard": "^6.0 || ^8.0",
  534. "phpstan/phpstan": "^0.12",
  535. "phpstan/phpstan-phpunit": "^0.12",
  536. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  537. "squizlabs/php_codesniffer": "^3.0",
  538. "symfony/phpunit-bridge": "^4.0.5"
  539. },
  540. "type": "library",
  541. "autoload": {
  542. "psr-4": {
  543. "Doctrine\\Common\\": "lib/Doctrine/Common"
  544. }
  545. },
  546. "notification-url": "https://packagist.org/downloads/",
  547. "license": [
  548. "MIT"
  549. ],
  550. "authors": [
  551. {
  552. "name": "Guilherme Blanco",
  553. "email": "guilhermeblanco@gmail.com"
  554. },
  555. {
  556. "name": "Roman Borschel",
  557. "email": "roman@code-factory.org"
  558. },
  559. {
  560. "name": "Benjamin Eberlei",
  561. "email": "kontakt@beberlei.de"
  562. },
  563. {
  564. "name": "Jonathan Wage",
  565. "email": "jonwage@gmail.com"
  566. },
  567. {
  568. "name": "Johannes Schmitt",
  569. "email": "schmittjoh@gmail.com"
  570. },
  571. {
  572. "name": "Marco Pivetta",
  573. "email": "ocramius@gmail.com"
  574. }
  575. ],
  576. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  577. "homepage": "https://www.doctrine-project.org/projects/common.html",
  578. "keywords": [
  579. "common",
  580. "doctrine",
  581. "php"
  582. ],
  583. "support": {
  584. "issues": "https://github.com/doctrine/common/issues",
  585. "source": "https://github.com/doctrine/common/tree/3.1.1"
  586. },
  587. "funding": [
  588. {
  589. "url": "https://www.doctrine-project.org/sponsorship.html",
  590. "type": "custom"
  591. },
  592. {
  593. "url": "https://www.patreon.com/phpdoctrine",
  594. "type": "patreon"
  595. },
  596. {
  597. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  598. "type": "tidelift"
  599. }
  600. ],
  601. "time": "2021-01-20T19:58:05+00:00"
  602. },
  603. {
  604. "name": "doctrine/dbal",
  605. "version": "2.12.1",
  606. "source": {
  607. "type": "git",
  608. "url": "https://github.com/doctrine/dbal.git",
  609. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086"
  610. },
  611. "dist": {
  612. "type": "zip",
  613. "url": "https://api.github.com/repos/doctrine/dbal/zipball/adce7a954a1c2f14f85e94aed90c8489af204086",
  614. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086",
  615. "shasum": ""
  616. },
  617. "require": {
  618. "doctrine/cache": "^1.0",
  619. "doctrine/event-manager": "^1.0",
  620. "ext-pdo": "*",
  621. "php": "^7.3 || ^8"
  622. },
  623. "require-dev": {
  624. "doctrine/coding-standard": "^8.1",
  625. "jetbrains/phpstorm-stubs": "^2019.1",
  626. "phpstan/phpstan": "^0.12.40",
  627. "phpunit/phpunit": "^9.4",
  628. "psalm/plugin-phpunit": "^0.10.0",
  629. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  630. "vimeo/psalm": "^3.17.2"
  631. },
  632. "suggest": {
  633. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  634. },
  635. "bin": [
  636. "bin/doctrine-dbal"
  637. ],
  638. "type": "library",
  639. "extra": {
  640. "branch-alias": {
  641. "dev-master": "4.0.x-dev"
  642. }
  643. },
  644. "autoload": {
  645. "psr-4": {
  646. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  647. }
  648. },
  649. "notification-url": "https://packagist.org/downloads/",
  650. "license": [
  651. "MIT"
  652. ],
  653. "authors": [
  654. {
  655. "name": "Guilherme Blanco",
  656. "email": "guilhermeblanco@gmail.com"
  657. },
  658. {
  659. "name": "Roman Borschel",
  660. "email": "roman@code-factory.org"
  661. },
  662. {
  663. "name": "Benjamin Eberlei",
  664. "email": "kontakt@beberlei.de"
  665. },
  666. {
  667. "name": "Jonathan Wage",
  668. "email": "jonwage@gmail.com"
  669. }
  670. ],
  671. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  672. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  673. "keywords": [
  674. "abstraction",
  675. "database",
  676. "db2",
  677. "dbal",
  678. "mariadb",
  679. "mssql",
  680. "mysql",
  681. "oci8",
  682. "oracle",
  683. "pdo",
  684. "pgsql",
  685. "postgresql",
  686. "queryobject",
  687. "sasql",
  688. "sql",
  689. "sqlanywhere",
  690. "sqlite",
  691. "sqlserver",
  692. "sqlsrv"
  693. ],
  694. "support": {
  695. "issues": "https://github.com/doctrine/dbal/issues",
  696. "source": "https://github.com/doctrine/dbal/tree/2.12.1"
  697. },
  698. "funding": [
  699. {
  700. "url": "https://www.doctrine-project.org/sponsorship.html",
  701. "type": "custom"
  702. },
  703. {
  704. "url": "https://www.patreon.com/phpdoctrine",
  705. "type": "patreon"
  706. },
  707. {
  708. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  709. "type": "tidelift"
  710. }
  711. ],
  712. "time": "2020-11-14T20:26:58+00:00"
  713. },
  714. {
  715. "name": "doctrine/doctrine-bundle",
  716. "version": "2.2.3",
  717. "source": {
  718. "type": "git",
  719. "url": "https://github.com/doctrine/DoctrineBundle.git",
  720. "reference": "015fdd490074d4daa891e2d1df998dc35ba54924"
  721. },
  722. "dist": {
  723. "type": "zip",
  724. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/015fdd490074d4daa891e2d1df998dc35ba54924",
  725. "reference": "015fdd490074d4daa891e2d1df998dc35ba54924",
  726. "shasum": ""
  727. },
  728. "require": {
  729. "doctrine/dbal": "^2.9.0|^3.0",
  730. "doctrine/persistence": "^1.3.3|^2.0",
  731. "doctrine/sql-formatter": "^1.0.1",
  732. "php": "^7.1 || ^8.0",
  733. "symfony/cache": "^4.3.3|^5.0",
  734. "symfony/config": "^4.3.3|^5.0",
  735. "symfony/console": "^3.4.30|^4.3.3|^5.0",
  736. "symfony/dependency-injection": "^4.3.3|^5.0",
  737. "symfony/doctrine-bridge": "^4.3.7|^5.0",
  738. "symfony/framework-bundle": "^3.4.30|^4.3.3|^5.0",
  739. "symfony/service-contracts": "^1.1.1|^2.0"
  740. },
  741. "conflict": {
  742. "doctrine/orm": "<2.6",
  743. "twig/twig": "<1.34|>=2.0,<2.4"
  744. },
  745. "require-dev": {
  746. "doctrine/coding-standard": "^8.0",
  747. "doctrine/orm": "^2.6",
  748. "friendsofphp/proxy-manager-lts": "^1.0",
  749. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.3",
  750. "symfony/phpunit-bridge": "^4.2",
  751. "symfony/property-info": "^4.3.3|^5.0",
  752. "symfony/proxy-manager-bridge": "^3.4|^4.3.3|^5.0",
  753. "symfony/twig-bridge": "^3.4.30|^4.3.3|^5.0",
  754. "symfony/validator": "^3.4.30|^4.3.3|^5.0",
  755. "symfony/web-profiler-bundle": "^3.4.30|^4.3.3|^5.0",
  756. "symfony/yaml": "^3.4.30|^4.3.3|^5.0",
  757. "twig/twig": "^1.34|^2.12|^3.0"
  758. },
  759. "suggest": {
  760. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  761. "symfony/web-profiler-bundle": "To use the data collector."
  762. },
  763. "type": "symfony-bundle",
  764. "extra": {
  765. "branch-alias": {
  766. "dev-master": "2.3.x-dev"
  767. }
  768. },
  769. "autoload": {
  770. "psr-4": {
  771. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  772. }
  773. },
  774. "notification-url": "https://packagist.org/downloads/",
  775. "license": [
  776. "MIT"
  777. ],
  778. "authors": [
  779. {
  780. "name": "Fabien Potencier",
  781. "email": "fabien@symfony.com"
  782. },
  783. {
  784. "name": "Benjamin Eberlei",
  785. "email": "kontakt@beberlei.de"
  786. },
  787. {
  788. "name": "Symfony Community",
  789. "homepage": "http://symfony.com/contributors"
  790. },
  791. {
  792. "name": "Doctrine Project",
  793. "homepage": "http://www.doctrine-project.org/"
  794. }
  795. ],
  796. "description": "Symfony DoctrineBundle",
  797. "homepage": "http://www.doctrine-project.org",
  798. "keywords": [
  799. "database",
  800. "dbal",
  801. "orm",
  802. "persistence"
  803. ],
  804. "support": {
  805. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  806. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.2.3"
  807. },
  808. "funding": [
  809. {
  810. "url": "https://www.doctrine-project.org/sponsorship.html",
  811. "type": "custom"
  812. },
  813. {
  814. "url": "https://www.patreon.com/phpdoctrine",
  815. "type": "patreon"
  816. },
  817. {
  818. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  819. "type": "tidelift"
  820. }
  821. ],
  822. "time": "2021-01-19T20:29:53+00:00"
  823. },
  824. {
  825. "name": "doctrine/doctrine-migrations-bundle",
  826. "version": "3.0.2",
  827. "source": {
  828. "type": "git",
  829. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  830. "reference": "b8de89fe811e62f1dea8cf9aafda0ea45ca6f1f3"
  831. },
  832. "dist": {
  833. "type": "zip",
  834. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/b8de89fe811e62f1dea8cf9aafda0ea45ca6f1f3",
  835. "reference": "b8de89fe811e62f1dea8cf9aafda0ea45ca6f1f3",
  836. "shasum": ""
  837. },
  838. "require": {
  839. "doctrine/doctrine-bundle": "~1.0|~2.0",
  840. "doctrine/migrations": "~3.0",
  841. "php": "^7.2|^8.0",
  842. "symfony/framework-bundle": "~3.4|~4.0|~5.0"
  843. },
  844. "require-dev": {
  845. "doctrine/coding-standard": "^8.0",
  846. "doctrine/orm": "^2.6",
  847. "phpstan/phpstan": "^0.12",
  848. "phpstan/phpstan-deprecation-rules": "^0.12",
  849. "phpstan/phpstan-phpunit": "^0.12",
  850. "phpstan/phpstan-strict-rules": "^0.12",
  851. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  852. },
  853. "type": "symfony-bundle",
  854. "extra": {
  855. "branch-alias": {
  856. "dev-master": "3.0.x-dev"
  857. }
  858. },
  859. "autoload": {
  860. "psr-4": {
  861. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  862. },
  863. "exclude-from-classmap": [
  864. "/Tests/"
  865. ]
  866. },
  867. "notification-url": "https://packagist.org/downloads/",
  868. "license": [
  869. "MIT"
  870. ],
  871. "authors": [
  872. {
  873. "name": "Fabien Potencier",
  874. "email": "fabien@symfony.com"
  875. },
  876. {
  877. "name": "Doctrine Project",
  878. "homepage": "http://www.doctrine-project.org"
  879. },
  880. {
  881. "name": "Symfony Community",
  882. "homepage": "http://symfony.com/contributors"
  883. }
  884. ],
  885. "description": "Symfony DoctrineMigrationsBundle",
  886. "homepage": "https://www.doctrine-project.org",
  887. "keywords": [
  888. "dbal",
  889. "migrations",
  890. "schema"
  891. ],
  892. "support": {
  893. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  894. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.0.2"
  895. },
  896. "funding": [
  897. {
  898. "url": "https://www.doctrine-project.org/sponsorship.html",
  899. "type": "custom"
  900. },
  901. {
  902. "url": "https://www.patreon.com/phpdoctrine",
  903. "type": "patreon"
  904. },
  905. {
  906. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  907. "type": "tidelift"
  908. }
  909. ],
  910. "time": "2020-12-23T15:13:22+00:00"
  911. },
  912. {
  913. "name": "doctrine/event-manager",
  914. "version": "1.1.1",
  915. "source": {
  916. "type": "git",
  917. "url": "https://github.com/doctrine/event-manager.git",
  918. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  919. },
  920. "dist": {
  921. "type": "zip",
  922. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  923. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  924. "shasum": ""
  925. },
  926. "require": {
  927. "php": "^7.1 || ^8.0"
  928. },
  929. "conflict": {
  930. "doctrine/common": "<2.9@dev"
  931. },
  932. "require-dev": {
  933. "doctrine/coding-standard": "^6.0",
  934. "phpunit/phpunit": "^7.0"
  935. },
  936. "type": "library",
  937. "extra": {
  938. "branch-alias": {
  939. "dev-master": "1.0.x-dev"
  940. }
  941. },
  942. "autoload": {
  943. "psr-4": {
  944. "Doctrine\\Common\\": "lib/Doctrine/Common"
  945. }
  946. },
  947. "notification-url": "https://packagist.org/downloads/",
  948. "license": [
  949. "MIT"
  950. ],
  951. "authors": [
  952. {
  953. "name": "Guilherme Blanco",
  954. "email": "guilhermeblanco@gmail.com"
  955. },
  956. {
  957. "name": "Roman Borschel",
  958. "email": "roman@code-factory.org"
  959. },
  960. {
  961. "name": "Benjamin Eberlei",
  962. "email": "kontakt@beberlei.de"
  963. },
  964. {
  965. "name": "Jonathan Wage",
  966. "email": "jonwage@gmail.com"
  967. },
  968. {
  969. "name": "Johannes Schmitt",
  970. "email": "schmittjoh@gmail.com"
  971. },
  972. {
  973. "name": "Marco Pivetta",
  974. "email": "ocramius@gmail.com"
  975. }
  976. ],
  977. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  978. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  979. "keywords": [
  980. "event",
  981. "event dispatcher",
  982. "event manager",
  983. "event system",
  984. "events"
  985. ],
  986. "support": {
  987. "issues": "https://github.com/doctrine/event-manager/issues",
  988. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  989. },
  990. "funding": [
  991. {
  992. "url": "https://www.doctrine-project.org/sponsorship.html",
  993. "type": "custom"
  994. },
  995. {
  996. "url": "https://www.patreon.com/phpdoctrine",
  997. "type": "patreon"
  998. },
  999. {
  1000. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1001. "type": "tidelift"
  1002. }
  1003. ],
  1004. "time": "2020-05-29T18:28:51+00:00"
  1005. },
  1006. {
  1007. "name": "doctrine/inflector",
  1008. "version": "2.0.3",
  1009. "source": {
  1010. "type": "git",
  1011. "url": "https://github.com/doctrine/inflector.git",
  1012. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  1013. },
  1014. "dist": {
  1015. "type": "zip",
  1016. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1017. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1018. "shasum": ""
  1019. },
  1020. "require": {
  1021. "php": "^7.2 || ^8.0"
  1022. },
  1023. "require-dev": {
  1024. "doctrine/coding-standard": "^7.0",
  1025. "phpstan/phpstan": "^0.11",
  1026. "phpstan/phpstan-phpunit": "^0.11",
  1027. "phpstan/phpstan-strict-rules": "^0.11",
  1028. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1029. },
  1030. "type": "library",
  1031. "extra": {
  1032. "branch-alias": {
  1033. "dev-master": "2.0.x-dev"
  1034. }
  1035. },
  1036. "autoload": {
  1037. "psr-4": {
  1038. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1039. }
  1040. },
  1041. "notification-url": "https://packagist.org/downloads/",
  1042. "license": [
  1043. "MIT"
  1044. ],
  1045. "authors": [
  1046. {
  1047. "name": "Guilherme Blanco",
  1048. "email": "guilhermeblanco@gmail.com"
  1049. },
  1050. {
  1051. "name": "Roman Borschel",
  1052. "email": "roman@code-factory.org"
  1053. },
  1054. {
  1055. "name": "Benjamin Eberlei",
  1056. "email": "kontakt@beberlei.de"
  1057. },
  1058. {
  1059. "name": "Jonathan Wage",
  1060. "email": "jonwage@gmail.com"
  1061. },
  1062. {
  1063. "name": "Johannes Schmitt",
  1064. "email": "schmittjoh@gmail.com"
  1065. }
  1066. ],
  1067. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1068. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1069. "keywords": [
  1070. "inflection",
  1071. "inflector",
  1072. "lowercase",
  1073. "manipulation",
  1074. "php",
  1075. "plural",
  1076. "singular",
  1077. "strings",
  1078. "uppercase",
  1079. "words"
  1080. ],
  1081. "support": {
  1082. "issues": "https://github.com/doctrine/inflector/issues",
  1083. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  1084. },
  1085. "funding": [
  1086. {
  1087. "url": "https://www.doctrine-project.org/sponsorship.html",
  1088. "type": "custom"
  1089. },
  1090. {
  1091. "url": "https://www.patreon.com/phpdoctrine",
  1092. "type": "patreon"
  1093. },
  1094. {
  1095. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1096. "type": "tidelift"
  1097. }
  1098. ],
  1099. "time": "2020-05-29T15:13:26+00:00"
  1100. },
  1101. {
  1102. "name": "doctrine/instantiator",
  1103. "version": "1.4.0",
  1104. "source": {
  1105. "type": "git",
  1106. "url": "https://github.com/doctrine/instantiator.git",
  1107. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  1108. },
  1109. "dist": {
  1110. "type": "zip",
  1111. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  1112. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  1113. "shasum": ""
  1114. },
  1115. "require": {
  1116. "php": "^7.1 || ^8.0"
  1117. },
  1118. "require-dev": {
  1119. "doctrine/coding-standard": "^8.0",
  1120. "ext-pdo": "*",
  1121. "ext-phar": "*",
  1122. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  1123. "phpstan/phpstan": "^0.12",
  1124. "phpstan/phpstan-phpunit": "^0.12",
  1125. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1126. },
  1127. "type": "library",
  1128. "autoload": {
  1129. "psr-4": {
  1130. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1131. }
  1132. },
  1133. "notification-url": "https://packagist.org/downloads/",
  1134. "license": [
  1135. "MIT"
  1136. ],
  1137. "authors": [
  1138. {
  1139. "name": "Marco Pivetta",
  1140. "email": "ocramius@gmail.com",
  1141. "homepage": "https://ocramius.github.io/"
  1142. }
  1143. ],
  1144. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1145. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1146. "keywords": [
  1147. "constructor",
  1148. "instantiate"
  1149. ],
  1150. "support": {
  1151. "issues": "https://github.com/doctrine/instantiator/issues",
  1152. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  1153. },
  1154. "funding": [
  1155. {
  1156. "url": "https://www.doctrine-project.org/sponsorship.html",
  1157. "type": "custom"
  1158. },
  1159. {
  1160. "url": "https://www.patreon.com/phpdoctrine",
  1161. "type": "patreon"
  1162. },
  1163. {
  1164. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1165. "type": "tidelift"
  1166. }
  1167. ],
  1168. "time": "2020-11-10T18:47:58+00:00"
  1169. },
  1170. {
  1171. "name": "doctrine/lexer",
  1172. "version": "1.2.1",
  1173. "source": {
  1174. "type": "git",
  1175. "url": "https://github.com/doctrine/lexer.git",
  1176. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1177. },
  1178. "dist": {
  1179. "type": "zip",
  1180. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1181. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1182. "shasum": ""
  1183. },
  1184. "require": {
  1185. "php": "^7.2 || ^8.0"
  1186. },
  1187. "require-dev": {
  1188. "doctrine/coding-standard": "^6.0",
  1189. "phpstan/phpstan": "^0.11.8",
  1190. "phpunit/phpunit": "^8.2"
  1191. },
  1192. "type": "library",
  1193. "extra": {
  1194. "branch-alias": {
  1195. "dev-master": "1.2.x-dev"
  1196. }
  1197. },
  1198. "autoload": {
  1199. "psr-4": {
  1200. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1201. }
  1202. },
  1203. "notification-url": "https://packagist.org/downloads/",
  1204. "license": [
  1205. "MIT"
  1206. ],
  1207. "authors": [
  1208. {
  1209. "name": "Guilherme Blanco",
  1210. "email": "guilhermeblanco@gmail.com"
  1211. },
  1212. {
  1213. "name": "Roman Borschel",
  1214. "email": "roman@code-factory.org"
  1215. },
  1216. {
  1217. "name": "Johannes Schmitt",
  1218. "email": "schmittjoh@gmail.com"
  1219. }
  1220. ],
  1221. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1222. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1223. "keywords": [
  1224. "annotations",
  1225. "docblock",
  1226. "lexer",
  1227. "parser",
  1228. "php"
  1229. ],
  1230. "support": {
  1231. "issues": "https://github.com/doctrine/lexer/issues",
  1232. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1233. },
  1234. "funding": [
  1235. {
  1236. "url": "https://www.doctrine-project.org/sponsorship.html",
  1237. "type": "custom"
  1238. },
  1239. {
  1240. "url": "https://www.patreon.com/phpdoctrine",
  1241. "type": "patreon"
  1242. },
  1243. {
  1244. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1245. "type": "tidelift"
  1246. }
  1247. ],
  1248. "time": "2020-05-25T17:44:05+00:00"
  1249. },
  1250. {
  1251. "name": "doctrine/migrations",
  1252. "version": "3.1.0",
  1253. "source": {
  1254. "type": "git",
  1255. "url": "https://github.com/doctrine/migrations.git",
  1256. "reference": "260991be753a38aa25b6f2d13dbb7f113f8dbf8f"
  1257. },
  1258. "dist": {
  1259. "type": "zip",
  1260. "url": "https://api.github.com/repos/doctrine/migrations/zipball/260991be753a38aa25b6f2d13dbb7f113f8dbf8f",
  1261. "reference": "260991be753a38aa25b6f2d13dbb7f113f8dbf8f",
  1262. "shasum": ""
  1263. },
  1264. "require": {
  1265. "composer/package-versions-deprecated": "^1.8",
  1266. "doctrine/dbal": "^2.10",
  1267. "doctrine/event-manager": "^1.0",
  1268. "friendsofphp/proxy-manager-lts": "^1.0",
  1269. "php": "^7.2 || ^8.0",
  1270. "psr/log": "^1.1.3",
  1271. "symfony/console": "^3.4 || ^4.4.16 || ^5.0",
  1272. "symfony/stopwatch": "^3.4 || ^4.0 || ^5.0"
  1273. },
  1274. "require-dev": {
  1275. "doctrine/coding-standard": "^8.0",
  1276. "doctrine/orm": "^2.6",
  1277. "doctrine/persistence": "^1.3 || ^2.0",
  1278. "doctrine/sql-formatter": "^1.0",
  1279. "ergebnis/composer-normalize": "^2.9",
  1280. "ext-pdo_sqlite": "*",
  1281. "phpstan/phpstan": "^0.12",
  1282. "phpstan/phpstan-deprecation-rules": "^0.12",
  1283. "phpstan/phpstan-phpunit": "^0.12",
  1284. "phpstan/phpstan-strict-rules": "^0.12",
  1285. "phpstan/phpstan-symfony": "^0.12",
  1286. "phpunit/phpunit": "^8.5 || ^9.4",
  1287. "symfony/process": "^3.4 || ^4.0 || ^5.0",
  1288. "symfony/yaml": "^3.4 || ^4.0 || ^5.0"
  1289. },
  1290. "suggest": {
  1291. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1292. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1293. },
  1294. "bin": [
  1295. "bin/doctrine-migrations"
  1296. ],
  1297. "type": "library",
  1298. "extra": {
  1299. "branch-alias": {
  1300. "dev-master": "3.0.x-dev"
  1301. },
  1302. "composer-normalize": {
  1303. "indent-size": 4,
  1304. "indent-style": "space"
  1305. }
  1306. },
  1307. "autoload": {
  1308. "psr-4": {
  1309. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1310. }
  1311. },
  1312. "notification-url": "https://packagist.org/downloads/",
  1313. "license": [
  1314. "MIT"
  1315. ],
  1316. "authors": [
  1317. {
  1318. "name": "Benjamin Eberlei",
  1319. "email": "kontakt@beberlei.de"
  1320. },
  1321. {
  1322. "name": "Jonathan Wage",
  1323. "email": "jonwage@gmail.com"
  1324. },
  1325. {
  1326. "name": "Michael Simonson",
  1327. "email": "contact@mikesimonson.com"
  1328. }
  1329. ],
  1330. "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.",
  1331. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1332. "keywords": [
  1333. "database",
  1334. "dbal",
  1335. "migrations"
  1336. ],
  1337. "support": {
  1338. "issues": "https://github.com/doctrine/migrations/issues",
  1339. "source": "https://github.com/doctrine/migrations/tree/3.1.0"
  1340. },
  1341. "funding": [
  1342. {
  1343. "url": "https://www.doctrine-project.org/sponsorship.html",
  1344. "type": "custom"
  1345. },
  1346. {
  1347. "url": "https://www.patreon.com/phpdoctrine",
  1348. "type": "patreon"
  1349. },
  1350. {
  1351. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1352. "type": "tidelift"
  1353. }
  1354. ],
  1355. "time": "2021-02-07T21:16:17+00:00"
  1356. },
  1357. {
  1358. "name": "doctrine/orm",
  1359. "version": "2.8.1",
  1360. "source": {
  1361. "type": "git",
  1362. "url": "https://github.com/doctrine/orm.git",
  1363. "reference": "242cf1a33df1b8bc5e1b86c3ebd01db07851c833"
  1364. },
  1365. "dist": {
  1366. "type": "zip",
  1367. "url": "https://api.github.com/repos/doctrine/orm/zipball/242cf1a33df1b8bc5e1b86c3ebd01db07851c833",
  1368. "reference": "242cf1a33df1b8bc5e1b86c3ebd01db07851c833",
  1369. "shasum": ""
  1370. },
  1371. "require": {
  1372. "composer/package-versions-deprecated": "^1.8",
  1373. "doctrine/annotations": "^1.11.1",
  1374. "doctrine/cache": "^1.9.1",
  1375. "doctrine/collections": "^1.5",
  1376. "doctrine/common": "^3.0",
  1377. "doctrine/dbal": "^2.10.0",
  1378. "doctrine/event-manager": "^1.1",
  1379. "doctrine/inflector": "^1.4|^2.0",
  1380. "doctrine/instantiator": "^1.3",
  1381. "doctrine/lexer": "^1.0",
  1382. "doctrine/persistence": "^2.0",
  1383. "ext-pdo": "*",
  1384. "php": "^7.2|^8.0",
  1385. "symfony/console": "^3.0|^4.0|^5.0"
  1386. },
  1387. "require-dev": {
  1388. "doctrine/coding-standard": "^8.0",
  1389. "phpstan/phpstan": "^0.12.18",
  1390. "phpunit/phpunit": "^8.5|^9.4",
  1391. "symfony/yaml": "^3.4|^4.0|^5.0",
  1392. "vimeo/psalm": "4.1.1"
  1393. },
  1394. "suggest": {
  1395. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1396. },
  1397. "bin": [
  1398. "bin/doctrine"
  1399. ],
  1400. "type": "library",
  1401. "extra": {
  1402. "branch-alias": {
  1403. "dev-master": "2.7.x-dev"
  1404. }
  1405. },
  1406. "autoload": {
  1407. "psr-4": {
  1408. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1409. }
  1410. },
  1411. "notification-url": "https://packagist.org/downloads/",
  1412. "license": [
  1413. "MIT"
  1414. ],
  1415. "authors": [
  1416. {
  1417. "name": "Guilherme Blanco",
  1418. "email": "guilhermeblanco@gmail.com"
  1419. },
  1420. {
  1421. "name": "Roman Borschel",
  1422. "email": "roman@code-factory.org"
  1423. },
  1424. {
  1425. "name": "Benjamin Eberlei",
  1426. "email": "kontakt@beberlei.de"
  1427. },
  1428. {
  1429. "name": "Jonathan Wage",
  1430. "email": "jonwage@gmail.com"
  1431. },
  1432. {
  1433. "name": "Marco Pivetta",
  1434. "email": "ocramius@gmail.com"
  1435. }
  1436. ],
  1437. "description": "Object-Relational-Mapper for PHP",
  1438. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1439. "keywords": [
  1440. "database",
  1441. "orm"
  1442. ],
  1443. "support": {
  1444. "issues": "https://github.com/doctrine/orm/issues",
  1445. "source": "https://github.com/doctrine/orm/tree/2.8.1"
  1446. },
  1447. "time": "2020-12-04T19:53:07+00:00"
  1448. },
  1449. {
  1450. "name": "doctrine/persistence",
  1451. "version": "2.1.0",
  1452. "source": {
  1453. "type": "git",
  1454. "url": "https://github.com/doctrine/persistence.git",
  1455. "reference": "9899c16934053880876b920a3b8b02ed2337ac1d"
  1456. },
  1457. "dist": {
  1458. "type": "zip",
  1459. "url": "https://api.github.com/repos/doctrine/persistence/zipball/9899c16934053880876b920a3b8b02ed2337ac1d",
  1460. "reference": "9899c16934053880876b920a3b8b02ed2337ac1d",
  1461. "shasum": ""
  1462. },
  1463. "require": {
  1464. "doctrine/annotations": "^1.0",
  1465. "doctrine/cache": "^1.0",
  1466. "doctrine/collections": "^1.0",
  1467. "doctrine/event-manager": "^1.0",
  1468. "php": "^7.1 || ^8.0"
  1469. },
  1470. "conflict": {
  1471. "doctrine/common": "<2.10@dev"
  1472. },
  1473. "require-dev": {
  1474. "composer/package-versions-deprecated": "^1.11",
  1475. "doctrine/coding-standard": "^6.0 || ^8.0",
  1476. "doctrine/common": "^3.0",
  1477. "phpstan/phpstan": "^0.12",
  1478. "phpunit/phpunit": "^7.5.20 || ^8.0 || ^9.0",
  1479. "vimeo/psalm": "^3.11"
  1480. },
  1481. "type": "library",
  1482. "autoload": {
  1483. "psr-4": {
  1484. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1485. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1486. }
  1487. },
  1488. "notification-url": "https://packagist.org/downloads/",
  1489. "license": [
  1490. "MIT"
  1491. ],
  1492. "authors": [
  1493. {
  1494. "name": "Guilherme Blanco",
  1495. "email": "guilhermeblanco@gmail.com"
  1496. },
  1497. {
  1498. "name": "Roman Borschel",
  1499. "email": "roman@code-factory.org"
  1500. },
  1501. {
  1502. "name": "Benjamin Eberlei",
  1503. "email": "kontakt@beberlei.de"
  1504. },
  1505. {
  1506. "name": "Jonathan Wage",
  1507. "email": "jonwage@gmail.com"
  1508. },
  1509. {
  1510. "name": "Johannes Schmitt",
  1511. "email": "schmittjoh@gmail.com"
  1512. },
  1513. {
  1514. "name": "Marco Pivetta",
  1515. "email": "ocramius@gmail.com"
  1516. }
  1517. ],
  1518. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1519. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1520. "keywords": [
  1521. "mapper",
  1522. "object",
  1523. "odm",
  1524. "orm",
  1525. "persistence"
  1526. ],
  1527. "support": {
  1528. "issues": "https://github.com/doctrine/persistence/issues",
  1529. "source": "https://github.com/doctrine/persistence/tree/2.1.0"
  1530. },
  1531. "time": "2020-10-24T22:13:54+00:00"
  1532. },
  1533. {
  1534. "name": "doctrine/sql-formatter",
  1535. "version": "1.1.1",
  1536. "source": {
  1537. "type": "git",
  1538. "url": "https://github.com/doctrine/sql-formatter.git",
  1539. "reference": "56070bebac6e77230ed7d306ad13528e60732871"
  1540. },
  1541. "dist": {
  1542. "type": "zip",
  1543. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/56070bebac6e77230ed7d306ad13528e60732871",
  1544. "reference": "56070bebac6e77230ed7d306ad13528e60732871",
  1545. "shasum": ""
  1546. },
  1547. "require": {
  1548. "php": "^7.1 || ^8.0"
  1549. },
  1550. "require-dev": {
  1551. "bamarni/composer-bin-plugin": "^1.4"
  1552. },
  1553. "bin": [
  1554. "bin/sql-formatter"
  1555. ],
  1556. "type": "library",
  1557. "extra": {
  1558. "branch-alias": {
  1559. "dev-master": "1.x-dev"
  1560. }
  1561. },
  1562. "autoload": {
  1563. "psr-4": {
  1564. "Doctrine\\SqlFormatter\\": "src"
  1565. }
  1566. },
  1567. "notification-url": "https://packagist.org/downloads/",
  1568. "license": [
  1569. "MIT"
  1570. ],
  1571. "authors": [
  1572. {
  1573. "name": "Jeremy Dorn",
  1574. "email": "jeremy@jeremydorn.com",
  1575. "homepage": "http://jeremydorn.com/"
  1576. }
  1577. ],
  1578. "description": "a PHP SQL highlighting library",
  1579. "homepage": "https://github.com/doctrine/sql-formatter/",
  1580. "keywords": [
  1581. "highlight",
  1582. "sql"
  1583. ],
  1584. "support": {
  1585. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1586. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.x"
  1587. },
  1588. "time": "2020-07-30T16:57:33+00:00"
  1589. },
  1590. {
  1591. "name": "egulias/email-validator",
  1592. "version": "2.1.25",
  1593. "source": {
  1594. "type": "git",
  1595. "url": "https://github.com/egulias/EmailValidator.git",
  1596. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1597. },
  1598. "dist": {
  1599. "type": "zip",
  1600. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1601. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1602. "shasum": ""
  1603. },
  1604. "require": {
  1605. "doctrine/lexer": "^1.0.1",
  1606. "php": ">=5.5",
  1607. "symfony/polyfill-intl-idn": "^1.10"
  1608. },
  1609. "require-dev": {
  1610. "dominicsayers/isemail": "^3.0.7",
  1611. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1612. "satooshi/php-coveralls": "^1.0.1"
  1613. },
  1614. "suggest": {
  1615. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1616. },
  1617. "type": "library",
  1618. "extra": {
  1619. "branch-alias": {
  1620. "dev-master": "2.1.x-dev"
  1621. }
  1622. },
  1623. "autoload": {
  1624. "psr-4": {
  1625. "Egulias\\EmailValidator\\": "src"
  1626. }
  1627. },
  1628. "notification-url": "https://packagist.org/downloads/",
  1629. "license": [
  1630. "MIT"
  1631. ],
  1632. "authors": [
  1633. {
  1634. "name": "Eduardo Gulias Davis"
  1635. }
  1636. ],
  1637. "description": "A library for validating emails against several RFCs",
  1638. "homepage": "https://github.com/egulias/EmailValidator",
  1639. "keywords": [
  1640. "email",
  1641. "emailvalidation",
  1642. "emailvalidator",
  1643. "validation",
  1644. "validator"
  1645. ],
  1646. "support": {
  1647. "issues": "https://github.com/egulias/EmailValidator/issues",
  1648. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1649. },
  1650. "funding": [
  1651. {
  1652. "url": "https://github.com/egulias",
  1653. "type": "github"
  1654. }
  1655. ],
  1656. "time": "2020-12-29T14:50:06+00:00"
  1657. },
  1658. {
  1659. "name": "erusev/parsedown",
  1660. "version": "1.7.4",
  1661. "source": {
  1662. "type": "git",
  1663. "url": "https://github.com/erusev/parsedown.git",
  1664. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  1665. },
  1666. "dist": {
  1667. "type": "zip",
  1668. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  1669. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  1670. "shasum": ""
  1671. },
  1672. "require": {
  1673. "ext-mbstring": "*",
  1674. "php": ">=5.3.0"
  1675. },
  1676. "require-dev": {
  1677. "phpunit/phpunit": "^4.8.35"
  1678. },
  1679. "type": "library",
  1680. "autoload": {
  1681. "psr-0": {
  1682. "Parsedown": ""
  1683. }
  1684. },
  1685. "notification-url": "https://packagist.org/downloads/",
  1686. "license": [
  1687. "MIT"
  1688. ],
  1689. "authors": [
  1690. {
  1691. "name": "Emanuil Rusev",
  1692. "email": "hello@erusev.com",
  1693. "homepage": "http://erusev.com"
  1694. }
  1695. ],
  1696. "description": "Parser for Markdown.",
  1697. "homepage": "http://parsedown.org",
  1698. "keywords": [
  1699. "markdown",
  1700. "parser"
  1701. ],
  1702. "support": {
  1703. "issues": "https://github.com/erusev/parsedown/issues",
  1704. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  1705. },
  1706. "time": "2019-12-30T22:54:17+00:00"
  1707. },
  1708. {
  1709. "name": "friendsofphp/proxy-manager-lts",
  1710. "version": "v1.0.3",
  1711. "source": {
  1712. "type": "git",
  1713. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1714. "reference": "121af47c9aee9c03031bdeca3fac0540f59aa5c3"
  1715. },
  1716. "dist": {
  1717. "type": "zip",
  1718. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/121af47c9aee9c03031bdeca3fac0540f59aa5c3",
  1719. "reference": "121af47c9aee9c03031bdeca3fac0540f59aa5c3",
  1720. "shasum": ""
  1721. },
  1722. "require": {
  1723. "laminas/laminas-code": "~3.4.1|^4.0",
  1724. "php": ">=7.1",
  1725. "symfony/filesystem": "^4.4.17|^5.0"
  1726. },
  1727. "conflict": {
  1728. "laminas/laminas-stdlib": "<3.2.1",
  1729. "zendframework/zend-stdlib": "<3.2.1"
  1730. },
  1731. "replace": {
  1732. "ocramius/proxy-manager": "^2.1"
  1733. },
  1734. "require-dev": {
  1735. "ext-phar": "*",
  1736. "symfony/phpunit-bridge": "^5.2"
  1737. },
  1738. "type": "library",
  1739. "extra": {
  1740. "thanks": {
  1741. "name": "ocramius/proxy-manager",
  1742. "url": "https://github.com/Ocramius/ProxyManager"
  1743. }
  1744. },
  1745. "autoload": {
  1746. "psr-4": {
  1747. "ProxyManager\\": "src/ProxyManager"
  1748. }
  1749. },
  1750. "notification-url": "https://packagist.org/downloads/",
  1751. "license": [
  1752. "MIT"
  1753. ],
  1754. "authors": [
  1755. {
  1756. "name": "Marco Pivetta",
  1757. "email": "ocramius@gmail.com",
  1758. "homepage": "http://ocramius.github.io/"
  1759. },
  1760. {
  1761. "name": "Nicolas Grekas",
  1762. "email": "p@tchwork.com"
  1763. }
  1764. ],
  1765. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1766. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1767. "keywords": [
  1768. "aop",
  1769. "lazy loading",
  1770. "proxy",
  1771. "proxy pattern",
  1772. "service proxies"
  1773. ],
  1774. "support": {
  1775. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1776. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.3"
  1777. },
  1778. "funding": [
  1779. {
  1780. "url": "https://github.com/Ocramius",
  1781. "type": "github"
  1782. },
  1783. {
  1784. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1785. "type": "tidelift"
  1786. }
  1787. ],
  1788. "time": "2021-01-14T21:52:44+00:00"
  1789. },
  1790. {
  1791. "name": "giggsey/libphonenumber-for-php",
  1792. "version": "8.12.18",
  1793. "source": {
  1794. "type": "git",
  1795. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  1796. "reference": "2d50e0aea1f70508b39a3d22c62d24d66d532ed2"
  1797. },
  1798. "dist": {
  1799. "type": "zip",
  1800. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/2d50e0aea1f70508b39a3d22c62d24d66d532ed2",
  1801. "reference": "2d50e0aea1f70508b39a3d22c62d24d66d532ed2",
  1802. "shasum": ""
  1803. },
  1804. "require": {
  1805. "giggsey/locale": "^1.7",
  1806. "php": ">=5.3.2",
  1807. "symfony/polyfill-mbstring": "^1.17"
  1808. },
  1809. "require-dev": {
  1810. "pear/pear-core-minimal": "^1.9",
  1811. "pear/pear_exception": "^1.0",
  1812. "pear/versioncontrol_git": "^0.5",
  1813. "phing/phing": "^2.7",
  1814. "php-coveralls/php-coveralls": "^1.0|^2.0",
  1815. "symfony/console": "^2.8|^3.0",
  1816. "symfony/phpunit-bridge": "^4.2 || ^5"
  1817. },
  1818. "type": "library",
  1819. "extra": {
  1820. "branch-alias": {
  1821. "dev-master": "8.x-dev"
  1822. }
  1823. },
  1824. "autoload": {
  1825. "psr-4": {
  1826. "libphonenumber\\": "src/"
  1827. },
  1828. "exclude-from-classmap": [
  1829. "/src/data/",
  1830. "/src/carrier/data/",
  1831. "/src/geocoding/data/",
  1832. "/src/timezone/data/"
  1833. ]
  1834. },
  1835. "notification-url": "https://packagist.org/downloads/",
  1836. "license": [
  1837. "Apache-2.0"
  1838. ],
  1839. "authors": [
  1840. {
  1841. "name": "Joshua Gigg",
  1842. "email": "giggsey@gmail.com",
  1843. "homepage": "https://giggsey.com/"
  1844. }
  1845. ],
  1846. "description": "PHP Port of Google's libphonenumber",
  1847. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  1848. "keywords": [
  1849. "geocoding",
  1850. "geolocation",
  1851. "libphonenumber",
  1852. "mobile",
  1853. "phonenumber",
  1854. "validation"
  1855. ],
  1856. "support": {
  1857. "irc": "irc://irc.appliedirc.com/lobby",
  1858. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  1859. "source": "https://github.com/giggsey/libphonenumber-for-php"
  1860. },
  1861. "time": "2021-02-08T10:31:32+00:00"
  1862. },
  1863. {
  1864. "name": "giggsey/locale",
  1865. "version": "1.9",
  1866. "source": {
  1867. "type": "git",
  1868. "url": "https://github.com/giggsey/Locale.git",
  1869. "reference": "b07f1eace8072ccc61445ad8fbd493ff9d783043"
  1870. },
  1871. "dist": {
  1872. "type": "zip",
  1873. "url": "https://api.github.com/repos/giggsey/Locale/zipball/b07f1eace8072ccc61445ad8fbd493ff9d783043",
  1874. "reference": "b07f1eace8072ccc61445ad8fbd493ff9d783043",
  1875. "shasum": ""
  1876. },
  1877. "require": {
  1878. "php": ">=5.3.2"
  1879. },
  1880. "require-dev": {
  1881. "pear/pear-core-minimal": "^1.9",
  1882. "pear/pear_exception": "^1.0",
  1883. "pear/versioncontrol_git": "^0.5",
  1884. "phing/phing": "~2.7",
  1885. "php-coveralls/php-coveralls": "^1.0|^2.0",
  1886. "phpunit/phpunit": "^4.8|^5.0",
  1887. "symfony/console": "^2.8|^3.0|^4.0",
  1888. "symfony/filesystem": "^2.8|^3.0|^4.0",
  1889. "symfony/finder": "^2.8|^3.0|^4.0",
  1890. "symfony/process": "^2.8|^3.0|^4.0"
  1891. },
  1892. "type": "library",
  1893. "autoload": {
  1894. "psr-4": {
  1895. "Giggsey\\Locale\\": "src/"
  1896. }
  1897. },
  1898. "notification-url": "https://packagist.org/downloads/",
  1899. "license": [
  1900. "MIT"
  1901. ],
  1902. "authors": [
  1903. {
  1904. "name": "Joshua Gigg",
  1905. "email": "giggsey@gmail.com",
  1906. "homepage": "http://giggsey.com/"
  1907. }
  1908. ],
  1909. "description": "Locale functions required by libphonenumber-for-php",
  1910. "support": {
  1911. "issues": "https://github.com/giggsey/Locale/issues",
  1912. "source": "https://github.com/giggsey/Locale/tree/master"
  1913. },
  1914. "time": "2020-07-07T11:16:24+00:00"
  1915. },
  1916. {
  1917. "name": "laminas/laminas-code",
  1918. "version": "4.0.0",
  1919. "source": {
  1920. "type": "git",
  1921. "url": "https://github.com/laminas/laminas-code.git",
  1922. "reference": "28a6d70ea8b8bca687d7163300e611ae33baf82a"
  1923. },
  1924. "dist": {
  1925. "type": "zip",
  1926. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/28a6d70ea8b8bca687d7163300e611ae33baf82a",
  1927. "reference": "28a6d70ea8b8bca687d7163300e611ae33baf82a",
  1928. "shasum": ""
  1929. },
  1930. "require": {
  1931. "laminas/laminas-eventmanager": "^3.3",
  1932. "php": "^7.4 || ~8.0.0"
  1933. },
  1934. "conflict": {
  1935. "phpspec/prophecy": "<1.9.0"
  1936. },
  1937. "replace": {
  1938. "zendframework/zend-code": "self.version"
  1939. },
  1940. "require-dev": {
  1941. "doctrine/annotations": "^1.10.4",
  1942. "ext-phar": "*",
  1943. "laminas/laminas-coding-standard": "^2.1.4",
  1944. "laminas/laminas-stdlib": "^3.3.0",
  1945. "phpunit/phpunit": "^9.4.2",
  1946. "psalm/plugin-phpunit": "^0.14.0",
  1947. "vimeo/psalm": "^4.3.1"
  1948. },
  1949. "suggest": {
  1950. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1951. "laminas/laminas-stdlib": "Laminas\\Stdlib component",
  1952. "laminas/laminas-zendframework-bridge": "A bridge with Zend Framework"
  1953. },
  1954. "type": "library",
  1955. "autoload": {
  1956. "psr-4": {
  1957. "Laminas\\Code\\": "src/"
  1958. }
  1959. },
  1960. "notification-url": "https://packagist.org/downloads/",
  1961. "license": [
  1962. "BSD-3-Clause"
  1963. ],
  1964. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1965. "homepage": "https://laminas.dev",
  1966. "keywords": [
  1967. "code",
  1968. "laminas",
  1969. "laminasframework"
  1970. ],
  1971. "support": {
  1972. "chat": "https://laminas.dev/chat",
  1973. "docs": "https://docs.laminas.dev/laminas-code/",
  1974. "forum": "https://discourse.laminas.dev",
  1975. "issues": "https://github.com/laminas/laminas-code/issues",
  1976. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1977. "source": "https://github.com/laminas/laminas-code"
  1978. },
  1979. "funding": [
  1980. {
  1981. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1982. "type": "community_bridge"
  1983. }
  1984. ],
  1985. "time": "2020-12-30T16:16:14+00:00"
  1986. },
  1987. {
  1988. "name": "laminas/laminas-eventmanager",
  1989. "version": "3.3.0",
  1990. "source": {
  1991. "type": "git",
  1992. "url": "https://github.com/laminas/laminas-eventmanager.git",
  1993. "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082"
  1994. },
  1995. "dist": {
  1996. "type": "zip",
  1997. "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/1940ccf30e058b2fd66f5a9d696f1b5e0027b082",
  1998. "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082",
  1999. "shasum": ""
  2000. },
  2001. "require": {
  2002. "laminas/laminas-zendframework-bridge": "^1.0",
  2003. "php": "^7.3 || ^8.0"
  2004. },
  2005. "replace": {
  2006. "zendframework/zend-eventmanager": "^3.2.1"
  2007. },
  2008. "require-dev": {
  2009. "container-interop/container-interop": "^1.1",
  2010. "laminas/laminas-coding-standard": "~1.0.0",
  2011. "laminas/laminas-stdlib": "^2.7.3 || ^3.0",
  2012. "phpbench/phpbench": "^0.17.1",
  2013. "phpunit/phpunit": "^8.5.8"
  2014. },
  2015. "suggest": {
  2016. "container-interop/container-interop": "^1.1, to use the lazy listeners feature",
  2017. "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  2018. },
  2019. "type": "library",
  2020. "extra": {
  2021. "branch-alias": {
  2022. "dev-master": "3.3.x-dev",
  2023. "dev-develop": "3.4.x-dev"
  2024. }
  2025. },
  2026. "autoload": {
  2027. "psr-4": {
  2028. "Laminas\\EventManager\\": "src/"
  2029. }
  2030. },
  2031. "notification-url": "https://packagist.org/downloads/",
  2032. "license": [
  2033. "BSD-3-Clause"
  2034. ],
  2035. "description": "Trigger and listen to events within a PHP application",
  2036. "homepage": "https://laminas.dev",
  2037. "keywords": [
  2038. "event",
  2039. "eventmanager",
  2040. "events",
  2041. "laminas"
  2042. ],
  2043. "support": {
  2044. "chat": "https://laminas.dev/chat",
  2045. "docs": "https://docs.laminas.dev/laminas-eventmanager/",
  2046. "forum": "https://discourse.laminas.dev",
  2047. "issues": "https://github.com/laminas/laminas-eventmanager/issues",
  2048. "rss": "https://github.com/laminas/laminas-eventmanager/releases.atom",
  2049. "source": "https://github.com/laminas/laminas-eventmanager"
  2050. },
  2051. "funding": [
  2052. {
  2053. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2054. "type": "community_bridge"
  2055. }
  2056. ],
  2057. "time": "2020-08-25T11:10:44+00:00"
  2058. },
  2059. {
  2060. "name": "laminas/laminas-zendframework-bridge",
  2061. "version": "1.1.1",
  2062. "source": {
  2063. "type": "git",
  2064. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  2065. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  2066. },
  2067. "dist": {
  2068. "type": "zip",
  2069. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  2070. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  2071. "shasum": ""
  2072. },
  2073. "require": {
  2074. "php": "^5.6 || ^7.0 || ^8.0"
  2075. },
  2076. "require-dev": {
  2077. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  2078. "squizlabs/php_codesniffer": "^3.5"
  2079. },
  2080. "type": "library",
  2081. "extra": {
  2082. "laminas": {
  2083. "module": "Laminas\\ZendFrameworkBridge"
  2084. }
  2085. },
  2086. "autoload": {
  2087. "files": [
  2088. "src/autoload.php"
  2089. ],
  2090. "psr-4": {
  2091. "Laminas\\ZendFrameworkBridge\\": "src//"
  2092. }
  2093. },
  2094. "notification-url": "https://packagist.org/downloads/",
  2095. "license": [
  2096. "BSD-3-Clause"
  2097. ],
  2098. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  2099. "keywords": [
  2100. "ZendFramework",
  2101. "autoloading",
  2102. "laminas",
  2103. "zf"
  2104. ],
  2105. "support": {
  2106. "forum": "https://discourse.laminas.dev/",
  2107. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  2108. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  2109. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  2110. },
  2111. "funding": [
  2112. {
  2113. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2114. "type": "community_bridge"
  2115. }
  2116. ],
  2117. "time": "2020-09-14T14:23:00+00:00"
  2118. },
  2119. {
  2120. "name": "league/uri-parser",
  2121. "version": "1.4.1",
  2122. "source": {
  2123. "type": "git",
  2124. "url": "https://github.com/thephpleague/uri-parser.git",
  2125. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00"
  2126. },
  2127. "dist": {
  2128. "type": "zip",
  2129. "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00",
  2130. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00",
  2131. "shasum": ""
  2132. },
  2133. "require": {
  2134. "php": ">=7.0.0"
  2135. },
  2136. "require-dev": {
  2137. "friendsofphp/php-cs-fixer": "^2.0",
  2138. "phpstan/phpstan": "^0.9.2",
  2139. "phpstan/phpstan-phpunit": "^0.9.4",
  2140. "phpstan/phpstan-strict-rules": "^0.9.0",
  2141. "phpunit/phpunit": "^6.0"
  2142. },
  2143. "suggest": {
  2144. "ext-intl": "Allow parsing RFC3987 compliant hosts",
  2145. "league/uri-schemes": "Allow validating and normalizing URI parsing results"
  2146. },
  2147. "type": "library",
  2148. "extra": {
  2149. "branch-alias": {
  2150. "dev-master": "1.x-dev"
  2151. }
  2152. },
  2153. "autoload": {
  2154. "psr-4": {
  2155. "League\\Uri\\": "src"
  2156. },
  2157. "files": [
  2158. "src/functions_include.php"
  2159. ]
  2160. },
  2161. "notification-url": "https://packagist.org/downloads/",
  2162. "license": [
  2163. "MIT"
  2164. ],
  2165. "authors": [
  2166. {
  2167. "name": "Ignace Nyamagana Butera",
  2168. "email": "nyamsprod@gmail.com",
  2169. "homepage": "https://nyamsprod.com"
  2170. }
  2171. ],
  2172. "description": "userland URI parser RFC 3986 compliant",
  2173. "homepage": "https://github.com/thephpleague/uri-parser",
  2174. "keywords": [
  2175. "parse_url",
  2176. "parser",
  2177. "rfc3986",
  2178. "rfc3987",
  2179. "uri",
  2180. "url"
  2181. ],
  2182. "support": {
  2183. "issues": "https://github.com/thephpleague/uri-parser/issues",
  2184. "source": "https://github.com/thephpleague/uri-parser/tree/master"
  2185. },
  2186. "time": "2018-11-22T07:55:51+00:00"
  2187. },
  2188. {
  2189. "name": "lstrojny/functional-php",
  2190. "version": "1.15.0",
  2191. "source": {
  2192. "type": "git",
  2193. "url": "https://github.com/lstrojny/functional-php.git",
  2194. "reference": "07940820f52820292c83419937d5c331a4ec2fb3"
  2195. },
  2196. "dist": {
  2197. "type": "zip",
  2198. "url": "https://api.github.com/repos/lstrojny/functional-php/zipball/07940820f52820292c83419937d5c331a4ec2fb3",
  2199. "reference": "07940820f52820292c83419937d5c331a4ec2fb3",
  2200. "shasum": ""
  2201. },
  2202. "require": {
  2203. "php": "~7|~8"
  2204. },
  2205. "require-dev": {
  2206. "friendsofphp/php-cs-fixer": "^2.14",
  2207. "phpunit/phpunit": "~7",
  2208. "squizlabs/php_codesniffer": "~3.0"
  2209. },
  2210. "type": "library",
  2211. "autoload": {
  2212. "psr-4": {
  2213. "Functional\\": "src/Functional"
  2214. },
  2215. "files": [
  2216. "src/Functional/Ary.php",
  2217. "src/Functional/Average.php",
  2218. "src/Functional/ButLast.php",
  2219. "src/Functional/Capture.php",
  2220. "src/Functional/ConstFunction.php",
  2221. "src/Functional/CompareOn.php",
  2222. "src/Functional/CompareObjectHashOn.php",
  2223. "src/Functional/Compose.php",
  2224. "src/Functional/Concat.php",
  2225. "src/Functional/Contains.php",
  2226. "src/Functional/Converge.php",
  2227. "src/Functional/Curry.php",
  2228. "src/Functional/CurryN.php",
  2229. "src/Functional/Difference.php",
  2230. "src/Functional/DropFirst.php",
  2231. "src/Functional/DropLast.php",
  2232. "src/Functional/Each.php",
  2233. "src/Functional/Equal.php",
  2234. "src/Functional/ErrorToException.php",
  2235. "src/Functional/Every.php",
  2236. "src/Functional/False.php",
  2237. "src/Functional/Falsy.php",
  2238. "src/Functional/Filter.php",
  2239. "src/Functional/First.php",
  2240. "src/Functional/FirstIndexOf.php",
  2241. "src/Functional/FlatMap.php",
  2242. "src/Functional/Flatten.php",
  2243. "src/Functional/Flip.php",
  2244. "src/Functional/GreaterThan.php",
  2245. "src/Functional/GreaterThanOrEqual.php",
  2246. "src/Functional/Group.php",
  2247. "src/Functional/Head.php",
  2248. "src/Functional/Id.php",
  2249. "src/Functional/IfElse.php",
  2250. "src/Functional/Identical.php",
  2251. "src/Functional/IndexesOf.php",
  2252. "src/Functional/Intersperse.php",
  2253. "src/Functional/Invoke.php",
  2254. "src/Functional/InvokeFirst.php",
  2255. "src/Functional/InvokeIf.php",
  2256. "src/Functional/InvokeLast.php",
  2257. "src/Functional/Invoker.php",
  2258. "src/Functional/Last.php",
  2259. "src/Functional/LastIndexOf.php",
  2260. "src/Functional/LessThan.php",
  2261. "src/Functional/LessThanOrEqual.php",
  2262. "src/Functional/LexicographicCompare.php",
  2263. "src/Functional/Map.php",
  2264. "src/Functional/Matching.php",
  2265. "src/Functional/Maximum.php",
  2266. "src/Functional/Memoize.php",
  2267. "src/Functional/Minimum.php",
  2268. "src/Functional/None.php",
  2269. "src/Functional/Noop.php",
  2270. "src/Functional/Not.php",
  2271. "src/Functional/OmitKeys.php",
  2272. "src/Functional/PartialAny.php",
  2273. "src/Functional/PartialLeft.php",
  2274. "src/Functional/PartialMethod.php",
  2275. "src/Functional/PartialRight.php",
  2276. "src/Functional/Partition.php",
  2277. "src/Functional/Pick.php",
  2278. "src/Functional/Pluck.php",
  2279. "src/Functional/Poll.php",
  2280. "src/Functional/Product.php",
  2281. "src/Functional/Ratio.php",
  2282. "src/Functional/ReduceLeft.php",
  2283. "src/Functional/ReduceRight.php",
  2284. "src/Functional/Reindex.php",
  2285. "src/Functional/Reject.php",
  2286. "src/Functional/Repeat.php",
  2287. "src/Functional/Retry.php",
  2288. "src/Functional/Select.php",
  2289. "src/Functional/SelectKeys.php",
  2290. "src/Functional/SequenceConstant.php",
  2291. "src/Functional/SequenceExponential.php",
  2292. "src/Functional/SequenceLinear.php",
  2293. "src/Functional/Some.php",
  2294. "src/Functional/Sort.php",
  2295. "src/Functional/Sum.php",
  2296. "src/Functional/SuppressError.php",
  2297. "src/Functional/Tap.php",
  2298. "src/Functional/Tail.php",
  2299. "src/Functional/TailRecursion.php",
  2300. "src/Functional/TakeLeft.php",
  2301. "src/Functional/TakeRight.php",
  2302. "src/Functional/True.php",
  2303. "src/Functional/Truthy.php",
  2304. "src/Functional/Unique.php",
  2305. "src/Functional/ValueToKey.php",
  2306. "src/Functional/With.php",
  2307. "src/Functional/Zip.php",
  2308. "src/Functional/ZipAll.php"
  2309. ]
  2310. },
  2311. "notification-url": "https://packagist.org/downloads/",
  2312. "license": [
  2313. "MIT"
  2314. ],
  2315. "authors": [
  2316. {
  2317. "name": "Lars Strojny",
  2318. "email": "lstrojny@php.net",
  2319. "homepage": "https://usrportage.de"
  2320. },
  2321. {
  2322. "name": "Max Beutel",
  2323. "email": "nash12@gmail.com"
  2324. }
  2325. ],
  2326. "description": "Functional primitives for PHP",
  2327. "keywords": [
  2328. "functional"
  2329. ],
  2330. "support": {
  2331. "issues": "https://github.com/lstrojny/functional-php/issues",
  2332. "source": "https://github.com/lstrojny/functional-php/tree/1.15.0"
  2333. },
  2334. "time": "2020-12-22T07:53:25+00:00"
  2335. },
  2336. {
  2337. "name": "masterminds/html5",
  2338. "version": "2.7.4",
  2339. "source": {
  2340. "type": "git",
  2341. "url": "https://github.com/Masterminds/html5-php.git",
  2342. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  2343. },
  2344. "dist": {
  2345. "type": "zip",
  2346. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  2347. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  2348. "shasum": ""
  2349. },
  2350. "require": {
  2351. "ext-ctype": "*",
  2352. "ext-dom": "*",
  2353. "ext-libxml": "*",
  2354. "php": ">=5.3.0"
  2355. },
  2356. "require-dev": {
  2357. "phpunit/phpunit": "^4.8.35"
  2358. },
  2359. "type": "library",
  2360. "extra": {
  2361. "branch-alias": {
  2362. "dev-master": "2.7-dev"
  2363. }
  2364. },
  2365. "autoload": {
  2366. "psr-4": {
  2367. "Masterminds\\": "src"
  2368. }
  2369. },
  2370. "notification-url": "https://packagist.org/downloads/",
  2371. "license": [
  2372. "MIT"
  2373. ],
  2374. "authors": [
  2375. {
  2376. "name": "Matt Butcher",
  2377. "email": "technosophos@gmail.com"
  2378. },
  2379. {
  2380. "name": "Matt Farina",
  2381. "email": "matt@mattfarina.com"
  2382. },
  2383. {
  2384. "name": "Asmir Mustafic",
  2385. "email": "goetas@gmail.com"
  2386. }
  2387. ],
  2388. "description": "An HTML5 parser and serializer.",
  2389. "homepage": "http://masterminds.github.io/html5-php",
  2390. "keywords": [
  2391. "HTML5",
  2392. "dom",
  2393. "html",
  2394. "parser",
  2395. "querypath",
  2396. "serializer",
  2397. "xml"
  2398. ],
  2399. "support": {
  2400. "issues": "https://github.com/Masterminds/html5-php/issues",
  2401. "source": "https://github.com/Masterminds/html5-php/tree/2.7.4"
  2402. },
  2403. "time": "2020-10-01T13:52:52+00:00"
  2404. },
  2405. {
  2406. "name": "monolog/monolog",
  2407. "version": "2.2.0",
  2408. "source": {
  2409. "type": "git",
  2410. "url": "https://github.com/Seldaek/monolog.git",
  2411. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2412. },
  2413. "dist": {
  2414. "type": "zip",
  2415. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2416. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2417. "shasum": ""
  2418. },
  2419. "require": {
  2420. "php": ">=7.2",
  2421. "psr/log": "^1.0.1"
  2422. },
  2423. "provide": {
  2424. "psr/log-implementation": "1.0.0"
  2425. },
  2426. "require-dev": {
  2427. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2428. "doctrine/couchdb": "~1.0@dev",
  2429. "elasticsearch/elasticsearch": "^7",
  2430. "graylog2/gelf-php": "^1.4.2",
  2431. "mongodb/mongodb": "^1.8",
  2432. "php-amqplib/php-amqplib": "~2.4",
  2433. "php-console/php-console": "^3.1.3",
  2434. "phpspec/prophecy": "^1.6.1",
  2435. "phpstan/phpstan": "^0.12.59",
  2436. "phpunit/phpunit": "^8.5",
  2437. "predis/predis": "^1.1",
  2438. "rollbar/rollbar": "^1.3",
  2439. "ruflin/elastica": ">=0.90 <7.0.1",
  2440. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2441. },
  2442. "suggest": {
  2443. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2444. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2445. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2446. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2447. "ext-mbstring": "Allow to work properly with unicode symbols",
  2448. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2449. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2450. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2451. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2452. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2453. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2454. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2455. },
  2456. "type": "library",
  2457. "extra": {
  2458. "branch-alias": {
  2459. "dev-main": "2.x-dev"
  2460. }
  2461. },
  2462. "autoload": {
  2463. "psr-4": {
  2464. "Monolog\\": "src/Monolog"
  2465. }
  2466. },
  2467. "notification-url": "https://packagist.org/downloads/",
  2468. "license": [
  2469. "MIT"
  2470. ],
  2471. "authors": [
  2472. {
  2473. "name": "Jordi Boggiano",
  2474. "email": "j.boggiano@seld.be",
  2475. "homepage": "https://seld.be"
  2476. }
  2477. ],
  2478. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2479. "homepage": "https://github.com/Seldaek/monolog",
  2480. "keywords": [
  2481. "log",
  2482. "logging",
  2483. "psr-3"
  2484. ],
  2485. "support": {
  2486. "issues": "https://github.com/Seldaek/monolog/issues",
  2487. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  2488. },
  2489. "funding": [
  2490. {
  2491. "url": "https://github.com/Seldaek",
  2492. "type": "github"
  2493. },
  2494. {
  2495. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2496. "type": "tidelift"
  2497. }
  2498. ],
  2499. "time": "2020-12-14T13:15:25+00:00"
  2500. },
  2501. {
  2502. "name": "odolbeau/phone-number-bundle",
  2503. "version": "v3.3.3",
  2504. "source": {
  2505. "type": "git",
  2506. "url": "https://github.com/odolbeau/phone-number-bundle.git",
  2507. "reference": "34f9eabcec4f159decdf30f6f10eada4d9b27326"
  2508. },
  2509. "dist": {
  2510. "type": "zip",
  2511. "url": "https://api.github.com/repos/odolbeau/phone-number-bundle/zipball/34f9eabcec4f159decdf30f6f10eada4d9b27326",
  2512. "reference": "34f9eabcec4f159decdf30f6f10eada4d9b27326",
  2513. "shasum": ""
  2514. },
  2515. "require": {
  2516. "giggsey/libphonenumber-for-php": "^8.0",
  2517. "php": ">7.2.5",
  2518. "symfony/framework-bundle": "^3.4|^4.3|^5.0"
  2519. },
  2520. "replace": {
  2521. "misd/phone-number-bundle": "self.version"
  2522. },
  2523. "require-dev": {
  2524. "doctrine/doctrine-bundle": "^1.12|^2.0",
  2525. "phpunit/phpunit": "^8.4",
  2526. "symfony/form": "^3.4|^4.3|^5.0",
  2527. "symfony/property-access": "^3.4|^4.3|^5.0",
  2528. "symfony/serializer": "^3.4|^4.3|^5.0",
  2529. "symfony/twig-bundle": "^3.4|^4.3|^5.0",
  2530. "symfony/validator": "^3.4|^4.3|^5.0"
  2531. },
  2532. "suggest": {
  2533. "doctrine/doctrine-bundle": "Add a DBAL mapping type",
  2534. "symfony/form": "Add a data transformer",
  2535. "symfony/property-access": "Choose a path in the validation constraint",
  2536. "symfony/serializer": "Serialize/deserialize phone numbers using Symfony library",
  2537. "symfony/twig-bundle": "Format phone numbers in Twig templates",
  2538. "symfony/validator": "Add a validation constraint"
  2539. },
  2540. "type": "symfony-bundle",
  2541. "extra": {
  2542. "branch-alias": {
  2543. "dev-master": "3.3.x-dev"
  2544. }
  2545. },
  2546. "autoload": {
  2547. "psr-4": {
  2548. "Misd\\PhoneNumberBundle\\": "src/"
  2549. }
  2550. },
  2551. "notification-url": "https://packagist.org/downloads/",
  2552. "license": [
  2553. "MIT"
  2554. ],
  2555. "description": "Integrates libphonenumber into your Symfony application",
  2556. "homepage": "https://github.com/odolbeau/phone-number-bundle",
  2557. "keywords": [
  2558. "bundle",
  2559. "libphonenumber",
  2560. "phone-number",
  2561. "phonenumber",
  2562. "telephone number"
  2563. ],
  2564. "support": {
  2565. "issues": "https://github.com/odolbeau/phone-number-bundle/issues",
  2566. "source": "https://github.com/odolbeau/phone-number-bundle/tree/v3.3.3"
  2567. },
  2568. "time": "2021-02-04T14:29:07+00:00"
  2569. },
  2570. {
  2571. "name": "php-ds/php-ds",
  2572. "version": "v1.3.0",
  2573. "source": {
  2574. "type": "git",
  2575. "url": "https://github.com/php-ds/polyfill.git",
  2576. "reference": "b98396862fb8a13cbdbbaf4d18be28ee5c01ed3c"
  2577. },
  2578. "dist": {
  2579. "type": "zip",
  2580. "url": "https://api.github.com/repos/php-ds/polyfill/zipball/b98396862fb8a13cbdbbaf4d18be28ee5c01ed3c",
  2581. "reference": "b98396862fb8a13cbdbbaf4d18be28ee5c01ed3c",
  2582. "shasum": ""
  2583. },
  2584. "require": {
  2585. "ext-json": "*",
  2586. "php": ">=7.0.0"
  2587. },
  2588. "provide": {
  2589. "ext-ds": "1.3.0"
  2590. },
  2591. "require-dev": {
  2592. "php-ds/tests": "^1.3"
  2593. },
  2594. "suggest": {
  2595. "ext-ds": "to improve performance and reduce memory usage"
  2596. },
  2597. "type": "library",
  2598. "autoload": {
  2599. "psr-4": {
  2600. "Ds\\": "src"
  2601. }
  2602. },
  2603. "notification-url": "https://packagist.org/downloads/",
  2604. "license": [
  2605. "MIT"
  2606. ],
  2607. "authors": [
  2608. {
  2609. "name": "Rudi Theunissen",
  2610. "email": "rudolf.theunissen@gmail.com"
  2611. }
  2612. ],
  2613. "keywords": [
  2614. "data structures",
  2615. "ds",
  2616. "php",
  2617. "polyfill"
  2618. ],
  2619. "support": {
  2620. "issues": "https://github.com/php-ds/polyfill/issues",
  2621. "source": "https://github.com/php-ds/polyfill/tree/v1.3.0"
  2622. },
  2623. "time": "2020-10-14T04:23:31+00:00"
  2624. },
  2625. {
  2626. "name": "phpdocumentor/reflection-common",
  2627. "version": "2.2.0",
  2628. "source": {
  2629. "type": "git",
  2630. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2631. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2632. },
  2633. "dist": {
  2634. "type": "zip",
  2635. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2636. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2637. "shasum": ""
  2638. },
  2639. "require": {
  2640. "php": "^7.2 || ^8.0"
  2641. },
  2642. "type": "library",
  2643. "extra": {
  2644. "branch-alias": {
  2645. "dev-2.x": "2.x-dev"
  2646. }
  2647. },
  2648. "autoload": {
  2649. "psr-4": {
  2650. "phpDocumentor\\Reflection\\": "src/"
  2651. }
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "MIT"
  2656. ],
  2657. "authors": [
  2658. {
  2659. "name": "Jaap van Otterdijk",
  2660. "email": "opensource@ijaap.nl"
  2661. }
  2662. ],
  2663. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2664. "homepage": "http://www.phpdoc.org",
  2665. "keywords": [
  2666. "FQSEN",
  2667. "phpDocumentor",
  2668. "phpdoc",
  2669. "reflection",
  2670. "static analysis"
  2671. ],
  2672. "support": {
  2673. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2674. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2675. },
  2676. "time": "2020-06-27T09:03:43+00:00"
  2677. },
  2678. {
  2679. "name": "phpdocumentor/reflection-docblock",
  2680. "version": "5.2.2",
  2681. "source": {
  2682. "type": "git",
  2683. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2684. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  2685. },
  2686. "dist": {
  2687. "type": "zip",
  2688. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  2689. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  2690. "shasum": ""
  2691. },
  2692. "require": {
  2693. "ext-filter": "*",
  2694. "php": "^7.2 || ^8.0",
  2695. "phpdocumentor/reflection-common": "^2.2",
  2696. "phpdocumentor/type-resolver": "^1.3",
  2697. "webmozart/assert": "^1.9.1"
  2698. },
  2699. "require-dev": {
  2700. "mockery/mockery": "~1.3.2"
  2701. },
  2702. "type": "library",
  2703. "extra": {
  2704. "branch-alias": {
  2705. "dev-master": "5.x-dev"
  2706. }
  2707. },
  2708. "autoload": {
  2709. "psr-4": {
  2710. "phpDocumentor\\Reflection\\": "src"
  2711. }
  2712. },
  2713. "notification-url": "https://packagist.org/downloads/",
  2714. "license": [
  2715. "MIT"
  2716. ],
  2717. "authors": [
  2718. {
  2719. "name": "Mike van Riel",
  2720. "email": "me@mikevanriel.com"
  2721. },
  2722. {
  2723. "name": "Jaap van Otterdijk",
  2724. "email": "account@ijaap.nl"
  2725. }
  2726. ],
  2727. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2728. "support": {
  2729. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2730. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  2731. },
  2732. "time": "2020-09-03T19:13:55+00:00"
  2733. },
  2734. {
  2735. "name": "phpdocumentor/type-resolver",
  2736. "version": "1.4.0",
  2737. "source": {
  2738. "type": "git",
  2739. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2740. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  2741. },
  2742. "dist": {
  2743. "type": "zip",
  2744. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  2745. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  2746. "shasum": ""
  2747. },
  2748. "require": {
  2749. "php": "^7.2 || ^8.0",
  2750. "phpdocumentor/reflection-common": "^2.0"
  2751. },
  2752. "require-dev": {
  2753. "ext-tokenizer": "*"
  2754. },
  2755. "type": "library",
  2756. "extra": {
  2757. "branch-alias": {
  2758. "dev-1.x": "1.x-dev"
  2759. }
  2760. },
  2761. "autoload": {
  2762. "psr-4": {
  2763. "phpDocumentor\\Reflection\\": "src"
  2764. }
  2765. },
  2766. "notification-url": "https://packagist.org/downloads/",
  2767. "license": [
  2768. "MIT"
  2769. ],
  2770. "authors": [
  2771. {
  2772. "name": "Mike van Riel",
  2773. "email": "me@mikevanriel.com"
  2774. }
  2775. ],
  2776. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2777. "support": {
  2778. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2779. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  2780. },
  2781. "time": "2020-09-17T18:55:26+00:00"
  2782. },
  2783. {
  2784. "name": "psr/cache",
  2785. "version": "1.0.1",
  2786. "source": {
  2787. "type": "git",
  2788. "url": "https://github.com/php-fig/cache.git",
  2789. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2790. },
  2791. "dist": {
  2792. "type": "zip",
  2793. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2794. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2795. "shasum": ""
  2796. },
  2797. "require": {
  2798. "php": ">=5.3.0"
  2799. },
  2800. "type": "library",
  2801. "extra": {
  2802. "branch-alias": {
  2803. "dev-master": "1.0.x-dev"
  2804. }
  2805. },
  2806. "autoload": {
  2807. "psr-4": {
  2808. "Psr\\Cache\\": "src/"
  2809. }
  2810. },
  2811. "notification-url": "https://packagist.org/downloads/",
  2812. "license": [
  2813. "MIT"
  2814. ],
  2815. "authors": [
  2816. {
  2817. "name": "PHP-FIG",
  2818. "homepage": "http://www.php-fig.org/"
  2819. }
  2820. ],
  2821. "description": "Common interface for caching libraries",
  2822. "keywords": [
  2823. "cache",
  2824. "psr",
  2825. "psr-6"
  2826. ],
  2827. "support": {
  2828. "source": "https://github.com/php-fig/cache/tree/master"
  2829. },
  2830. "time": "2016-08-06T20:24:11+00:00"
  2831. },
  2832. {
  2833. "name": "psr/container",
  2834. "version": "1.0.0",
  2835. "source": {
  2836. "type": "git",
  2837. "url": "https://github.com/php-fig/container.git",
  2838. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2839. },
  2840. "dist": {
  2841. "type": "zip",
  2842. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2843. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2844. "shasum": ""
  2845. },
  2846. "require": {
  2847. "php": ">=5.3.0"
  2848. },
  2849. "type": "library",
  2850. "extra": {
  2851. "branch-alias": {
  2852. "dev-master": "1.0.x-dev"
  2853. }
  2854. },
  2855. "autoload": {
  2856. "psr-4": {
  2857. "Psr\\Container\\": "src/"
  2858. }
  2859. },
  2860. "notification-url": "https://packagist.org/downloads/",
  2861. "license": [
  2862. "MIT"
  2863. ],
  2864. "authors": [
  2865. {
  2866. "name": "PHP-FIG",
  2867. "homepage": "http://www.php-fig.org/"
  2868. }
  2869. ],
  2870. "description": "Common Container Interface (PHP FIG PSR-11)",
  2871. "homepage": "https://github.com/php-fig/container",
  2872. "keywords": [
  2873. "PSR-11",
  2874. "container",
  2875. "container-interface",
  2876. "container-interop",
  2877. "psr"
  2878. ],
  2879. "support": {
  2880. "issues": "https://github.com/php-fig/container/issues",
  2881. "source": "https://github.com/php-fig/container/tree/master"
  2882. },
  2883. "time": "2017-02-14T16:28:37+00:00"
  2884. },
  2885. {
  2886. "name": "psr/event-dispatcher",
  2887. "version": "1.0.0",
  2888. "source": {
  2889. "type": "git",
  2890. "url": "https://github.com/php-fig/event-dispatcher.git",
  2891. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2892. },
  2893. "dist": {
  2894. "type": "zip",
  2895. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2896. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2897. "shasum": ""
  2898. },
  2899. "require": {
  2900. "php": ">=7.2.0"
  2901. },
  2902. "type": "library",
  2903. "extra": {
  2904. "branch-alias": {
  2905. "dev-master": "1.0.x-dev"
  2906. }
  2907. },
  2908. "autoload": {
  2909. "psr-4": {
  2910. "Psr\\EventDispatcher\\": "src/"
  2911. }
  2912. },
  2913. "notification-url": "https://packagist.org/downloads/",
  2914. "license": [
  2915. "MIT"
  2916. ],
  2917. "authors": [
  2918. {
  2919. "name": "PHP-FIG",
  2920. "homepage": "http://www.php-fig.org/"
  2921. }
  2922. ],
  2923. "description": "Standard interfaces for event handling.",
  2924. "keywords": [
  2925. "events",
  2926. "psr",
  2927. "psr-14"
  2928. ],
  2929. "support": {
  2930. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2931. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2932. },
  2933. "time": "2019-01-08T18:20:26+00:00"
  2934. },
  2935. {
  2936. "name": "psr/link",
  2937. "version": "1.0.0",
  2938. "source": {
  2939. "type": "git",
  2940. "url": "https://github.com/php-fig/link.git",
  2941. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  2942. },
  2943. "dist": {
  2944. "type": "zip",
  2945. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  2946. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  2947. "shasum": ""
  2948. },
  2949. "require": {
  2950. "php": ">=5.3.0"
  2951. },
  2952. "type": "library",
  2953. "extra": {
  2954. "branch-alias": {
  2955. "dev-master": "1.0.x-dev"
  2956. }
  2957. },
  2958. "autoload": {
  2959. "psr-4": {
  2960. "Psr\\Link\\": "src/"
  2961. }
  2962. },
  2963. "notification-url": "https://packagist.org/downloads/",
  2964. "license": [
  2965. "MIT"
  2966. ],
  2967. "authors": [
  2968. {
  2969. "name": "PHP-FIG",
  2970. "homepage": "http://www.php-fig.org/"
  2971. }
  2972. ],
  2973. "description": "Common interfaces for HTTP links",
  2974. "keywords": [
  2975. "http",
  2976. "http-link",
  2977. "link",
  2978. "psr",
  2979. "psr-13",
  2980. "rest"
  2981. ],
  2982. "support": {
  2983. "source": "https://github.com/php-fig/link/tree/master"
  2984. },
  2985. "time": "2016-10-28T16:06:13+00:00"
  2986. },
  2987. {
  2988. "name": "psr/log",
  2989. "version": "1.1.3",
  2990. "source": {
  2991. "type": "git",
  2992. "url": "https://github.com/php-fig/log.git",
  2993. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  2994. },
  2995. "dist": {
  2996. "type": "zip",
  2997. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  2998. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  2999. "shasum": ""
  3000. },
  3001. "require": {
  3002. "php": ">=5.3.0"
  3003. },
  3004. "type": "library",
  3005. "extra": {
  3006. "branch-alias": {
  3007. "dev-master": "1.1.x-dev"
  3008. }
  3009. },
  3010. "autoload": {
  3011. "psr-4": {
  3012. "Psr\\Log\\": "Psr/Log/"
  3013. }
  3014. },
  3015. "notification-url": "https://packagist.org/downloads/",
  3016. "license": [
  3017. "MIT"
  3018. ],
  3019. "authors": [
  3020. {
  3021. "name": "PHP-FIG",
  3022. "homepage": "http://www.php-fig.org/"
  3023. }
  3024. ],
  3025. "description": "Common interface for logging libraries",
  3026. "homepage": "https://github.com/php-fig/log",
  3027. "keywords": [
  3028. "log",
  3029. "psr",
  3030. "psr-3"
  3031. ],
  3032. "support": {
  3033. "source": "https://github.com/php-fig/log/tree/1.1.3"
  3034. },
  3035. "time": "2020-03-23T09:12:05+00:00"
  3036. },
  3037. {
  3038. "name": "sensio/framework-extra-bundle",
  3039. "version": "v5.6.1",
  3040. "source": {
  3041. "type": "git",
  3042. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  3043. "reference": "430d14c01836b77c28092883d195a43ce413ee32"
  3044. },
  3045. "dist": {
  3046. "type": "zip",
  3047. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/430d14c01836b77c28092883d195a43ce413ee32",
  3048. "reference": "430d14c01836b77c28092883d195a43ce413ee32",
  3049. "shasum": ""
  3050. },
  3051. "require": {
  3052. "doctrine/annotations": "^1.0",
  3053. "php": ">=7.2.5",
  3054. "symfony/config": "^4.4|^5.0",
  3055. "symfony/dependency-injection": "^4.4|^5.0",
  3056. "symfony/framework-bundle": "^4.4|^5.0",
  3057. "symfony/http-kernel": "^4.4|^5.0"
  3058. },
  3059. "conflict": {
  3060. "doctrine/doctrine-cache-bundle": "<1.3.1",
  3061. "doctrine/persistence": "<1.3"
  3062. },
  3063. "require-dev": {
  3064. "doctrine/dbal": "^2.10|^3.0",
  3065. "doctrine/doctrine-bundle": "^1.11|^2.0",
  3066. "doctrine/orm": "^2.5",
  3067. "nyholm/psr7": "^1.1",
  3068. "symfony/browser-kit": "^4.4|^5.0",
  3069. "symfony/doctrine-bridge": "^4.4|^5.0",
  3070. "symfony/dom-crawler": "^4.4|^5.0",
  3071. "symfony/expression-language": "^4.4|^5.0",
  3072. "symfony/finder": "^4.4|^5.0",
  3073. "symfony/monolog-bridge": "^4.0|^5.0",
  3074. "symfony/monolog-bundle": "^3.2",
  3075. "symfony/phpunit-bridge": "^4.4.9|^5.0.9",
  3076. "symfony/psr-http-message-bridge": "^1.1",
  3077. "symfony/security-bundle": "^4.4|^5.0",
  3078. "symfony/twig-bundle": "^4.4|^5.0",
  3079. "symfony/yaml": "^4.4|^5.0",
  3080. "twig/twig": "^1.34|^2.4|^3.0"
  3081. },
  3082. "type": "symfony-bundle",
  3083. "extra": {
  3084. "branch-alias": {
  3085. "dev-master": "5.6.x-dev"
  3086. }
  3087. },
  3088. "autoload": {
  3089. "psr-4": {
  3090. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  3091. },
  3092. "exclude-from-classmap": [
  3093. "/tests/"
  3094. ]
  3095. },
  3096. "notification-url": "https://packagist.org/downloads/",
  3097. "license": [
  3098. "MIT"
  3099. ],
  3100. "authors": [
  3101. {
  3102. "name": "Fabien Potencier",
  3103. "email": "fabien@symfony.com"
  3104. }
  3105. ],
  3106. "description": "This bundle provides a way to configure your controllers with annotations",
  3107. "keywords": [
  3108. "annotations",
  3109. "controllers"
  3110. ],
  3111. "support": {
  3112. "issues": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/issues",
  3113. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v5.6.1"
  3114. },
  3115. "time": "2020-08-25T19:10:18+00:00"
  3116. },
  3117. {
  3118. "name": "someonewithpc/memcached-polyfill",
  3119. "version": "1.0.1",
  3120. "source": {
  3121. "type": "git",
  3122. "url": "https://github.com/someonewithpc/memcached-polyfill.git",
  3123. "reference": "326a44a1ce5f936b25aa69b5c9b82a7cc8e565b4"
  3124. },
  3125. "dist": {
  3126. "type": "zip",
  3127. "url": "https://api.github.com/repos/someonewithpc/memcached-polyfill/zipball/326a44a1ce5f936b25aa69b5c9b82a7cc8e565b4",
  3128. "reference": "326a44a1ce5f936b25aa69b5c9b82a7cc8e565b4",
  3129. "shasum": ""
  3130. },
  3131. "type": "library",
  3132. "autoload": {
  3133. "psr-4": {
  3134. "": "src"
  3135. }
  3136. },
  3137. "notification-url": "https://packagist.org/downloads/",
  3138. "license": [
  3139. "GPL-3.0-or-later"
  3140. ],
  3141. "authors": [
  3142. {
  3143. "name": "Hugo Sales",
  3144. "email": "hugo@fc.up.pt"
  3145. }
  3146. ],
  3147. "description": "No-implementation memcached extension polyfill",
  3148. "keywords": [
  3149. "memcached",
  3150. "polyfill",
  3151. "symfony"
  3152. ],
  3153. "support": {
  3154. "issues": "https://github.com/someonewithpc/memcached-polyfill/issues",
  3155. "source": "https://github.com/someonewithpc/memcached-polyfill/tree/1.0.1"
  3156. },
  3157. "time": "2020-07-17T22:30:37+00:00"
  3158. },
  3159. {
  3160. "name": "someonewithpc/redis-polyfill",
  3161. "version": "1.0.1",
  3162. "source": {
  3163. "type": "git",
  3164. "url": "https://github.com/someonewithpc/php-redis-polyfill.git",
  3165. "reference": "db70a9df20bb2b82f594d84c4490b8edd20379a2"
  3166. },
  3167. "dist": {
  3168. "type": "zip",
  3169. "url": "https://api.github.com/repos/someonewithpc/php-redis-polyfill/zipball/db70a9df20bb2b82f594d84c4490b8edd20379a2",
  3170. "reference": "db70a9df20bb2b82f594d84c4490b8edd20379a2",
  3171. "shasum": ""
  3172. },
  3173. "type": "library",
  3174. "autoload": {
  3175. "psr-4": {
  3176. "": "src"
  3177. }
  3178. },
  3179. "notification-url": "https://packagist.org/downloads/",
  3180. "license": [
  3181. "GPL-3.0-or-later"
  3182. ],
  3183. "authors": [
  3184. {
  3185. "name": "Hugo Sales",
  3186. "email": "hugo@fc.up.pt"
  3187. }
  3188. ],
  3189. "description": "No-implementation redis extension polyfill",
  3190. "keywords": [
  3191. "polyfill",
  3192. "redis"
  3193. ],
  3194. "support": {
  3195. "issues": "https://github.com/someonewithpc/php-redis-polyfill/issues",
  3196. "source": "https://github.com/someonewithpc/php-redis-polyfill/tree/1.0.1"
  3197. },
  3198. "time": "2020-07-17T22:29:37+00:00"
  3199. },
  3200. {
  3201. "name": "symfony/amqp-messenger",
  3202. "version": "v5.1.11",
  3203. "source": {
  3204. "type": "git",
  3205. "url": "https://github.com/symfony/amqp-messenger.git",
  3206. "reference": "0b7d730db61b4d51dbf27a38b36290e53aa7cd3a"
  3207. },
  3208. "dist": {
  3209. "type": "zip",
  3210. "url": "https://api.github.com/repos/symfony/amqp-messenger/zipball/0b7d730db61b4d51dbf27a38b36290e53aa7cd3a",
  3211. "reference": "0b7d730db61b4d51dbf27a38b36290e53aa7cd3a",
  3212. "shasum": ""
  3213. },
  3214. "require": {
  3215. "php": ">=7.2.5",
  3216. "symfony/deprecation-contracts": "^2.1",
  3217. "symfony/messenger": "^5.1"
  3218. },
  3219. "require-dev": {
  3220. "symfony/event-dispatcher": "^4.4|^5.0",
  3221. "symfony/process": "^4.4|^5.0",
  3222. "symfony/property-access": "^4.4|^5.0",
  3223. "symfony/serializer": "^4.4|^5.0"
  3224. },
  3225. "type": "symfony-bridge",
  3226. "autoload": {
  3227. "psr-4": {
  3228. "Symfony\\Component\\Messenger\\Bridge\\Amqp\\": ""
  3229. },
  3230. "exclude-from-classmap": [
  3231. "/Tests/"
  3232. ]
  3233. },
  3234. "notification-url": "https://packagist.org/downloads/",
  3235. "license": [
  3236. "MIT"
  3237. ],
  3238. "authors": [
  3239. {
  3240. "name": "Fabien Potencier",
  3241. "email": "fabien@symfony.com"
  3242. },
  3243. {
  3244. "name": "Symfony Community",
  3245. "homepage": "https://symfony.com/contributors"
  3246. }
  3247. ],
  3248. "description": "Symfony AMQP extension Messenger Bridge",
  3249. "homepage": "https://symfony.com",
  3250. "support": {
  3251. "source": "https://github.com/symfony/amqp-messenger/tree/v5.1.11"
  3252. },
  3253. "funding": [
  3254. {
  3255. "url": "https://symfony.com/sponsor",
  3256. "type": "custom"
  3257. },
  3258. {
  3259. "url": "https://github.com/fabpot",
  3260. "type": "github"
  3261. },
  3262. {
  3263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3264. "type": "tidelift"
  3265. }
  3266. ],
  3267. "time": "2021-01-27T11:17:55+00:00"
  3268. },
  3269. {
  3270. "name": "symfony/asset",
  3271. "version": "v5.1.11",
  3272. "source": {
  3273. "type": "git",
  3274. "url": "https://github.com/symfony/asset.git",
  3275. "reference": "54a42aa50f9359d1184bf7e954521b45ca3d5828"
  3276. },
  3277. "dist": {
  3278. "type": "zip",
  3279. "url": "https://api.github.com/repos/symfony/asset/zipball/54a42aa50f9359d1184bf7e954521b45ca3d5828",
  3280. "reference": "54a42aa50f9359d1184bf7e954521b45ca3d5828",
  3281. "shasum": ""
  3282. },
  3283. "require": {
  3284. "php": ">=7.2.5"
  3285. },
  3286. "require-dev": {
  3287. "symfony/http-client": "^4.4|^5.0",
  3288. "symfony/http-foundation": "^4.4|^5.0",
  3289. "symfony/http-kernel": "^4.4|^5.0"
  3290. },
  3291. "suggest": {
  3292. "symfony/http-foundation": ""
  3293. },
  3294. "type": "library",
  3295. "autoload": {
  3296. "psr-4": {
  3297. "Symfony\\Component\\Asset\\": ""
  3298. },
  3299. "exclude-from-classmap": [
  3300. "/Tests/"
  3301. ]
  3302. },
  3303. "notification-url": "https://packagist.org/downloads/",
  3304. "license": [
  3305. "MIT"
  3306. ],
  3307. "authors": [
  3308. {
  3309. "name": "Fabien Potencier",
  3310. "email": "fabien@symfony.com"
  3311. },
  3312. {
  3313. "name": "Symfony Community",
  3314. "homepage": "https://symfony.com/contributors"
  3315. }
  3316. ],
  3317. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3318. "homepage": "https://symfony.com",
  3319. "support": {
  3320. "source": "https://github.com/symfony/asset/tree/v5.1.11"
  3321. },
  3322. "funding": [
  3323. {
  3324. "url": "https://symfony.com/sponsor",
  3325. "type": "custom"
  3326. },
  3327. {
  3328. "url": "https://github.com/fabpot",
  3329. "type": "github"
  3330. },
  3331. {
  3332. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3333. "type": "tidelift"
  3334. }
  3335. ],
  3336. "time": "2021-01-27T10:01:46+00:00"
  3337. },
  3338. {
  3339. "name": "symfony/cache",
  3340. "version": "v5.1.11",
  3341. "source": {
  3342. "type": "git",
  3343. "url": "https://github.com/symfony/cache.git",
  3344. "reference": "6def7595e74b4b0a6b515af964792e2d092f056d"
  3345. },
  3346. "dist": {
  3347. "type": "zip",
  3348. "url": "https://api.github.com/repos/symfony/cache/zipball/6def7595e74b4b0a6b515af964792e2d092f056d",
  3349. "reference": "6def7595e74b4b0a6b515af964792e2d092f056d",
  3350. "shasum": ""
  3351. },
  3352. "require": {
  3353. "php": ">=7.2.5",
  3354. "psr/cache": "~1.0",
  3355. "psr/log": "~1.0",
  3356. "symfony/cache-contracts": "^1.1.7|^2",
  3357. "symfony/polyfill-php80": "^1.15",
  3358. "symfony/service-contracts": "^1.1|^2",
  3359. "symfony/var-exporter": "^4.4|^5.0"
  3360. },
  3361. "conflict": {
  3362. "doctrine/dbal": "<2.6",
  3363. "symfony/dependency-injection": "<4.4",
  3364. "symfony/http-kernel": "<4.4",
  3365. "symfony/var-dumper": "<4.4"
  3366. },
  3367. "provide": {
  3368. "psr/cache-implementation": "1.0",
  3369. "psr/simple-cache-implementation": "1.0",
  3370. "symfony/cache-implementation": "1.0"
  3371. },
  3372. "require-dev": {
  3373. "cache/integration-tests": "dev-master",
  3374. "doctrine/cache": "^1.6",
  3375. "doctrine/dbal": "^2.6|^3.0",
  3376. "predis/predis": "^1.1",
  3377. "psr/simple-cache": "^1.0",
  3378. "symfony/config": "^4.4|^5.0",
  3379. "symfony/dependency-injection": "^4.4|^5.0",
  3380. "symfony/filesystem": "^4.4|^5.0",
  3381. "symfony/http-kernel": "^4.4|^5.0",
  3382. "symfony/var-dumper": "^4.4|^5.0"
  3383. },
  3384. "type": "library",
  3385. "autoload": {
  3386. "psr-4": {
  3387. "Symfony\\Component\\Cache\\": ""
  3388. },
  3389. "exclude-from-classmap": [
  3390. "/Tests/"
  3391. ]
  3392. },
  3393. "notification-url": "https://packagist.org/downloads/",
  3394. "license": [
  3395. "MIT"
  3396. ],
  3397. "authors": [
  3398. {
  3399. "name": "Nicolas Grekas",
  3400. "email": "p@tchwork.com"
  3401. },
  3402. {
  3403. "name": "Symfony Community",
  3404. "homepage": "https://symfony.com/contributors"
  3405. }
  3406. ],
  3407. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  3408. "homepage": "https://symfony.com",
  3409. "keywords": [
  3410. "caching",
  3411. "psr6"
  3412. ],
  3413. "support": {
  3414. "source": "https://github.com/symfony/cache/tree/v5.1.11"
  3415. },
  3416. "funding": [
  3417. {
  3418. "url": "https://symfony.com/sponsor",
  3419. "type": "custom"
  3420. },
  3421. {
  3422. "url": "https://github.com/fabpot",
  3423. "type": "github"
  3424. },
  3425. {
  3426. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3427. "type": "tidelift"
  3428. }
  3429. ],
  3430. "time": "2021-01-27T10:01:46+00:00"
  3431. },
  3432. {
  3433. "name": "symfony/cache-contracts",
  3434. "version": "v2.2.0",
  3435. "source": {
  3436. "type": "git",
  3437. "url": "https://github.com/symfony/cache-contracts.git",
  3438. "reference": "8034ca0b61d4dd967f3698aaa1da2507b631d0cb"
  3439. },
  3440. "dist": {
  3441. "type": "zip",
  3442. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/8034ca0b61d4dd967f3698aaa1da2507b631d0cb",
  3443. "reference": "8034ca0b61d4dd967f3698aaa1da2507b631d0cb",
  3444. "shasum": ""
  3445. },
  3446. "require": {
  3447. "php": ">=7.2.5",
  3448. "psr/cache": "^1.0"
  3449. },
  3450. "suggest": {
  3451. "symfony/cache-implementation": ""
  3452. },
  3453. "type": "library",
  3454. "extra": {
  3455. "branch-alias": {
  3456. "dev-master": "2.2-dev"
  3457. },
  3458. "thanks": {
  3459. "name": "symfony/contracts",
  3460. "url": "https://github.com/symfony/contracts"
  3461. }
  3462. },
  3463. "autoload": {
  3464. "psr-4": {
  3465. "Symfony\\Contracts\\Cache\\": ""
  3466. }
  3467. },
  3468. "notification-url": "https://packagist.org/downloads/",
  3469. "license": [
  3470. "MIT"
  3471. ],
  3472. "authors": [
  3473. {
  3474. "name": "Nicolas Grekas",
  3475. "email": "p@tchwork.com"
  3476. },
  3477. {
  3478. "name": "Symfony Community",
  3479. "homepage": "https://symfony.com/contributors"
  3480. }
  3481. ],
  3482. "description": "Generic abstractions related to caching",
  3483. "homepage": "https://symfony.com",
  3484. "keywords": [
  3485. "abstractions",
  3486. "contracts",
  3487. "decoupling",
  3488. "interfaces",
  3489. "interoperability",
  3490. "standards"
  3491. ],
  3492. "support": {
  3493. "source": "https://github.com/symfony/cache-contracts/tree/v2.2.0"
  3494. },
  3495. "funding": [
  3496. {
  3497. "url": "https://symfony.com/sponsor",
  3498. "type": "custom"
  3499. },
  3500. {
  3501. "url": "https://github.com/fabpot",
  3502. "type": "github"
  3503. },
  3504. {
  3505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3506. "type": "tidelift"
  3507. }
  3508. ],
  3509. "time": "2020-09-07T11:33:47+00:00"
  3510. },
  3511. {
  3512. "name": "symfony/config",
  3513. "version": "v5.1.11",
  3514. "source": {
  3515. "type": "git",
  3516. "url": "https://github.com/symfony/config.git",
  3517. "reference": "96cc8f6e3b2dccf471b0816df8e421142dc74c18"
  3518. },
  3519. "dist": {
  3520. "type": "zip",
  3521. "url": "https://api.github.com/repos/symfony/config/zipball/96cc8f6e3b2dccf471b0816df8e421142dc74c18",
  3522. "reference": "96cc8f6e3b2dccf471b0816df8e421142dc74c18",
  3523. "shasum": ""
  3524. },
  3525. "require": {
  3526. "php": ">=7.2.5",
  3527. "symfony/deprecation-contracts": "^2.1",
  3528. "symfony/filesystem": "^4.4|^5.0",
  3529. "symfony/polyfill-ctype": "~1.8",
  3530. "symfony/polyfill-php80": "^1.15"
  3531. },
  3532. "conflict": {
  3533. "symfony/finder": "<4.4"
  3534. },
  3535. "require-dev": {
  3536. "symfony/event-dispatcher": "^4.4|^5.0",
  3537. "symfony/finder": "^4.4|^5.0",
  3538. "symfony/messenger": "^4.4|^5.0",
  3539. "symfony/service-contracts": "^1.1|^2",
  3540. "symfony/yaml": "^4.4|^5.0"
  3541. },
  3542. "suggest": {
  3543. "symfony/yaml": "To use the yaml reference dumper"
  3544. },
  3545. "type": "library",
  3546. "autoload": {
  3547. "psr-4": {
  3548. "Symfony\\Component\\Config\\": ""
  3549. },
  3550. "exclude-from-classmap": [
  3551. "/Tests/"
  3552. ]
  3553. },
  3554. "notification-url": "https://packagist.org/downloads/",
  3555. "license": [
  3556. "MIT"
  3557. ],
  3558. "authors": [
  3559. {
  3560. "name": "Fabien Potencier",
  3561. "email": "fabien@symfony.com"
  3562. },
  3563. {
  3564. "name": "Symfony Community",
  3565. "homepage": "https://symfony.com/contributors"
  3566. }
  3567. ],
  3568. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3569. "homepage": "https://symfony.com",
  3570. "support": {
  3571. "source": "https://github.com/symfony/config/tree/v5.1.11"
  3572. },
  3573. "funding": [
  3574. {
  3575. "url": "https://symfony.com/sponsor",
  3576. "type": "custom"
  3577. },
  3578. {
  3579. "url": "https://github.com/fabpot",
  3580. "type": "github"
  3581. },
  3582. {
  3583. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3584. "type": "tidelift"
  3585. }
  3586. ],
  3587. "time": "2021-01-27T10:01:46+00:00"
  3588. },
  3589. {
  3590. "name": "symfony/console",
  3591. "version": "v5.1.11",
  3592. "source": {
  3593. "type": "git",
  3594. "url": "https://github.com/symfony/console.git",
  3595. "reference": "d9a267b621c5082e0a6c659d73633b6fd28a8a08"
  3596. },
  3597. "dist": {
  3598. "type": "zip",
  3599. "url": "https://api.github.com/repos/symfony/console/zipball/d9a267b621c5082e0a6c659d73633b6fd28a8a08",
  3600. "reference": "d9a267b621c5082e0a6c659d73633b6fd28a8a08",
  3601. "shasum": ""
  3602. },
  3603. "require": {
  3604. "php": ">=7.2.5",
  3605. "symfony/polyfill-mbstring": "~1.0",
  3606. "symfony/polyfill-php73": "^1.8",
  3607. "symfony/polyfill-php80": "^1.15",
  3608. "symfony/service-contracts": "^1.1|^2",
  3609. "symfony/string": "^5.1"
  3610. },
  3611. "conflict": {
  3612. "symfony/dependency-injection": "<4.4",
  3613. "symfony/dotenv": "<5.1",
  3614. "symfony/event-dispatcher": "<4.4",
  3615. "symfony/lock": "<4.4",
  3616. "symfony/process": "<4.4"
  3617. },
  3618. "provide": {
  3619. "psr/log-implementation": "1.0"
  3620. },
  3621. "require-dev": {
  3622. "psr/log": "~1.0",
  3623. "symfony/config": "^4.4|^5.0",
  3624. "symfony/dependency-injection": "^4.4|^5.0",
  3625. "symfony/event-dispatcher": "^4.4|^5.0",
  3626. "symfony/lock": "^4.4|^5.0",
  3627. "symfony/process": "^4.4|^5.0",
  3628. "symfony/var-dumper": "^4.4|^5.0"
  3629. },
  3630. "suggest": {
  3631. "psr/log": "For using the console logger",
  3632. "symfony/event-dispatcher": "",
  3633. "symfony/lock": "",
  3634. "symfony/process": ""
  3635. },
  3636. "type": "library",
  3637. "autoload": {
  3638. "psr-4": {
  3639. "Symfony\\Component\\Console\\": ""
  3640. },
  3641. "exclude-from-classmap": [
  3642. "/Tests/"
  3643. ]
  3644. },
  3645. "notification-url": "https://packagist.org/downloads/",
  3646. "license": [
  3647. "MIT"
  3648. ],
  3649. "authors": [
  3650. {
  3651. "name": "Fabien Potencier",
  3652. "email": "fabien@symfony.com"
  3653. },
  3654. {
  3655. "name": "Symfony Community",
  3656. "homepage": "https://symfony.com/contributors"
  3657. }
  3658. ],
  3659. "description": "Eases the creation of beautiful and testable command line interfaces",
  3660. "homepage": "https://symfony.com",
  3661. "support": {
  3662. "source": "https://github.com/symfony/console/tree/v5.1.11"
  3663. },
  3664. "funding": [
  3665. {
  3666. "url": "https://symfony.com/sponsor",
  3667. "type": "custom"
  3668. },
  3669. {
  3670. "url": "https://github.com/fabpot",
  3671. "type": "github"
  3672. },
  3673. {
  3674. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3675. "type": "tidelift"
  3676. }
  3677. ],
  3678. "time": "2021-01-27T10:01:46+00:00"
  3679. },
  3680. {
  3681. "name": "symfony/dependency-injection",
  3682. "version": "v5.1.11",
  3683. "source": {
  3684. "type": "git",
  3685. "url": "https://github.com/symfony/dependency-injection.git",
  3686. "reference": "176e622d476133152a9346b0fbd8fb9b60ff6fb3"
  3687. },
  3688. "dist": {
  3689. "type": "zip",
  3690. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/176e622d476133152a9346b0fbd8fb9b60ff6fb3",
  3691. "reference": "176e622d476133152a9346b0fbd8fb9b60ff6fb3",
  3692. "shasum": ""
  3693. },
  3694. "require": {
  3695. "php": ">=7.2.5",
  3696. "psr/container": "^1.0",
  3697. "symfony/deprecation-contracts": "^2.1",
  3698. "symfony/polyfill-php80": "^1.15",
  3699. "symfony/service-contracts": "^1.1.6|^2"
  3700. },
  3701. "conflict": {
  3702. "symfony/config": "<5.1",
  3703. "symfony/finder": "<4.4",
  3704. "symfony/proxy-manager-bridge": "<4.4",
  3705. "symfony/yaml": "<4.4"
  3706. },
  3707. "provide": {
  3708. "psr/container-implementation": "1.0",
  3709. "symfony/service-implementation": "1.0"
  3710. },
  3711. "require-dev": {
  3712. "symfony/config": "^5.1",
  3713. "symfony/expression-language": "^4.4|^5.0",
  3714. "symfony/yaml": "^4.4|^5.0"
  3715. },
  3716. "suggest": {
  3717. "symfony/config": "",
  3718. "symfony/expression-language": "For using expressions in service container configuration",
  3719. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3720. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  3721. "symfony/yaml": ""
  3722. },
  3723. "type": "library",
  3724. "autoload": {
  3725. "psr-4": {
  3726. "Symfony\\Component\\DependencyInjection\\": ""
  3727. },
  3728. "exclude-from-classmap": [
  3729. "/Tests/"
  3730. ]
  3731. },
  3732. "notification-url": "https://packagist.org/downloads/",
  3733. "license": [
  3734. "MIT"
  3735. ],
  3736. "authors": [
  3737. {
  3738. "name": "Fabien Potencier",
  3739. "email": "fabien@symfony.com"
  3740. },
  3741. {
  3742. "name": "Symfony Community",
  3743. "homepage": "https://symfony.com/contributors"
  3744. }
  3745. ],
  3746. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3747. "homepage": "https://symfony.com",
  3748. "support": {
  3749. "source": "https://github.com/symfony/dependency-injection/tree/v5.1.11"
  3750. },
  3751. "funding": [
  3752. {
  3753. "url": "https://symfony.com/sponsor",
  3754. "type": "custom"
  3755. },
  3756. {
  3757. "url": "https://github.com/fabpot",
  3758. "type": "github"
  3759. },
  3760. {
  3761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3762. "type": "tidelift"
  3763. }
  3764. ],
  3765. "time": "2021-01-27T12:50:07+00:00"
  3766. },
  3767. {
  3768. "name": "symfony/deprecation-contracts",
  3769. "version": "v2.2.0",
  3770. "source": {
  3771. "type": "git",
  3772. "url": "https://github.com/symfony/deprecation-contracts.git",
  3773. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  3774. },
  3775. "dist": {
  3776. "type": "zip",
  3777. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  3778. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  3779. "shasum": ""
  3780. },
  3781. "require": {
  3782. "php": ">=7.1"
  3783. },
  3784. "type": "library",
  3785. "extra": {
  3786. "branch-alias": {
  3787. "dev-master": "2.2-dev"
  3788. },
  3789. "thanks": {
  3790. "name": "symfony/contracts",
  3791. "url": "https://github.com/symfony/contracts"
  3792. }
  3793. },
  3794. "autoload": {
  3795. "files": [
  3796. "function.php"
  3797. ]
  3798. },
  3799. "notification-url": "https://packagist.org/downloads/",
  3800. "license": [
  3801. "MIT"
  3802. ],
  3803. "authors": [
  3804. {
  3805. "name": "Nicolas Grekas",
  3806. "email": "p@tchwork.com"
  3807. },
  3808. {
  3809. "name": "Symfony Community",
  3810. "homepage": "https://symfony.com/contributors"
  3811. }
  3812. ],
  3813. "description": "A generic function and convention to trigger deprecation notices",
  3814. "homepage": "https://symfony.com",
  3815. "support": {
  3816. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  3817. },
  3818. "funding": [
  3819. {
  3820. "url": "https://symfony.com/sponsor",
  3821. "type": "custom"
  3822. },
  3823. {
  3824. "url": "https://github.com/fabpot",
  3825. "type": "github"
  3826. },
  3827. {
  3828. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3829. "type": "tidelift"
  3830. }
  3831. ],
  3832. "time": "2020-09-07T11:33:47+00:00"
  3833. },
  3834. {
  3835. "name": "symfony/doctrine-bridge",
  3836. "version": "v5.1.11",
  3837. "source": {
  3838. "type": "git",
  3839. "url": "https://github.com/symfony/doctrine-bridge.git",
  3840. "reference": "290deda49060e6694f151ac4aa889467935ee3ea"
  3841. },
  3842. "dist": {
  3843. "type": "zip",
  3844. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/290deda49060e6694f151ac4aa889467935ee3ea",
  3845. "reference": "290deda49060e6694f151ac4aa889467935ee3ea",
  3846. "shasum": ""
  3847. },
  3848. "require": {
  3849. "doctrine/event-manager": "~1.0",
  3850. "doctrine/persistence": "^1.3|^2",
  3851. "php": ">=7.2.5",
  3852. "symfony/deprecation-contracts": "^2.1",
  3853. "symfony/polyfill-ctype": "~1.8",
  3854. "symfony/polyfill-mbstring": "~1.0",
  3855. "symfony/polyfill-php80": "^1.15",
  3856. "symfony/service-contracts": "^1.1|^2"
  3857. },
  3858. "conflict": {
  3859. "phpunit/phpunit": "<5.4.3",
  3860. "symfony/dependency-injection": "<4.4",
  3861. "symfony/form": "<5.1",
  3862. "symfony/http-kernel": "<5",
  3863. "symfony/messenger": "<4.4",
  3864. "symfony/property-info": "<5",
  3865. "symfony/security-bundle": "<5",
  3866. "symfony/security-core": "<5",
  3867. "symfony/validator": "<5.0.2"
  3868. },
  3869. "require-dev": {
  3870. "composer/package-versions-deprecated": "^1.8",
  3871. "doctrine/annotations": "^1.10.4",
  3872. "doctrine/cache": "~1.6",
  3873. "doctrine/collections": "~1.0",
  3874. "doctrine/data-fixtures": "^1.1",
  3875. "doctrine/dbal": "^2.6|^3.0",
  3876. "doctrine/orm": "^2.6.3",
  3877. "symfony/cache": "^5.1",
  3878. "symfony/config": "^4.4|^5.0",
  3879. "symfony/dependency-injection": "^4.4|^5.0",
  3880. "symfony/doctrine-messenger": "^5.1",
  3881. "symfony/expression-language": "^4.4|^5.0",
  3882. "symfony/form": "^5.1.3",
  3883. "symfony/http-kernel": "^5.0",
  3884. "symfony/messenger": "^4.4|^5.0",
  3885. "symfony/property-access": "^4.4|^5.0",
  3886. "symfony/property-info": "^5.0",
  3887. "symfony/proxy-manager-bridge": "^4.4|^5.0",
  3888. "symfony/security-core": "^5.0",
  3889. "symfony/stopwatch": "^4.4|^5.0",
  3890. "symfony/translation": "^4.4|^5.0",
  3891. "symfony/validator": "^5.0.2",
  3892. "symfony/var-dumper": "^4.4|^5.0"
  3893. },
  3894. "suggest": {
  3895. "doctrine/data-fixtures": "",
  3896. "doctrine/dbal": "",
  3897. "doctrine/orm": "",
  3898. "symfony/form": "",
  3899. "symfony/property-info": "",
  3900. "symfony/validator": ""
  3901. },
  3902. "type": "symfony-bridge",
  3903. "autoload": {
  3904. "psr-4": {
  3905. "Symfony\\Bridge\\Doctrine\\": ""
  3906. },
  3907. "exclude-from-classmap": [
  3908. "/Tests/"
  3909. ]
  3910. },
  3911. "notification-url": "https://packagist.org/downloads/",
  3912. "license": [
  3913. "MIT"
  3914. ],
  3915. "authors": [
  3916. {
  3917. "name": "Fabien Potencier",
  3918. "email": "fabien@symfony.com"
  3919. },
  3920. {
  3921. "name": "Symfony Community",
  3922. "homepage": "https://symfony.com/contributors"
  3923. }
  3924. ],
  3925. "description": "Provides integration for Doctrine with various Symfony components",
  3926. "homepage": "https://symfony.com",
  3927. "support": {
  3928. "source": "https://github.com/symfony/doctrine-bridge/tree/v5.1.11"
  3929. },
  3930. "funding": [
  3931. {
  3932. "url": "https://symfony.com/sponsor",
  3933. "type": "custom"
  3934. },
  3935. {
  3936. "url": "https://github.com/fabpot",
  3937. "type": "github"
  3938. },
  3939. {
  3940. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3941. "type": "tidelift"
  3942. }
  3943. ],
  3944. "time": "2021-01-27T10:01:46+00:00"
  3945. },
  3946. {
  3947. "name": "symfony/doctrine-messenger",
  3948. "version": "v5.1.11",
  3949. "source": {
  3950. "type": "git",
  3951. "url": "https://github.com/symfony/doctrine-messenger.git",
  3952. "reference": "6b63f1f938b94be9892afd435ac06c596abd7b03"
  3953. },
  3954. "dist": {
  3955. "type": "zip",
  3956. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/6b63f1f938b94be9892afd435ac06c596abd7b03",
  3957. "reference": "6b63f1f938b94be9892afd435ac06c596abd7b03",
  3958. "shasum": ""
  3959. },
  3960. "require": {
  3961. "php": ">=7.2.5",
  3962. "symfony/messenger": "^5.1",
  3963. "symfony/service-contracts": "^1.1|^2"
  3964. },
  3965. "conflict": {
  3966. "doctrine/persistence": "<1.3"
  3967. },
  3968. "require-dev": {
  3969. "doctrine/dbal": "^2.6|^3.0",
  3970. "doctrine/persistence": "^1.3|^2",
  3971. "symfony/property-access": "^4.4|^5.0",
  3972. "symfony/serializer": "^4.4|^5.0"
  3973. },
  3974. "type": "symfony-bridge",
  3975. "autoload": {
  3976. "psr-4": {
  3977. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  3978. },
  3979. "exclude-from-classmap": [
  3980. "/Tests/"
  3981. ]
  3982. },
  3983. "notification-url": "https://packagist.org/downloads/",
  3984. "license": [
  3985. "MIT"
  3986. ],
  3987. "authors": [
  3988. {
  3989. "name": "Fabien Potencier",
  3990. "email": "fabien@symfony.com"
  3991. },
  3992. {
  3993. "name": "Symfony Community",
  3994. "homepage": "https://symfony.com/contributors"
  3995. }
  3996. ],
  3997. "description": "Symfony Doctrine Messenger Bridge",
  3998. "homepage": "https://symfony.com",
  3999. "support": {
  4000. "source": "https://github.com/symfony/doctrine-messenger/tree/v5.1.11"
  4001. },
  4002. "funding": [
  4003. {
  4004. "url": "https://symfony.com/sponsor",
  4005. "type": "custom"
  4006. },
  4007. {
  4008. "url": "https://github.com/fabpot",
  4009. "type": "github"
  4010. },
  4011. {
  4012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4013. "type": "tidelift"
  4014. }
  4015. ],
  4016. "time": "2021-01-27T11:17:55+00:00"
  4017. },
  4018. {
  4019. "name": "symfony/dotenv",
  4020. "version": "v5.1.11",
  4021. "source": {
  4022. "type": "git",
  4023. "url": "https://github.com/symfony/dotenv.git",
  4024. "reference": "783f12027c6b40ab0e93d6136d9f642d1d67cd6b"
  4025. },
  4026. "dist": {
  4027. "type": "zip",
  4028. "url": "https://api.github.com/repos/symfony/dotenv/zipball/783f12027c6b40ab0e93d6136d9f642d1d67cd6b",
  4029. "reference": "783f12027c6b40ab0e93d6136d9f642d1d67cd6b",
  4030. "shasum": ""
  4031. },
  4032. "require": {
  4033. "php": ">=7.2.5",
  4034. "symfony/deprecation-contracts": "^2.1"
  4035. },
  4036. "require-dev": {
  4037. "symfony/process": "^4.4|^5.0"
  4038. },
  4039. "type": "library",
  4040. "autoload": {
  4041. "psr-4": {
  4042. "Symfony\\Component\\Dotenv\\": ""
  4043. },
  4044. "exclude-from-classmap": [
  4045. "/Tests/"
  4046. ]
  4047. },
  4048. "notification-url": "https://packagist.org/downloads/",
  4049. "license": [
  4050. "MIT"
  4051. ],
  4052. "authors": [
  4053. {
  4054. "name": "Fabien Potencier",
  4055. "email": "fabien@symfony.com"
  4056. },
  4057. {
  4058. "name": "Symfony Community",
  4059. "homepage": "https://symfony.com/contributors"
  4060. }
  4061. ],
  4062. "description": "Registers environment variables from a .env file",
  4063. "homepage": "https://symfony.com",
  4064. "keywords": [
  4065. "dotenv",
  4066. "env",
  4067. "environment"
  4068. ],
  4069. "support": {
  4070. "source": "https://github.com/symfony/dotenv/tree/v5.1.11"
  4071. },
  4072. "funding": [
  4073. {
  4074. "url": "https://symfony.com/sponsor",
  4075. "type": "custom"
  4076. },
  4077. {
  4078. "url": "https://github.com/fabpot",
  4079. "type": "github"
  4080. },
  4081. {
  4082. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4083. "type": "tidelift"
  4084. }
  4085. ],
  4086. "time": "2021-01-27T10:01:46+00:00"
  4087. },
  4088. {
  4089. "name": "symfony/error-handler",
  4090. "version": "v5.1.11",
  4091. "source": {
  4092. "type": "git",
  4093. "url": "https://github.com/symfony/error-handler.git",
  4094. "reference": "c2bdf8d374de3f33c525460929f82a9902f6e1c5"
  4095. },
  4096. "dist": {
  4097. "type": "zip",
  4098. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c2bdf8d374de3f33c525460929f82a9902f6e1c5",
  4099. "reference": "c2bdf8d374de3f33c525460929f82a9902f6e1c5",
  4100. "shasum": ""
  4101. },
  4102. "require": {
  4103. "php": ">=7.2.5",
  4104. "psr/log": "^1.0",
  4105. "symfony/polyfill-php80": "^1.15",
  4106. "symfony/var-dumper": "^4.4|^5.0"
  4107. },
  4108. "require-dev": {
  4109. "symfony/deprecation-contracts": "^2.1",
  4110. "symfony/http-kernel": "^4.4|^5.0",
  4111. "symfony/serializer": "^4.4|^5.0"
  4112. },
  4113. "type": "library",
  4114. "autoload": {
  4115. "psr-4": {
  4116. "Symfony\\Component\\ErrorHandler\\": ""
  4117. },
  4118. "exclude-from-classmap": [
  4119. "/Tests/"
  4120. ]
  4121. },
  4122. "notification-url": "https://packagist.org/downloads/",
  4123. "license": [
  4124. "MIT"
  4125. ],
  4126. "authors": [
  4127. {
  4128. "name": "Fabien Potencier",
  4129. "email": "fabien@symfony.com"
  4130. },
  4131. {
  4132. "name": "Symfony Community",
  4133. "homepage": "https://symfony.com/contributors"
  4134. }
  4135. ],
  4136. "description": "Provides tools to manage errors and ease debugging PHP code",
  4137. "homepage": "https://symfony.com",
  4138. "support": {
  4139. "source": "https://github.com/symfony/error-handler/tree/v5.1.11"
  4140. },
  4141. "funding": [
  4142. {
  4143. "url": "https://symfony.com/sponsor",
  4144. "type": "custom"
  4145. },
  4146. {
  4147. "url": "https://github.com/fabpot",
  4148. "type": "github"
  4149. },
  4150. {
  4151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4152. "type": "tidelift"
  4153. }
  4154. ],
  4155. "time": "2021-01-27T10:01:46+00:00"
  4156. },
  4157. {
  4158. "name": "symfony/event-dispatcher",
  4159. "version": "v5.1.11",
  4160. "source": {
  4161. "type": "git",
  4162. "url": "https://github.com/symfony/event-dispatcher.git",
  4163. "reference": "c00f3aae24577a991ae97d34c7033b2e84f1cfa0"
  4164. },
  4165. "dist": {
  4166. "type": "zip",
  4167. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c00f3aae24577a991ae97d34c7033b2e84f1cfa0",
  4168. "reference": "c00f3aae24577a991ae97d34c7033b2e84f1cfa0",
  4169. "shasum": ""
  4170. },
  4171. "require": {
  4172. "php": ">=7.2.5",
  4173. "symfony/deprecation-contracts": "^2.1",
  4174. "symfony/event-dispatcher-contracts": "^2",
  4175. "symfony/polyfill-php80": "^1.15"
  4176. },
  4177. "conflict": {
  4178. "symfony/dependency-injection": "<4.4"
  4179. },
  4180. "provide": {
  4181. "psr/event-dispatcher-implementation": "1.0",
  4182. "symfony/event-dispatcher-implementation": "2.0"
  4183. },
  4184. "require-dev": {
  4185. "psr/log": "~1.0",
  4186. "symfony/config": "^4.4|^5.0",
  4187. "symfony/dependency-injection": "^4.4|^5.0",
  4188. "symfony/error-handler": "^4.4|^5.0",
  4189. "symfony/expression-language": "^4.4|^5.0",
  4190. "symfony/http-foundation": "^4.4|^5.0",
  4191. "symfony/service-contracts": "^1.1|^2",
  4192. "symfony/stopwatch": "^4.4|^5.0"
  4193. },
  4194. "suggest": {
  4195. "symfony/dependency-injection": "",
  4196. "symfony/http-kernel": ""
  4197. },
  4198. "type": "library",
  4199. "autoload": {
  4200. "psr-4": {
  4201. "Symfony\\Component\\EventDispatcher\\": ""
  4202. },
  4203. "exclude-from-classmap": [
  4204. "/Tests/"
  4205. ]
  4206. },
  4207. "notification-url": "https://packagist.org/downloads/",
  4208. "license": [
  4209. "MIT"
  4210. ],
  4211. "authors": [
  4212. {
  4213. "name": "Fabien Potencier",
  4214. "email": "fabien@symfony.com"
  4215. },
  4216. {
  4217. "name": "Symfony Community",
  4218. "homepage": "https://symfony.com/contributors"
  4219. }
  4220. ],
  4221. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4222. "homepage": "https://symfony.com",
  4223. "support": {
  4224. "source": "https://github.com/symfony/event-dispatcher/tree/v5.1.11"
  4225. },
  4226. "funding": [
  4227. {
  4228. "url": "https://symfony.com/sponsor",
  4229. "type": "custom"
  4230. },
  4231. {
  4232. "url": "https://github.com/fabpot",
  4233. "type": "github"
  4234. },
  4235. {
  4236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4237. "type": "tidelift"
  4238. }
  4239. ],
  4240. "time": "2021-01-27T10:36:24+00:00"
  4241. },
  4242. {
  4243. "name": "symfony/event-dispatcher-contracts",
  4244. "version": "v2.2.0",
  4245. "source": {
  4246. "type": "git",
  4247. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4248. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4249. },
  4250. "dist": {
  4251. "type": "zip",
  4252. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4253. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4254. "shasum": ""
  4255. },
  4256. "require": {
  4257. "php": ">=7.2.5",
  4258. "psr/event-dispatcher": "^1"
  4259. },
  4260. "suggest": {
  4261. "symfony/event-dispatcher-implementation": ""
  4262. },
  4263. "type": "library",
  4264. "extra": {
  4265. "branch-alias": {
  4266. "dev-master": "2.2-dev"
  4267. },
  4268. "thanks": {
  4269. "name": "symfony/contracts",
  4270. "url": "https://github.com/symfony/contracts"
  4271. }
  4272. },
  4273. "autoload": {
  4274. "psr-4": {
  4275. "Symfony\\Contracts\\EventDispatcher\\": ""
  4276. }
  4277. },
  4278. "notification-url": "https://packagist.org/downloads/",
  4279. "license": [
  4280. "MIT"
  4281. ],
  4282. "authors": [
  4283. {
  4284. "name": "Nicolas Grekas",
  4285. "email": "p@tchwork.com"
  4286. },
  4287. {
  4288. "name": "Symfony Community",
  4289. "homepage": "https://symfony.com/contributors"
  4290. }
  4291. ],
  4292. "description": "Generic abstractions related to dispatching event",
  4293. "homepage": "https://symfony.com",
  4294. "keywords": [
  4295. "abstractions",
  4296. "contracts",
  4297. "decoupling",
  4298. "interfaces",
  4299. "interoperability",
  4300. "standards"
  4301. ],
  4302. "support": {
  4303. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  4304. },
  4305. "funding": [
  4306. {
  4307. "url": "https://symfony.com/sponsor",
  4308. "type": "custom"
  4309. },
  4310. {
  4311. "url": "https://github.com/fabpot",
  4312. "type": "github"
  4313. },
  4314. {
  4315. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4316. "type": "tidelift"
  4317. }
  4318. ],
  4319. "time": "2020-09-07T11:33:47+00:00"
  4320. },
  4321. {
  4322. "name": "symfony/expression-language",
  4323. "version": "v5.1.11",
  4324. "source": {
  4325. "type": "git",
  4326. "url": "https://github.com/symfony/expression-language.git",
  4327. "reference": "13a16b1cc6e4fd4998631bfdf568d47e48844ec1"
  4328. },
  4329. "dist": {
  4330. "type": "zip",
  4331. "url": "https://api.github.com/repos/symfony/expression-language/zipball/13a16b1cc6e4fd4998631bfdf568d47e48844ec1",
  4332. "reference": "13a16b1cc6e4fd4998631bfdf568d47e48844ec1",
  4333. "shasum": ""
  4334. },
  4335. "require": {
  4336. "php": ">=7.2.5",
  4337. "symfony/cache": "^4.4|^5.0",
  4338. "symfony/polyfill-php80": "^1.15",
  4339. "symfony/service-contracts": "^1.1|^2"
  4340. },
  4341. "type": "library",
  4342. "autoload": {
  4343. "psr-4": {
  4344. "Symfony\\Component\\ExpressionLanguage\\": ""
  4345. },
  4346. "exclude-from-classmap": [
  4347. "/Tests/"
  4348. ]
  4349. },
  4350. "notification-url": "https://packagist.org/downloads/",
  4351. "license": [
  4352. "MIT"
  4353. ],
  4354. "authors": [
  4355. {
  4356. "name": "Fabien Potencier",
  4357. "email": "fabien@symfony.com"
  4358. },
  4359. {
  4360. "name": "Symfony Community",
  4361. "homepage": "https://symfony.com/contributors"
  4362. }
  4363. ],
  4364. "description": "Provides an engine that can compile and evaluate expressions",
  4365. "homepage": "https://symfony.com",
  4366. "support": {
  4367. "source": "https://github.com/symfony/expression-language/tree/v5.1.11"
  4368. },
  4369. "funding": [
  4370. {
  4371. "url": "https://symfony.com/sponsor",
  4372. "type": "custom"
  4373. },
  4374. {
  4375. "url": "https://github.com/fabpot",
  4376. "type": "github"
  4377. },
  4378. {
  4379. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4380. "type": "tidelift"
  4381. }
  4382. ],
  4383. "time": "2021-01-27T10:01:46+00:00"
  4384. },
  4385. {
  4386. "name": "symfony/filesystem",
  4387. "version": "v5.1.11",
  4388. "source": {
  4389. "type": "git",
  4390. "url": "https://github.com/symfony/filesystem.git",
  4391. "reference": "262d033b57c73e8b59cd6e68a45c528318b15038"
  4392. },
  4393. "dist": {
  4394. "type": "zip",
  4395. "url": "https://api.github.com/repos/symfony/filesystem/zipball/262d033b57c73e8b59cd6e68a45c528318b15038",
  4396. "reference": "262d033b57c73e8b59cd6e68a45c528318b15038",
  4397. "shasum": ""
  4398. },
  4399. "require": {
  4400. "php": ">=7.2.5",
  4401. "symfony/polyfill-ctype": "~1.8"
  4402. },
  4403. "type": "library",
  4404. "autoload": {
  4405. "psr-4": {
  4406. "Symfony\\Component\\Filesystem\\": ""
  4407. },
  4408. "exclude-from-classmap": [
  4409. "/Tests/"
  4410. ]
  4411. },
  4412. "notification-url": "https://packagist.org/downloads/",
  4413. "license": [
  4414. "MIT"
  4415. ],
  4416. "authors": [
  4417. {
  4418. "name": "Fabien Potencier",
  4419. "email": "fabien@symfony.com"
  4420. },
  4421. {
  4422. "name": "Symfony Community",
  4423. "homepage": "https://symfony.com/contributors"
  4424. }
  4425. ],
  4426. "description": "Provides basic utilities for the filesystem",
  4427. "homepage": "https://symfony.com",
  4428. "support": {
  4429. "source": "https://github.com/symfony/filesystem/tree/v5.1.11"
  4430. },
  4431. "funding": [
  4432. {
  4433. "url": "https://symfony.com/sponsor",
  4434. "type": "custom"
  4435. },
  4436. {
  4437. "url": "https://github.com/fabpot",
  4438. "type": "github"
  4439. },
  4440. {
  4441. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4442. "type": "tidelift"
  4443. }
  4444. ],
  4445. "time": "2021-01-27T10:01:46+00:00"
  4446. },
  4447. {
  4448. "name": "symfony/finder",
  4449. "version": "v5.1.11",
  4450. "source": {
  4451. "type": "git",
  4452. "url": "https://github.com/symfony/finder.git",
  4453. "reference": "196f45723b5e618bf0e23b97e96d11652696ea9e"
  4454. },
  4455. "dist": {
  4456. "type": "zip",
  4457. "url": "https://api.github.com/repos/symfony/finder/zipball/196f45723b5e618bf0e23b97e96d11652696ea9e",
  4458. "reference": "196f45723b5e618bf0e23b97e96d11652696ea9e",
  4459. "shasum": ""
  4460. },
  4461. "require": {
  4462. "php": ">=7.2.5"
  4463. },
  4464. "type": "library",
  4465. "autoload": {
  4466. "psr-4": {
  4467. "Symfony\\Component\\Finder\\": ""
  4468. },
  4469. "exclude-from-classmap": [
  4470. "/Tests/"
  4471. ]
  4472. },
  4473. "notification-url": "https://packagist.org/downloads/",
  4474. "license": [
  4475. "MIT"
  4476. ],
  4477. "authors": [
  4478. {
  4479. "name": "Fabien Potencier",
  4480. "email": "fabien@symfony.com"
  4481. },
  4482. {
  4483. "name": "Symfony Community",
  4484. "homepage": "https://symfony.com/contributors"
  4485. }
  4486. ],
  4487. "description": "Finds files and directories via an intuitive fluent interface",
  4488. "homepage": "https://symfony.com",
  4489. "support": {
  4490. "source": "https://github.com/symfony/finder/tree/v5.1.11"
  4491. },
  4492. "funding": [
  4493. {
  4494. "url": "https://symfony.com/sponsor",
  4495. "type": "custom"
  4496. },
  4497. {
  4498. "url": "https://github.com/fabpot",
  4499. "type": "github"
  4500. },
  4501. {
  4502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4503. "type": "tidelift"
  4504. }
  4505. ],
  4506. "time": "2021-01-27T10:01:46+00:00"
  4507. },
  4508. {
  4509. "name": "symfony/flex",
  4510. "version": "v1.12.1",
  4511. "source": {
  4512. "type": "git",
  4513. "url": "https://github.com/symfony/flex.git",
  4514. "reference": "394f3e4dc03ea2a5448aeedc9658c8b596b1d39f"
  4515. },
  4516. "dist": {
  4517. "type": "zip",
  4518. "url": "https://api.github.com/repos/symfony/flex/zipball/394f3e4dc03ea2a5448aeedc9658c8b596b1d39f",
  4519. "reference": "394f3e4dc03ea2a5448aeedc9658c8b596b1d39f",
  4520. "shasum": ""
  4521. },
  4522. "require": {
  4523. "composer-plugin-api": "^1.0|^2.0",
  4524. "php": ">=7.1"
  4525. },
  4526. "require-dev": {
  4527. "composer/composer": "^1.0.2|^2.0",
  4528. "symfony/dotenv": "^4.4|^5.0",
  4529. "symfony/filesystem": "^4.4|^5.0",
  4530. "symfony/phpunit-bridge": "^4.4|^5.0",
  4531. "symfony/process": "^3.4|^4.4|^5.0"
  4532. },
  4533. "type": "composer-plugin",
  4534. "extra": {
  4535. "branch-alias": {
  4536. "dev-main": "1.9-dev"
  4537. },
  4538. "class": "Symfony\\Flex\\Flex"
  4539. },
  4540. "autoload": {
  4541. "psr-4": {
  4542. "Symfony\\Flex\\": "src"
  4543. }
  4544. },
  4545. "notification-url": "https://packagist.org/downloads/",
  4546. "license": [
  4547. "MIT"
  4548. ],
  4549. "authors": [
  4550. {
  4551. "name": "Fabien Potencier",
  4552. "email": "fabien.potencier@gmail.com"
  4553. }
  4554. ],
  4555. "description": "Composer plugin for Symfony",
  4556. "support": {
  4557. "issues": "https://github.com/symfony/flex/issues",
  4558. "source": "https://github.com/symfony/flex/tree/v1.12.1"
  4559. },
  4560. "funding": [
  4561. {
  4562. "url": "https://symfony.com/sponsor",
  4563. "type": "custom"
  4564. },
  4565. {
  4566. "url": "https://github.com/fabpot",
  4567. "type": "github"
  4568. },
  4569. {
  4570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4571. "type": "tidelift"
  4572. }
  4573. ],
  4574. "time": "2021-02-02T16:29:45+00:00"
  4575. },
  4576. {
  4577. "name": "symfony/form",
  4578. "version": "v5.1.11",
  4579. "source": {
  4580. "type": "git",
  4581. "url": "https://github.com/symfony/form.git",
  4582. "reference": "b794bed839f11bcee9a9f30daa5cb88d311dd409"
  4583. },
  4584. "dist": {
  4585. "type": "zip",
  4586. "url": "https://api.github.com/repos/symfony/form/zipball/b794bed839f11bcee9a9f30daa5cb88d311dd409",
  4587. "reference": "b794bed839f11bcee9a9f30daa5cb88d311dd409",
  4588. "shasum": ""
  4589. },
  4590. "require": {
  4591. "php": ">=7.2.5",
  4592. "symfony/deprecation-contracts": "^2.1",
  4593. "symfony/event-dispatcher": "^4.4|^5.0",
  4594. "symfony/intl": "^4.4|^5.0",
  4595. "symfony/options-resolver": "^5.1",
  4596. "symfony/polyfill-ctype": "~1.8",
  4597. "symfony/polyfill-mbstring": "~1.0",
  4598. "symfony/polyfill-php80": "^1.15",
  4599. "symfony/property-access": "^5.0.8",
  4600. "symfony/service-contracts": "^1.1|^2"
  4601. },
  4602. "conflict": {
  4603. "phpunit/phpunit": "<5.4.3",
  4604. "symfony/console": "<4.4",
  4605. "symfony/dependency-injection": "<4.4",
  4606. "symfony/doctrine-bridge": "<4.4",
  4607. "symfony/error-handler": "<4.4.5",
  4608. "symfony/framework-bundle": "<4.4",
  4609. "symfony/http-kernel": "<4.4",
  4610. "symfony/intl": "<4.4",
  4611. "symfony/translation": "<4.4",
  4612. "symfony/translation-contracts": "<1.1.7",
  4613. "symfony/twig-bridge": "<4.4"
  4614. },
  4615. "require-dev": {
  4616. "doctrine/collections": "~1.0",
  4617. "symfony/config": "^4.4|^5.0",
  4618. "symfony/console": "^4.4|^5.0",
  4619. "symfony/dependency-injection": "^4.4|^5.0",
  4620. "symfony/expression-language": "^4.4|^5.0",
  4621. "symfony/http-foundation": "^4.4|^5.0",
  4622. "symfony/http-kernel": "^4.4|^5.0",
  4623. "symfony/security-csrf": "^4.4|^5.0",
  4624. "symfony/translation": "^4.4|^5.0",
  4625. "symfony/validator": "^4.4.17|^5.1.9",
  4626. "symfony/var-dumper": "^4.4|^5.0"
  4627. },
  4628. "suggest": {
  4629. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  4630. "symfony/twig-bridge": "For templating with Twig.",
  4631. "symfony/validator": "For form validation."
  4632. },
  4633. "type": "library",
  4634. "autoload": {
  4635. "psr-4": {
  4636. "Symfony\\Component\\Form\\": ""
  4637. },
  4638. "exclude-from-classmap": [
  4639. "/Tests/"
  4640. ]
  4641. },
  4642. "notification-url": "https://packagist.org/downloads/",
  4643. "license": [
  4644. "MIT"
  4645. ],
  4646. "authors": [
  4647. {
  4648. "name": "Fabien Potencier",
  4649. "email": "fabien@symfony.com"
  4650. },
  4651. {
  4652. "name": "Symfony Community",
  4653. "homepage": "https://symfony.com/contributors"
  4654. }
  4655. ],
  4656. "description": "Allows to easily create, process and reuse HTML forms",
  4657. "homepage": "https://symfony.com",
  4658. "support": {
  4659. "source": "https://github.com/symfony/form/tree/v5.1.11"
  4660. },
  4661. "funding": [
  4662. {
  4663. "url": "https://symfony.com/sponsor",
  4664. "type": "custom"
  4665. },
  4666. {
  4667. "url": "https://github.com/fabpot",
  4668. "type": "github"
  4669. },
  4670. {
  4671. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4672. "type": "tidelift"
  4673. }
  4674. ],
  4675. "time": "2021-01-27T12:50:07+00:00"
  4676. },
  4677. {
  4678. "name": "symfony/framework-bundle",
  4679. "version": "v5.1.11",
  4680. "source": {
  4681. "type": "git",
  4682. "url": "https://github.com/symfony/framework-bundle.git",
  4683. "reference": "b40931adcd8386901a65b472d8ba9f34cac80070"
  4684. },
  4685. "dist": {
  4686. "type": "zip",
  4687. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/b40931adcd8386901a65b472d8ba9f34cac80070",
  4688. "reference": "b40931adcd8386901a65b472d8ba9f34cac80070",
  4689. "shasum": ""
  4690. },
  4691. "require": {
  4692. "ext-xml": "*",
  4693. "php": ">=7.2.5",
  4694. "symfony/cache": "^4.4|^5.0",
  4695. "symfony/config": "^5.0",
  4696. "symfony/dependency-injection": "^5.1",
  4697. "symfony/deprecation-contracts": "^2.1",
  4698. "symfony/error-handler": "^4.4.1|^5.0.1",
  4699. "symfony/event-dispatcher": "^5.1",
  4700. "symfony/filesystem": "^4.4|^5.0",
  4701. "symfony/finder": "^4.4|^5.0",
  4702. "symfony/http-foundation": "^4.4|^5.0",
  4703. "symfony/http-kernel": "^5.0",
  4704. "symfony/polyfill-mbstring": "~1.0",
  4705. "symfony/polyfill-php80": "^1.15",
  4706. "symfony/routing": "^5.1.4"
  4707. },
  4708. "conflict": {
  4709. "doctrine/persistence": "<1.3",
  4710. "phpdocumentor/reflection-docblock": "<3.2.2",
  4711. "phpdocumentor/type-resolver": "<1.4.0",
  4712. "phpunit/phpunit": "<5.4.3",
  4713. "symfony/asset": "<5.1",
  4714. "symfony/browser-kit": "<4.4",
  4715. "symfony/console": "<4.4",
  4716. "symfony/dom-crawler": "<4.4",
  4717. "symfony/dotenv": "<5.1",
  4718. "symfony/form": "<4.4",
  4719. "symfony/http-client": "<4.4",
  4720. "symfony/lock": "<4.4",
  4721. "symfony/mailer": "<4.4",
  4722. "symfony/messenger": "<4.4",
  4723. "symfony/mime": "<4.4",
  4724. "symfony/property-info": "<4.4",
  4725. "symfony/serializer": "<4.4",
  4726. "symfony/stopwatch": "<4.4",
  4727. "symfony/translation": "<5.0",
  4728. "symfony/twig-bridge": "<4.4",
  4729. "symfony/twig-bundle": "<4.4",
  4730. "symfony/validator": "<4.4",
  4731. "symfony/web-profiler-bundle": "<4.4",
  4732. "symfony/workflow": "<4.4"
  4733. },
  4734. "require-dev": {
  4735. "doctrine/annotations": "^1.10.4",
  4736. "doctrine/cache": "~1.0",
  4737. "doctrine/persistence": "^1.3|^2.0",
  4738. "paragonie/sodium_compat": "^1.8",
  4739. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4740. "symfony/asset": "^5.1",
  4741. "symfony/browser-kit": "^4.4|^5.0",
  4742. "symfony/console": "^4.4|^5.0",
  4743. "symfony/css-selector": "^4.4|^5.0",
  4744. "symfony/dom-crawler": "^4.4|^5.0",
  4745. "symfony/dotenv": "^5.1",
  4746. "symfony/expression-language": "^4.4|^5.0",
  4747. "symfony/form": "^4.4|^5.0",
  4748. "symfony/http-client": "^4.4|^5.0",
  4749. "symfony/lock": "^4.4|^5.0",
  4750. "symfony/mailer": "^4.4|^5.0",
  4751. "symfony/messenger": "^4.4|^5.0",
  4752. "symfony/mime": "^4.4|^5.0",
  4753. "symfony/polyfill-intl-icu": "~1.0",
  4754. "symfony/process": "^4.4|^5.0",
  4755. "symfony/property-info": "^4.4|^5.0",
  4756. "symfony/security-bundle": "^5.1",
  4757. "symfony/security-csrf": "^4.4|^5.0",
  4758. "symfony/security-http": "^4.4|^5.0",
  4759. "symfony/serializer": "^4.4|^5.0",
  4760. "symfony/stopwatch": "^4.4|^5.0",
  4761. "symfony/string": "^5.0",
  4762. "symfony/translation": "^5.0",
  4763. "symfony/twig-bundle": "^4.4|^5.0",
  4764. "symfony/validator": "^4.4|^5.0",
  4765. "symfony/web-link": "^4.4|^5.0",
  4766. "symfony/workflow": "^4.4|^5.0",
  4767. "symfony/yaml": "^4.4|^5.0",
  4768. "twig/twig": "^2.10|^3.0"
  4769. },
  4770. "suggest": {
  4771. "ext-apcu": "For best performance of the system caches",
  4772. "symfony/console": "For using the console commands",
  4773. "symfony/form": "For using forms",
  4774. "symfony/property-info": "For using the property_info service",
  4775. "symfony/serializer": "For using the serializer service",
  4776. "symfony/validator": "For using validation",
  4777. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  4778. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  4779. },
  4780. "type": "symfony-bundle",
  4781. "autoload": {
  4782. "psr-4": {
  4783. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4784. },
  4785. "exclude-from-classmap": [
  4786. "/Tests/"
  4787. ]
  4788. },
  4789. "notification-url": "https://packagist.org/downloads/",
  4790. "license": [
  4791. "MIT"
  4792. ],
  4793. "authors": [
  4794. {
  4795. "name": "Fabien Potencier",
  4796. "email": "fabien@symfony.com"
  4797. },
  4798. {
  4799. "name": "Symfony Community",
  4800. "homepage": "https://symfony.com/contributors"
  4801. }
  4802. ],
  4803. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4804. "homepage": "https://symfony.com",
  4805. "support": {
  4806. "source": "https://github.com/symfony/framework-bundle/tree/v5.1.11"
  4807. },
  4808. "funding": [
  4809. {
  4810. "url": "https://symfony.com/sponsor",
  4811. "type": "custom"
  4812. },
  4813. {
  4814. "url": "https://github.com/fabpot",
  4815. "type": "github"
  4816. },
  4817. {
  4818. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4819. "type": "tidelift"
  4820. }
  4821. ],
  4822. "time": "2021-01-27T11:17:55+00:00"
  4823. },
  4824. {
  4825. "name": "symfony/http-client",
  4826. "version": "v5.1.11",
  4827. "source": {
  4828. "type": "git",
  4829. "url": "https://github.com/symfony/http-client.git",
  4830. "reference": "82f87fa4b738977937803ab8d52948d490047564"
  4831. },
  4832. "dist": {
  4833. "type": "zip",
  4834. "url": "https://api.github.com/repos/symfony/http-client/zipball/82f87fa4b738977937803ab8d52948d490047564",
  4835. "reference": "82f87fa4b738977937803ab8d52948d490047564",
  4836. "shasum": ""
  4837. },
  4838. "require": {
  4839. "php": ">=7.2.5",
  4840. "psr/log": "^1.0",
  4841. "symfony/http-client-contracts": "^2.2",
  4842. "symfony/polyfill-php73": "^1.11",
  4843. "symfony/polyfill-php80": "^1.15",
  4844. "symfony/service-contracts": "^1.0|^2"
  4845. },
  4846. "provide": {
  4847. "php-http/async-client-implementation": "*",
  4848. "php-http/client-implementation": "*",
  4849. "psr/http-client-implementation": "1.0",
  4850. "symfony/http-client-implementation": "1.1"
  4851. },
  4852. "require-dev": {
  4853. "amphp/http-client": "^4.2.1",
  4854. "amphp/http-tunnel": "^1.0",
  4855. "amphp/socket": "^1.1",
  4856. "guzzlehttp/promises": "^1.4",
  4857. "nyholm/psr7": "^1.0",
  4858. "php-http/httplug": "^1.0|^2.0",
  4859. "psr/http-client": "^1.0",
  4860. "symfony/dependency-injection": "^4.4|^5.0",
  4861. "symfony/http-kernel": "^4.4.13|^5.1.5",
  4862. "symfony/process": "^4.4|^5.0"
  4863. },
  4864. "type": "library",
  4865. "autoload": {
  4866. "psr-4": {
  4867. "Symfony\\Component\\HttpClient\\": ""
  4868. },
  4869. "exclude-from-classmap": [
  4870. "/Tests/"
  4871. ]
  4872. },
  4873. "notification-url": "https://packagist.org/downloads/",
  4874. "license": [
  4875. "MIT"
  4876. ],
  4877. "authors": [
  4878. {
  4879. "name": "Nicolas Grekas",
  4880. "email": "p@tchwork.com"
  4881. },
  4882. {
  4883. "name": "Symfony Community",
  4884. "homepage": "https://symfony.com/contributors"
  4885. }
  4886. ],
  4887. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4888. "homepage": "https://symfony.com",
  4889. "support": {
  4890. "source": "https://github.com/symfony/http-client/tree/v5.1.11"
  4891. },
  4892. "funding": [
  4893. {
  4894. "url": "https://symfony.com/sponsor",
  4895. "type": "custom"
  4896. },
  4897. {
  4898. "url": "https://github.com/fabpot",
  4899. "type": "github"
  4900. },
  4901. {
  4902. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4903. "type": "tidelift"
  4904. }
  4905. ],
  4906. "time": "2021-01-27T10:01:46+00:00"
  4907. },
  4908. {
  4909. "name": "symfony/http-client-contracts",
  4910. "version": "v2.3.1",
  4911. "source": {
  4912. "type": "git",
  4913. "url": "https://github.com/symfony/http-client-contracts.git",
  4914. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  4915. },
  4916. "dist": {
  4917. "type": "zip",
  4918. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  4919. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  4920. "shasum": ""
  4921. },
  4922. "require": {
  4923. "php": ">=7.2.5"
  4924. },
  4925. "suggest": {
  4926. "symfony/http-client-implementation": ""
  4927. },
  4928. "type": "library",
  4929. "extra": {
  4930. "branch-version": "2.3",
  4931. "branch-alias": {
  4932. "dev-main": "2.3-dev"
  4933. },
  4934. "thanks": {
  4935. "name": "symfony/contracts",
  4936. "url": "https://github.com/symfony/contracts"
  4937. }
  4938. },
  4939. "autoload": {
  4940. "psr-4": {
  4941. "Symfony\\Contracts\\HttpClient\\": ""
  4942. }
  4943. },
  4944. "notification-url": "https://packagist.org/downloads/",
  4945. "license": [
  4946. "MIT"
  4947. ],
  4948. "authors": [
  4949. {
  4950. "name": "Nicolas Grekas",
  4951. "email": "p@tchwork.com"
  4952. },
  4953. {
  4954. "name": "Symfony Community",
  4955. "homepage": "https://symfony.com/contributors"
  4956. }
  4957. ],
  4958. "description": "Generic abstractions related to HTTP clients",
  4959. "homepage": "https://symfony.com",
  4960. "keywords": [
  4961. "abstractions",
  4962. "contracts",
  4963. "decoupling",
  4964. "interfaces",
  4965. "interoperability",
  4966. "standards"
  4967. ],
  4968. "support": {
  4969. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  4970. },
  4971. "funding": [
  4972. {
  4973. "url": "https://symfony.com/sponsor",
  4974. "type": "custom"
  4975. },
  4976. {
  4977. "url": "https://github.com/fabpot",
  4978. "type": "github"
  4979. },
  4980. {
  4981. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4982. "type": "tidelift"
  4983. }
  4984. ],
  4985. "time": "2020-10-14T17:08:19+00:00"
  4986. },
  4987. {
  4988. "name": "symfony/http-foundation",
  4989. "version": "v5.1.11",
  4990. "source": {
  4991. "type": "git",
  4992. "url": "https://github.com/symfony/http-foundation.git",
  4993. "reference": "1c1920364e205f9aab12457e52b884ebd198b885"
  4994. },
  4995. "dist": {
  4996. "type": "zip",
  4997. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/1c1920364e205f9aab12457e52b884ebd198b885",
  4998. "reference": "1c1920364e205f9aab12457e52b884ebd198b885",
  4999. "shasum": ""
  5000. },
  5001. "require": {
  5002. "php": ">=7.2.5",
  5003. "symfony/deprecation-contracts": "^2.1",
  5004. "symfony/polyfill-mbstring": "~1.1",
  5005. "symfony/polyfill-php80": "^1.15"
  5006. },
  5007. "require-dev": {
  5008. "predis/predis": "~1.0",
  5009. "symfony/cache": "^4.4|^5.0",
  5010. "symfony/expression-language": "^4.4|^5.0",
  5011. "symfony/mime": "^4.4|^5.0"
  5012. },
  5013. "suggest": {
  5014. "symfony/mime": "To use the file extension guesser"
  5015. },
  5016. "type": "library",
  5017. "autoload": {
  5018. "psr-4": {
  5019. "Symfony\\Component\\HttpFoundation\\": ""
  5020. },
  5021. "exclude-from-classmap": [
  5022. "/Tests/"
  5023. ]
  5024. },
  5025. "notification-url": "https://packagist.org/downloads/",
  5026. "license": [
  5027. "MIT"
  5028. ],
  5029. "authors": [
  5030. {
  5031. "name": "Fabien Potencier",
  5032. "email": "fabien@symfony.com"
  5033. },
  5034. {
  5035. "name": "Symfony Community",
  5036. "homepage": "https://symfony.com/contributors"
  5037. }
  5038. ],
  5039. "description": "Defines an object-oriented layer for the HTTP specification",
  5040. "homepage": "https://symfony.com",
  5041. "support": {
  5042. "source": "https://github.com/symfony/http-foundation/tree/v5.1.11"
  5043. },
  5044. "funding": [
  5045. {
  5046. "url": "https://symfony.com/sponsor",
  5047. "type": "custom"
  5048. },
  5049. {
  5050. "url": "https://github.com/fabpot",
  5051. "type": "github"
  5052. },
  5053. {
  5054. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5055. "type": "tidelift"
  5056. }
  5057. ],
  5058. "time": "2021-01-27T11:17:55+00:00"
  5059. },
  5060. {
  5061. "name": "symfony/http-kernel",
  5062. "version": "v5.1.11",
  5063. "source": {
  5064. "type": "git",
  5065. "url": "https://github.com/symfony/http-kernel.git",
  5066. "reference": "1b57aaf3215c4313fec1409afdb5046dcb201d17"
  5067. },
  5068. "dist": {
  5069. "type": "zip",
  5070. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1b57aaf3215c4313fec1409afdb5046dcb201d17",
  5071. "reference": "1b57aaf3215c4313fec1409afdb5046dcb201d17",
  5072. "shasum": ""
  5073. },
  5074. "require": {
  5075. "php": ">=7.2.5",
  5076. "psr/log": "~1.0",
  5077. "symfony/deprecation-contracts": "^2.1",
  5078. "symfony/error-handler": "^4.4|^5.0",
  5079. "symfony/event-dispatcher": "^5.0",
  5080. "symfony/http-client-contracts": "^1.1|^2",
  5081. "symfony/http-foundation": "^4.4|^5.0",
  5082. "symfony/polyfill-ctype": "^1.8",
  5083. "symfony/polyfill-php73": "^1.9",
  5084. "symfony/polyfill-php80": "^1.15"
  5085. },
  5086. "conflict": {
  5087. "symfony/browser-kit": "<4.4",
  5088. "symfony/cache": "<5.0",
  5089. "symfony/config": "<5.0",
  5090. "symfony/console": "<4.4",
  5091. "symfony/dependency-injection": "<4.4",
  5092. "symfony/doctrine-bridge": "<5.0",
  5093. "symfony/form": "<5.0",
  5094. "symfony/http-client": "<5.0",
  5095. "symfony/mailer": "<5.0",
  5096. "symfony/messenger": "<5.0",
  5097. "symfony/translation": "<5.0",
  5098. "symfony/twig-bridge": "<5.0",
  5099. "symfony/validator": "<5.0",
  5100. "twig/twig": "<2.13"
  5101. },
  5102. "provide": {
  5103. "psr/log-implementation": "1.0"
  5104. },
  5105. "require-dev": {
  5106. "psr/cache": "~1.0",
  5107. "symfony/browser-kit": "^4.4|^5.0",
  5108. "symfony/config": "^5.0",
  5109. "symfony/console": "^4.4|^5.0",
  5110. "symfony/css-selector": "^4.4|^5.0",
  5111. "symfony/dependency-injection": "^4.4|^5.0",
  5112. "symfony/dom-crawler": "^4.4|^5.0",
  5113. "symfony/expression-language": "^4.4|^5.0",
  5114. "symfony/finder": "^4.4|^5.0",
  5115. "symfony/process": "^4.4|^5.0",
  5116. "symfony/routing": "^4.4|^5.0",
  5117. "symfony/stopwatch": "^4.4|^5.0",
  5118. "symfony/translation": "^4.4|^5.0",
  5119. "symfony/translation-contracts": "^1.1|^2",
  5120. "twig/twig": "^2.13|^3.0.4"
  5121. },
  5122. "suggest": {
  5123. "symfony/browser-kit": "",
  5124. "symfony/config": "",
  5125. "symfony/console": "",
  5126. "symfony/dependency-injection": ""
  5127. },
  5128. "type": "library",
  5129. "autoload": {
  5130. "psr-4": {
  5131. "Symfony\\Component\\HttpKernel\\": ""
  5132. },
  5133. "exclude-from-classmap": [
  5134. "/Tests/"
  5135. ]
  5136. },
  5137. "notification-url": "https://packagist.org/downloads/",
  5138. "license": [
  5139. "MIT"
  5140. ],
  5141. "authors": [
  5142. {
  5143. "name": "Fabien Potencier",
  5144. "email": "fabien@symfony.com"
  5145. },
  5146. {
  5147. "name": "Symfony Community",
  5148. "homepage": "https://symfony.com/contributors"
  5149. }
  5150. ],
  5151. "description": "Provides a structured process for converting a Request into a Response",
  5152. "homepage": "https://symfony.com",
  5153. "support": {
  5154. "source": "https://github.com/symfony/http-kernel/tree/v5.1.11"
  5155. },
  5156. "funding": [
  5157. {
  5158. "url": "https://symfony.com/sponsor",
  5159. "type": "custom"
  5160. },
  5161. {
  5162. "url": "https://github.com/fabpot",
  5163. "type": "github"
  5164. },
  5165. {
  5166. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5167. "type": "tidelift"
  5168. }
  5169. ],
  5170. "time": "2021-01-27T14:22:38+00:00"
  5171. },
  5172. {
  5173. "name": "symfony/intl",
  5174. "version": "v5.1.11",
  5175. "source": {
  5176. "type": "git",
  5177. "url": "https://github.com/symfony/intl.git",
  5178. "reference": "930f17689729cc47d2ce18be21ed403bcbeeb6a9"
  5179. },
  5180. "dist": {
  5181. "type": "zip",
  5182. "url": "https://api.github.com/repos/symfony/intl/zipball/930f17689729cc47d2ce18be21ed403bcbeeb6a9",
  5183. "reference": "930f17689729cc47d2ce18be21ed403bcbeeb6a9",
  5184. "shasum": ""
  5185. },
  5186. "require": {
  5187. "php": ">=7.2.5",
  5188. "symfony/polyfill-intl-icu": "~1.0",
  5189. "symfony/polyfill-php80": "^1.15"
  5190. },
  5191. "require-dev": {
  5192. "symfony/filesystem": "^4.4|^5.0"
  5193. },
  5194. "suggest": {
  5195. "ext-intl": "to use the component with locales other than \"en\""
  5196. },
  5197. "type": "library",
  5198. "autoload": {
  5199. "psr-4": {
  5200. "Symfony\\Component\\Intl\\": ""
  5201. },
  5202. "classmap": [
  5203. "Resources/stubs"
  5204. ],
  5205. "exclude-from-classmap": [
  5206. "/Tests/"
  5207. ]
  5208. },
  5209. "notification-url": "https://packagist.org/downloads/",
  5210. "license": [
  5211. "MIT"
  5212. ],
  5213. "authors": [
  5214. {
  5215. "name": "Bernhard Schussek",
  5216. "email": "bschussek@gmail.com"
  5217. },
  5218. {
  5219. "name": "Eriksen Costa",
  5220. "email": "eriksen.costa@infranology.com.br"
  5221. },
  5222. {
  5223. "name": "Igor Wiedler",
  5224. "email": "igor@wiedler.ch"
  5225. },
  5226. {
  5227. "name": "Symfony Community",
  5228. "homepage": "https://symfony.com/contributors"
  5229. }
  5230. ],
  5231. "description": "Provides a PHP replacement layer for the C intl extension that includes additional data from the ICU library",
  5232. "homepage": "https://symfony.com",
  5233. "keywords": [
  5234. "i18n",
  5235. "icu",
  5236. "internationalization",
  5237. "intl",
  5238. "l10n",
  5239. "localization"
  5240. ],
  5241. "support": {
  5242. "source": "https://github.com/symfony/intl/tree/v5.1.11"
  5243. },
  5244. "funding": [
  5245. {
  5246. "url": "https://symfony.com/sponsor",
  5247. "type": "custom"
  5248. },
  5249. {
  5250. "url": "https://github.com/fabpot",
  5251. "type": "github"
  5252. },
  5253. {
  5254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5255. "type": "tidelift"
  5256. }
  5257. ],
  5258. "time": "2021-01-27T10:01:46+00:00"
  5259. },
  5260. {
  5261. "name": "symfony/mailer",
  5262. "version": "v5.1.11",
  5263. "source": {
  5264. "type": "git",
  5265. "url": "https://github.com/symfony/mailer.git",
  5266. "reference": "3c7ab7a402acdb453dcdd6e0b2982caacfcc9b9f"
  5267. },
  5268. "dist": {
  5269. "type": "zip",
  5270. "url": "https://api.github.com/repos/symfony/mailer/zipball/3c7ab7a402acdb453dcdd6e0b2982caacfcc9b9f",
  5271. "reference": "3c7ab7a402acdb453dcdd6e0b2982caacfcc9b9f",
  5272. "shasum": ""
  5273. },
  5274. "require": {
  5275. "egulias/email-validator": "^2.1.10",
  5276. "php": ">=7.2.5",
  5277. "psr/log": "~1.0",
  5278. "symfony/event-dispatcher": "^4.4|^5.0",
  5279. "symfony/mime": "^4.4|^5.0",
  5280. "symfony/polyfill-php80": "^1.15",
  5281. "symfony/service-contracts": "^1.1|^2"
  5282. },
  5283. "conflict": {
  5284. "symfony/http-kernel": "<4.4"
  5285. },
  5286. "require-dev": {
  5287. "symfony/amazon-mailer": "^4.4|^5.0",
  5288. "symfony/google-mailer": "^4.4|^5.0",
  5289. "symfony/http-client-contracts": "^1.1|^2",
  5290. "symfony/mailchimp-mailer": "^4.4|^5.0",
  5291. "symfony/mailgun-mailer": "^4.4|^5.0",
  5292. "symfony/messenger": "^4.4|^5.0",
  5293. "symfony/postmark-mailer": "^4.4|^5.0",
  5294. "symfony/sendgrid-mailer": "^4.4|^5.0"
  5295. },
  5296. "type": "library",
  5297. "autoload": {
  5298. "psr-4": {
  5299. "Symfony\\Component\\Mailer\\": ""
  5300. },
  5301. "exclude-from-classmap": [
  5302. "/Tests/"
  5303. ]
  5304. },
  5305. "notification-url": "https://packagist.org/downloads/",
  5306. "license": [
  5307. "MIT"
  5308. ],
  5309. "authors": [
  5310. {
  5311. "name": "Fabien Potencier",
  5312. "email": "fabien@symfony.com"
  5313. },
  5314. {
  5315. "name": "Symfony Community",
  5316. "homepage": "https://symfony.com/contributors"
  5317. }
  5318. ],
  5319. "description": "Helps sending emails",
  5320. "homepage": "https://symfony.com",
  5321. "support": {
  5322. "source": "https://github.com/symfony/mailer/tree/v5.1.11"
  5323. },
  5324. "funding": [
  5325. {
  5326. "url": "https://symfony.com/sponsor",
  5327. "type": "custom"
  5328. },
  5329. {
  5330. "url": "https://github.com/fabpot",
  5331. "type": "github"
  5332. },
  5333. {
  5334. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5335. "type": "tidelift"
  5336. }
  5337. ],
  5338. "time": "2021-01-27T10:01:46+00:00"
  5339. },
  5340. {
  5341. "name": "symfony/messenger",
  5342. "version": "v5.1.11",
  5343. "source": {
  5344. "type": "git",
  5345. "url": "https://github.com/symfony/messenger.git",
  5346. "reference": "9b579fa5b025a805062911395c913cd6a0982996"
  5347. },
  5348. "dist": {
  5349. "type": "zip",
  5350. "url": "https://api.github.com/repos/symfony/messenger/zipball/9b579fa5b025a805062911395c913cd6a0982996",
  5351. "reference": "9b579fa5b025a805062911395c913cd6a0982996",
  5352. "shasum": ""
  5353. },
  5354. "require": {
  5355. "php": ">=7.2.5",
  5356. "psr/log": "~1.0",
  5357. "symfony/amqp-messenger": "^5.1",
  5358. "symfony/deprecation-contracts": "^2.1",
  5359. "symfony/doctrine-messenger": "^5.1",
  5360. "symfony/polyfill-php80": "^1.15",
  5361. "symfony/redis-messenger": "^5.1"
  5362. },
  5363. "conflict": {
  5364. "symfony/event-dispatcher": "<4.4",
  5365. "symfony/framework-bundle": "<4.4",
  5366. "symfony/http-kernel": "<4.4"
  5367. },
  5368. "require-dev": {
  5369. "psr/cache": "~1.0",
  5370. "symfony/console": "^4.4|^5.0",
  5371. "symfony/dependency-injection": "^4.4|^5.0",
  5372. "symfony/event-dispatcher": "^4.4|^5.0",
  5373. "symfony/http-kernel": "^4.4|^5.0",
  5374. "symfony/process": "^4.4|^5.0",
  5375. "symfony/property-access": "^4.4|^5.0",
  5376. "symfony/serializer": "^4.4|^5.0",
  5377. "symfony/service-contracts": "^1.1|^2",
  5378. "symfony/stopwatch": "^4.4|^5.0",
  5379. "symfony/validator": "^4.4|^5.0"
  5380. },
  5381. "suggest": {
  5382. "enqueue/messenger-adapter": "For using the php-enqueue library as a transport."
  5383. },
  5384. "type": "library",
  5385. "autoload": {
  5386. "psr-4": {
  5387. "Symfony\\Component\\Messenger\\": ""
  5388. },
  5389. "exclude-from-classmap": [
  5390. "/Tests/"
  5391. ]
  5392. },
  5393. "notification-url": "https://packagist.org/downloads/",
  5394. "license": [
  5395. "MIT"
  5396. ],
  5397. "authors": [
  5398. {
  5399. "name": "Samuel Roze",
  5400. "email": "samuel.roze@gmail.com"
  5401. },
  5402. {
  5403. "name": "Symfony Community",
  5404. "homepage": "https://symfony.com/contributors"
  5405. }
  5406. ],
  5407. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  5408. "homepage": "https://symfony.com",
  5409. "support": {
  5410. "source": "https://github.com/symfony/messenger/tree/v5.1.11"
  5411. },
  5412. "funding": [
  5413. {
  5414. "url": "https://symfony.com/sponsor",
  5415. "type": "custom"
  5416. },
  5417. {
  5418. "url": "https://github.com/fabpot",
  5419. "type": "github"
  5420. },
  5421. {
  5422. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5423. "type": "tidelift"
  5424. }
  5425. ],
  5426. "time": "2021-01-27T10:01:46+00:00"
  5427. },
  5428. {
  5429. "name": "symfony/mime",
  5430. "version": "v5.1.11",
  5431. "source": {
  5432. "type": "git",
  5433. "url": "https://github.com/symfony/mime.git",
  5434. "reference": "d7d899822da1fa89bcf658e8e8d836f5578e6f7a"
  5435. },
  5436. "dist": {
  5437. "type": "zip",
  5438. "url": "https://api.github.com/repos/symfony/mime/zipball/d7d899822da1fa89bcf658e8e8d836f5578e6f7a",
  5439. "reference": "d7d899822da1fa89bcf658e8e8d836f5578e6f7a",
  5440. "shasum": ""
  5441. },
  5442. "require": {
  5443. "php": ">=7.2.5",
  5444. "symfony/polyfill-intl-idn": "^1.10",
  5445. "symfony/polyfill-mbstring": "^1.0",
  5446. "symfony/polyfill-php80": "^1.15"
  5447. },
  5448. "conflict": {
  5449. "symfony/mailer": "<4.4"
  5450. },
  5451. "require-dev": {
  5452. "egulias/email-validator": "^2.1.10",
  5453. "symfony/dependency-injection": "^4.4|^5.0"
  5454. },
  5455. "type": "library",
  5456. "autoload": {
  5457. "psr-4": {
  5458. "Symfony\\Component\\Mime\\": ""
  5459. },
  5460. "exclude-from-classmap": [
  5461. "/Tests/"
  5462. ]
  5463. },
  5464. "notification-url": "https://packagist.org/downloads/",
  5465. "license": [
  5466. "MIT"
  5467. ],
  5468. "authors": [
  5469. {
  5470. "name": "Fabien Potencier",
  5471. "email": "fabien@symfony.com"
  5472. },
  5473. {
  5474. "name": "Symfony Community",
  5475. "homepage": "https://symfony.com/contributors"
  5476. }
  5477. ],
  5478. "description": "Allows manipulating MIME messages",
  5479. "homepage": "https://symfony.com",
  5480. "keywords": [
  5481. "mime",
  5482. "mime-type"
  5483. ],
  5484. "support": {
  5485. "source": "https://github.com/symfony/mime/tree/v5.1.11"
  5486. },
  5487. "funding": [
  5488. {
  5489. "url": "https://symfony.com/sponsor",
  5490. "type": "custom"
  5491. },
  5492. {
  5493. "url": "https://github.com/fabpot",
  5494. "type": "github"
  5495. },
  5496. {
  5497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5498. "type": "tidelift"
  5499. }
  5500. ],
  5501. "time": "2021-01-27T10:01:46+00:00"
  5502. },
  5503. {
  5504. "name": "symfony/monolog-bridge",
  5505. "version": "v5.1.11",
  5506. "source": {
  5507. "type": "git",
  5508. "url": "https://github.com/symfony/monolog-bridge.git",
  5509. "reference": "ce37f72dd09e38d65dd6d57a0c17e874c4c689a5"
  5510. },
  5511. "dist": {
  5512. "type": "zip",
  5513. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/ce37f72dd09e38d65dd6d57a0c17e874c4c689a5",
  5514. "reference": "ce37f72dd09e38d65dd6d57a0c17e874c4c689a5",
  5515. "shasum": ""
  5516. },
  5517. "require": {
  5518. "monolog/monolog": "^1.25.1|^2",
  5519. "php": ">=7.2.5",
  5520. "symfony/http-kernel": "^4.4|^5.0",
  5521. "symfony/service-contracts": "^1.1|^2"
  5522. },
  5523. "conflict": {
  5524. "symfony/console": "<4.4",
  5525. "symfony/http-foundation": "<4.4"
  5526. },
  5527. "require-dev": {
  5528. "symfony/console": "^4.4|^5.0",
  5529. "symfony/http-client": "^4.4|^5.0",
  5530. "symfony/mailer": "^4.4|^5.0",
  5531. "symfony/mime": "^4.4|^5.0",
  5532. "symfony/security-core": "^4.4|^5.0",
  5533. "symfony/var-dumper": "^4.4|^5.0"
  5534. },
  5535. "suggest": {
  5536. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  5537. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  5538. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  5539. },
  5540. "type": "symfony-bridge",
  5541. "autoload": {
  5542. "psr-4": {
  5543. "Symfony\\Bridge\\Monolog\\": ""
  5544. },
  5545. "exclude-from-classmap": [
  5546. "/Tests/"
  5547. ]
  5548. },
  5549. "notification-url": "https://packagist.org/downloads/",
  5550. "license": [
  5551. "MIT"
  5552. ],
  5553. "authors": [
  5554. {
  5555. "name": "Fabien Potencier",
  5556. "email": "fabien@symfony.com"
  5557. },
  5558. {
  5559. "name": "Symfony Community",
  5560. "homepage": "https://symfony.com/contributors"
  5561. }
  5562. ],
  5563. "description": "Provides integration for Monolog with various Symfony components",
  5564. "homepage": "https://symfony.com",
  5565. "support": {
  5566. "source": "https://github.com/symfony/monolog-bridge/tree/v5.1.11"
  5567. },
  5568. "funding": [
  5569. {
  5570. "url": "https://symfony.com/sponsor",
  5571. "type": "custom"
  5572. },
  5573. {
  5574. "url": "https://github.com/fabpot",
  5575. "type": "github"
  5576. },
  5577. {
  5578. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5579. "type": "tidelift"
  5580. }
  5581. ],
  5582. "time": "2021-01-27T10:01:46+00:00"
  5583. },
  5584. {
  5585. "name": "symfony/monolog-bundle",
  5586. "version": "v3.6.0",
  5587. "source": {
  5588. "type": "git",
  5589. "url": "https://github.com/symfony/monolog-bundle.git",
  5590. "reference": "e495f5c7e4e672ffef4357d4a4d85f010802f940"
  5591. },
  5592. "dist": {
  5593. "type": "zip",
  5594. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/e495f5c7e4e672ffef4357d4a4d85f010802f940",
  5595. "reference": "e495f5c7e4e672ffef4357d4a4d85f010802f940",
  5596. "shasum": ""
  5597. },
  5598. "require": {
  5599. "monolog/monolog": "~1.22 || ~2.0",
  5600. "php": ">=5.6",
  5601. "symfony/config": "~3.4 || ~4.0 || ^5.0",
  5602. "symfony/dependency-injection": "~3.4.10 || ^4.0.10 || ^5.0",
  5603. "symfony/http-kernel": "~3.4 || ~4.0 || ^5.0",
  5604. "symfony/monolog-bridge": "~3.4 || ~4.0 || ^5.0"
  5605. },
  5606. "require-dev": {
  5607. "symfony/console": "~3.4 || ~4.0 || ^5.0",
  5608. "symfony/phpunit-bridge": "^4.4 || ^5.0",
  5609. "symfony/yaml": "~3.4 || ~4.0 || ^5.0"
  5610. },
  5611. "type": "symfony-bundle",
  5612. "extra": {
  5613. "branch-alias": {
  5614. "dev-master": "3.x-dev"
  5615. }
  5616. },
  5617. "autoload": {
  5618. "psr-4": {
  5619. "Symfony\\Bundle\\MonologBundle\\": ""
  5620. },
  5621. "exclude-from-classmap": [
  5622. "/Tests/"
  5623. ]
  5624. },
  5625. "notification-url": "https://packagist.org/downloads/",
  5626. "license": [
  5627. "MIT"
  5628. ],
  5629. "authors": [
  5630. {
  5631. "name": "Fabien Potencier",
  5632. "email": "fabien@symfony.com"
  5633. },
  5634. {
  5635. "name": "Symfony Community",
  5636. "homepage": "http://symfony.com/contributors"
  5637. }
  5638. ],
  5639. "description": "Symfony MonologBundle",
  5640. "homepage": "http://symfony.com",
  5641. "keywords": [
  5642. "log",
  5643. "logging"
  5644. ],
  5645. "support": {
  5646. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5647. "source": "https://github.com/symfony/monolog-bundle/tree/v3.6.0"
  5648. },
  5649. "funding": [
  5650. {
  5651. "url": "https://symfony.com/sponsor",
  5652. "type": "custom"
  5653. },
  5654. {
  5655. "url": "https://github.com/fabpot",
  5656. "type": "github"
  5657. },
  5658. {
  5659. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5660. "type": "tidelift"
  5661. }
  5662. ],
  5663. "time": "2020-10-06T15:12:11+00:00"
  5664. },
  5665. {
  5666. "name": "symfony/notifier",
  5667. "version": "v5.1.11",
  5668. "source": {
  5669. "type": "git",
  5670. "url": "https://github.com/symfony/notifier.git",
  5671. "reference": "c2ccb5b6f9b7a316b3bfefc5fec751540d620d3c"
  5672. },
  5673. "dist": {
  5674. "type": "zip",
  5675. "url": "https://api.github.com/repos/symfony/notifier/zipball/c2ccb5b6f9b7a316b3bfefc5fec751540d620d3c",
  5676. "reference": "c2ccb5b6f9b7a316b3bfefc5fec751540d620d3c",
  5677. "shasum": ""
  5678. },
  5679. "require": {
  5680. "php": ">=7.2.5",
  5681. "symfony/polyfill-php80": "^1.15"
  5682. },
  5683. "conflict": {
  5684. "symfony/http-kernel": "<4.4"
  5685. },
  5686. "type": "library",
  5687. "autoload": {
  5688. "psr-4": {
  5689. "Symfony\\Component\\Notifier\\": ""
  5690. },
  5691. "exclude-from-classmap": [
  5692. "/Tests/"
  5693. ]
  5694. },
  5695. "notification-url": "https://packagist.org/downloads/",
  5696. "license": [
  5697. "MIT"
  5698. ],
  5699. "authors": [
  5700. {
  5701. "name": "Fabien Potencier",
  5702. "email": "fabien@symfony.com"
  5703. },
  5704. {
  5705. "name": "Symfony Community",
  5706. "homepage": "https://symfony.com/contributors"
  5707. }
  5708. ],
  5709. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  5710. "homepage": "https://symfony.com",
  5711. "keywords": [
  5712. "notification",
  5713. "notifier"
  5714. ],
  5715. "support": {
  5716. "source": "https://github.com/symfony/notifier/tree/v5.1.11"
  5717. },
  5718. "funding": [
  5719. {
  5720. "url": "https://symfony.com/sponsor",
  5721. "type": "custom"
  5722. },
  5723. {
  5724. "url": "https://github.com/fabpot",
  5725. "type": "github"
  5726. },
  5727. {
  5728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5729. "type": "tidelift"
  5730. }
  5731. ],
  5732. "time": "2021-01-13T10:32:36+00:00"
  5733. },
  5734. {
  5735. "name": "symfony/options-resolver",
  5736. "version": "v5.1.11",
  5737. "source": {
  5738. "type": "git",
  5739. "url": "https://github.com/symfony/options-resolver.git",
  5740. "reference": "c67e38bab7b561a65e34162a48ae587750f7ae0e"
  5741. },
  5742. "dist": {
  5743. "type": "zip",
  5744. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/c67e38bab7b561a65e34162a48ae587750f7ae0e",
  5745. "reference": "c67e38bab7b561a65e34162a48ae587750f7ae0e",
  5746. "shasum": ""
  5747. },
  5748. "require": {
  5749. "php": ">=7.2.5",
  5750. "symfony/deprecation-contracts": "^2.1",
  5751. "symfony/polyfill-php80": "^1.15"
  5752. },
  5753. "type": "library",
  5754. "autoload": {
  5755. "psr-4": {
  5756. "Symfony\\Component\\OptionsResolver\\": ""
  5757. },
  5758. "exclude-from-classmap": [
  5759. "/Tests/"
  5760. ]
  5761. },
  5762. "notification-url": "https://packagist.org/downloads/",
  5763. "license": [
  5764. "MIT"
  5765. ],
  5766. "authors": [
  5767. {
  5768. "name": "Fabien Potencier",
  5769. "email": "fabien@symfony.com"
  5770. },
  5771. {
  5772. "name": "Symfony Community",
  5773. "homepage": "https://symfony.com/contributors"
  5774. }
  5775. ],
  5776. "description": "Provides an improved replacement for the array_replace PHP function",
  5777. "homepage": "https://symfony.com",
  5778. "keywords": [
  5779. "config",
  5780. "configuration",
  5781. "options"
  5782. ],
  5783. "support": {
  5784. "source": "https://github.com/symfony/options-resolver/tree/v5.1.11"
  5785. },
  5786. "funding": [
  5787. {
  5788. "url": "https://symfony.com/sponsor",
  5789. "type": "custom"
  5790. },
  5791. {
  5792. "url": "https://github.com/fabpot",
  5793. "type": "github"
  5794. },
  5795. {
  5796. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5797. "type": "tidelift"
  5798. }
  5799. ],
  5800. "time": "2021-01-27T12:50:07+00:00"
  5801. },
  5802. {
  5803. "name": "symfony/orm-pack",
  5804. "version": "v2.1.0",
  5805. "source": {
  5806. "type": "git",
  5807. "url": "https://github.com/symfony/orm-pack.git",
  5808. "reference": "357f6362067b1ebb94af321b79f8939fc9118751"
  5809. },
  5810. "dist": {
  5811. "type": "zip",
  5812. "url": "https://api.github.com/repos/symfony/orm-pack/zipball/357f6362067b1ebb94af321b79f8939fc9118751",
  5813. "reference": "357f6362067b1ebb94af321b79f8939fc9118751",
  5814. "shasum": ""
  5815. },
  5816. "require": {
  5817. "composer/package-versions-deprecated": "*",
  5818. "doctrine/doctrine-bundle": "*",
  5819. "doctrine/doctrine-migrations-bundle": "*",
  5820. "doctrine/orm": "*",
  5821. "symfony/proxy-manager-bridge": "*"
  5822. },
  5823. "type": "symfony-pack",
  5824. "notification-url": "https://packagist.org/downloads/",
  5825. "license": [
  5826. "MIT"
  5827. ],
  5828. "description": "A pack for the Doctrine ORM",
  5829. "support": {
  5830. "issues": "https://github.com/symfony/orm-pack/issues",
  5831. "source": "https://github.com/symfony/orm-pack/tree/v2.1.0"
  5832. },
  5833. "funding": [
  5834. {
  5835. "url": "https://symfony.com/sponsor",
  5836. "type": "custom"
  5837. },
  5838. {
  5839. "url": "https://github.com/fabpot",
  5840. "type": "github"
  5841. },
  5842. {
  5843. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5844. "type": "tidelift"
  5845. }
  5846. ],
  5847. "time": "2020-12-22T16:33:52+00:00"
  5848. },
  5849. {
  5850. "name": "symfony/polyfill-intl-grapheme",
  5851. "version": "v1.22.0",
  5852. "source": {
  5853. "type": "git",
  5854. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5855. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af"
  5856. },
  5857. "dist": {
  5858. "type": "zip",
  5859. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/267a9adeb8ecb8071040a740930e077cdfb987af",
  5860. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af",
  5861. "shasum": ""
  5862. },
  5863. "require": {
  5864. "php": ">=7.1"
  5865. },
  5866. "suggest": {
  5867. "ext-intl": "For best performance"
  5868. },
  5869. "type": "library",
  5870. "extra": {
  5871. "branch-alias": {
  5872. "dev-main": "1.22-dev"
  5873. },
  5874. "thanks": {
  5875. "name": "symfony/polyfill",
  5876. "url": "https://github.com/symfony/polyfill"
  5877. }
  5878. },
  5879. "autoload": {
  5880. "psr-4": {
  5881. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5882. },
  5883. "files": [
  5884. "bootstrap.php"
  5885. ]
  5886. },
  5887. "notification-url": "https://packagist.org/downloads/",
  5888. "license": [
  5889. "MIT"
  5890. ],
  5891. "authors": [
  5892. {
  5893. "name": "Nicolas Grekas",
  5894. "email": "p@tchwork.com"
  5895. },
  5896. {
  5897. "name": "Symfony Community",
  5898. "homepage": "https://symfony.com/contributors"
  5899. }
  5900. ],
  5901. "description": "Symfony polyfill for intl's grapheme_* functions",
  5902. "homepage": "https://symfony.com",
  5903. "keywords": [
  5904. "compatibility",
  5905. "grapheme",
  5906. "intl",
  5907. "polyfill",
  5908. "portable",
  5909. "shim"
  5910. ],
  5911. "support": {
  5912. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.0"
  5913. },
  5914. "funding": [
  5915. {
  5916. "url": "https://symfony.com/sponsor",
  5917. "type": "custom"
  5918. },
  5919. {
  5920. "url": "https://github.com/fabpot",
  5921. "type": "github"
  5922. },
  5923. {
  5924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5925. "type": "tidelift"
  5926. }
  5927. ],
  5928. "time": "2021-01-07T16:49:33+00:00"
  5929. },
  5930. {
  5931. "name": "symfony/polyfill-intl-icu",
  5932. "version": "v1.22.0",
  5933. "source": {
  5934. "type": "git",
  5935. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5936. "reference": "b2b1e732a6c039f1a3ea3414b3379a2433e183d6"
  5937. },
  5938. "dist": {
  5939. "type": "zip",
  5940. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/b2b1e732a6c039f1a3ea3414b3379a2433e183d6",
  5941. "reference": "b2b1e732a6c039f1a3ea3414b3379a2433e183d6",
  5942. "shasum": ""
  5943. },
  5944. "require": {
  5945. "php": ">=7.1"
  5946. },
  5947. "suggest": {
  5948. "ext-intl": "For best performance and support of other locales than \"en\""
  5949. },
  5950. "type": "library",
  5951. "extra": {
  5952. "branch-alias": {
  5953. "dev-main": "1.22-dev"
  5954. },
  5955. "thanks": {
  5956. "name": "symfony/polyfill",
  5957. "url": "https://github.com/symfony/polyfill"
  5958. }
  5959. },
  5960. "autoload": {
  5961. "files": [
  5962. "bootstrap.php"
  5963. ],
  5964. "psr-4": {
  5965. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5966. },
  5967. "classmap": [
  5968. "Resources/stubs"
  5969. ],
  5970. "exclude-from-classmap": [
  5971. "/Tests/"
  5972. ]
  5973. },
  5974. "notification-url": "https://packagist.org/downloads/",
  5975. "license": [
  5976. "MIT"
  5977. ],
  5978. "authors": [
  5979. {
  5980. "name": "Nicolas Grekas",
  5981. "email": "p@tchwork.com"
  5982. },
  5983. {
  5984. "name": "Symfony Community",
  5985. "homepage": "https://symfony.com/contributors"
  5986. }
  5987. ],
  5988. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5989. "homepage": "https://symfony.com",
  5990. "keywords": [
  5991. "compatibility",
  5992. "icu",
  5993. "intl",
  5994. "polyfill",
  5995. "portable",
  5996. "shim"
  5997. ],
  5998. "support": {
  5999. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.22.0"
  6000. },
  6001. "funding": [
  6002. {
  6003. "url": "https://symfony.com/sponsor",
  6004. "type": "custom"
  6005. },
  6006. {
  6007. "url": "https://github.com/fabpot",
  6008. "type": "github"
  6009. },
  6010. {
  6011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6012. "type": "tidelift"
  6013. }
  6014. ],
  6015. "time": "2021-01-07T16:49:33+00:00"
  6016. },
  6017. {
  6018. "name": "symfony/polyfill-intl-idn",
  6019. "version": "v1.22.0",
  6020. "source": {
  6021. "type": "git",
  6022. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6023. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44"
  6024. },
  6025. "dist": {
  6026. "type": "zip",
  6027. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  6028. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  6029. "shasum": ""
  6030. },
  6031. "require": {
  6032. "php": ">=7.1",
  6033. "symfony/polyfill-intl-normalizer": "^1.10",
  6034. "symfony/polyfill-php72": "^1.10"
  6035. },
  6036. "suggest": {
  6037. "ext-intl": "For best performance"
  6038. },
  6039. "type": "library",
  6040. "extra": {
  6041. "branch-alias": {
  6042. "dev-main": "1.22-dev"
  6043. },
  6044. "thanks": {
  6045. "name": "symfony/polyfill",
  6046. "url": "https://github.com/symfony/polyfill"
  6047. }
  6048. },
  6049. "autoload": {
  6050. "psr-4": {
  6051. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6052. },
  6053. "files": [
  6054. "bootstrap.php"
  6055. ]
  6056. },
  6057. "notification-url": "https://packagist.org/downloads/",
  6058. "license": [
  6059. "MIT"
  6060. ],
  6061. "authors": [
  6062. {
  6063. "name": "Laurent Bassin",
  6064. "email": "laurent@bassin.info"
  6065. },
  6066. {
  6067. "name": "Trevor Rowbotham",
  6068. "email": "trevor.rowbotham@pm.me"
  6069. },
  6070. {
  6071. "name": "Symfony Community",
  6072. "homepage": "https://symfony.com/contributors"
  6073. }
  6074. ],
  6075. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6076. "homepage": "https://symfony.com",
  6077. "keywords": [
  6078. "compatibility",
  6079. "idn",
  6080. "intl",
  6081. "polyfill",
  6082. "portable",
  6083. "shim"
  6084. ],
  6085. "support": {
  6086. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.0"
  6087. },
  6088. "funding": [
  6089. {
  6090. "url": "https://symfony.com/sponsor",
  6091. "type": "custom"
  6092. },
  6093. {
  6094. "url": "https://github.com/fabpot",
  6095. "type": "github"
  6096. },
  6097. {
  6098. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6099. "type": "tidelift"
  6100. }
  6101. ],
  6102. "time": "2021-01-07T16:49:33+00:00"
  6103. },
  6104. {
  6105. "name": "symfony/polyfill-intl-normalizer",
  6106. "version": "v1.22.0",
  6107. "source": {
  6108. "type": "git",
  6109. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6110. "reference": "6e971c891537eb617a00bb07a43d182a6915faba"
  6111. },
  6112. "dist": {
  6113. "type": "zip",
  6114. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/6e971c891537eb617a00bb07a43d182a6915faba",
  6115. "reference": "6e971c891537eb617a00bb07a43d182a6915faba",
  6116. "shasum": ""
  6117. },
  6118. "require": {
  6119. "php": ">=7.1"
  6120. },
  6121. "suggest": {
  6122. "ext-intl": "For best performance"
  6123. },
  6124. "type": "library",
  6125. "extra": {
  6126. "branch-alias": {
  6127. "dev-main": "1.22-dev"
  6128. },
  6129. "thanks": {
  6130. "name": "symfony/polyfill",
  6131. "url": "https://github.com/symfony/polyfill"
  6132. }
  6133. },
  6134. "autoload": {
  6135. "psr-4": {
  6136. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6137. },
  6138. "files": [
  6139. "bootstrap.php"
  6140. ],
  6141. "classmap": [
  6142. "Resources/stubs"
  6143. ]
  6144. },
  6145. "notification-url": "https://packagist.org/downloads/",
  6146. "license": [
  6147. "MIT"
  6148. ],
  6149. "authors": [
  6150. {
  6151. "name": "Nicolas Grekas",
  6152. "email": "p@tchwork.com"
  6153. },
  6154. {
  6155. "name": "Symfony Community",
  6156. "homepage": "https://symfony.com/contributors"
  6157. }
  6158. ],
  6159. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6160. "homepage": "https://symfony.com",
  6161. "keywords": [
  6162. "compatibility",
  6163. "intl",
  6164. "normalizer",
  6165. "polyfill",
  6166. "portable",
  6167. "shim"
  6168. ],
  6169. "support": {
  6170. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.0"
  6171. },
  6172. "funding": [
  6173. {
  6174. "url": "https://symfony.com/sponsor",
  6175. "type": "custom"
  6176. },
  6177. {
  6178. "url": "https://github.com/fabpot",
  6179. "type": "github"
  6180. },
  6181. {
  6182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6183. "type": "tidelift"
  6184. }
  6185. ],
  6186. "time": "2021-01-07T17:09:11+00:00"
  6187. },
  6188. {
  6189. "name": "symfony/polyfill-mbstring",
  6190. "version": "v1.22.0",
  6191. "source": {
  6192. "type": "git",
  6193. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6194. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13"
  6195. },
  6196. "dist": {
  6197. "type": "zip",
  6198. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  6199. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  6200. "shasum": ""
  6201. },
  6202. "require": {
  6203. "php": ">=7.1"
  6204. },
  6205. "suggest": {
  6206. "ext-mbstring": "For best performance"
  6207. },
  6208. "type": "library",
  6209. "extra": {
  6210. "branch-alias": {
  6211. "dev-main": "1.22-dev"
  6212. },
  6213. "thanks": {
  6214. "name": "symfony/polyfill",
  6215. "url": "https://github.com/symfony/polyfill"
  6216. }
  6217. },
  6218. "autoload": {
  6219. "psr-4": {
  6220. "Symfony\\Polyfill\\Mbstring\\": ""
  6221. },
  6222. "files": [
  6223. "bootstrap.php"
  6224. ]
  6225. },
  6226. "notification-url": "https://packagist.org/downloads/",
  6227. "license": [
  6228. "MIT"
  6229. ],
  6230. "authors": [
  6231. {
  6232. "name": "Nicolas Grekas",
  6233. "email": "p@tchwork.com"
  6234. },
  6235. {
  6236. "name": "Symfony Community",
  6237. "homepage": "https://symfony.com/contributors"
  6238. }
  6239. ],
  6240. "description": "Symfony polyfill for the Mbstring extension",
  6241. "homepage": "https://symfony.com",
  6242. "keywords": [
  6243. "compatibility",
  6244. "mbstring",
  6245. "polyfill",
  6246. "portable",
  6247. "shim"
  6248. ],
  6249. "support": {
  6250. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.0"
  6251. },
  6252. "funding": [
  6253. {
  6254. "url": "https://symfony.com/sponsor",
  6255. "type": "custom"
  6256. },
  6257. {
  6258. "url": "https://github.com/fabpot",
  6259. "type": "github"
  6260. },
  6261. {
  6262. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6263. "type": "tidelift"
  6264. }
  6265. ],
  6266. "time": "2021-01-07T16:49:33+00:00"
  6267. },
  6268. {
  6269. "name": "symfony/polyfill-php73",
  6270. "version": "v1.22.0",
  6271. "source": {
  6272. "type": "git",
  6273. "url": "https://github.com/symfony/polyfill-php73.git",
  6274. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  6275. },
  6276. "dist": {
  6277. "type": "zip",
  6278. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6279. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6280. "shasum": ""
  6281. },
  6282. "require": {
  6283. "php": ">=7.1"
  6284. },
  6285. "type": "library",
  6286. "extra": {
  6287. "branch-alias": {
  6288. "dev-main": "1.22-dev"
  6289. },
  6290. "thanks": {
  6291. "name": "symfony/polyfill",
  6292. "url": "https://github.com/symfony/polyfill"
  6293. }
  6294. },
  6295. "autoload": {
  6296. "psr-4": {
  6297. "Symfony\\Polyfill\\Php73\\": ""
  6298. },
  6299. "files": [
  6300. "bootstrap.php"
  6301. ],
  6302. "classmap": [
  6303. "Resources/stubs"
  6304. ]
  6305. },
  6306. "notification-url": "https://packagist.org/downloads/",
  6307. "license": [
  6308. "MIT"
  6309. ],
  6310. "authors": [
  6311. {
  6312. "name": "Nicolas Grekas",
  6313. "email": "p@tchwork.com"
  6314. },
  6315. {
  6316. "name": "Symfony Community",
  6317. "homepage": "https://symfony.com/contributors"
  6318. }
  6319. ],
  6320. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6321. "homepage": "https://symfony.com",
  6322. "keywords": [
  6323. "compatibility",
  6324. "polyfill",
  6325. "portable",
  6326. "shim"
  6327. ],
  6328. "support": {
  6329. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.0"
  6330. },
  6331. "funding": [
  6332. {
  6333. "url": "https://symfony.com/sponsor",
  6334. "type": "custom"
  6335. },
  6336. {
  6337. "url": "https://github.com/fabpot",
  6338. "type": "github"
  6339. },
  6340. {
  6341. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6342. "type": "tidelift"
  6343. }
  6344. ],
  6345. "time": "2021-01-07T16:49:33+00:00"
  6346. },
  6347. {
  6348. "name": "symfony/polyfill-php80",
  6349. "version": "v1.22.0",
  6350. "source": {
  6351. "type": "git",
  6352. "url": "https://github.com/symfony/polyfill-php80.git",
  6353. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  6354. },
  6355. "dist": {
  6356. "type": "zip",
  6357. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6358. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6359. "shasum": ""
  6360. },
  6361. "require": {
  6362. "php": ">=7.1"
  6363. },
  6364. "type": "library",
  6365. "extra": {
  6366. "branch-alias": {
  6367. "dev-main": "1.22-dev"
  6368. },
  6369. "thanks": {
  6370. "name": "symfony/polyfill",
  6371. "url": "https://github.com/symfony/polyfill"
  6372. }
  6373. },
  6374. "autoload": {
  6375. "psr-4": {
  6376. "Symfony\\Polyfill\\Php80\\": ""
  6377. },
  6378. "files": [
  6379. "bootstrap.php"
  6380. ],
  6381. "classmap": [
  6382. "Resources/stubs"
  6383. ]
  6384. },
  6385. "notification-url": "https://packagist.org/downloads/",
  6386. "license": [
  6387. "MIT"
  6388. ],
  6389. "authors": [
  6390. {
  6391. "name": "Ion Bazan",
  6392. "email": "ion.bazan@gmail.com"
  6393. },
  6394. {
  6395. "name": "Nicolas Grekas",
  6396. "email": "p@tchwork.com"
  6397. },
  6398. {
  6399. "name": "Symfony Community",
  6400. "homepage": "https://symfony.com/contributors"
  6401. }
  6402. ],
  6403. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6404. "homepage": "https://symfony.com",
  6405. "keywords": [
  6406. "compatibility",
  6407. "polyfill",
  6408. "portable",
  6409. "shim"
  6410. ],
  6411. "support": {
  6412. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.0"
  6413. },
  6414. "funding": [
  6415. {
  6416. "url": "https://symfony.com/sponsor",
  6417. "type": "custom"
  6418. },
  6419. {
  6420. "url": "https://github.com/fabpot",
  6421. "type": "github"
  6422. },
  6423. {
  6424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6425. "type": "tidelift"
  6426. }
  6427. ],
  6428. "time": "2021-01-07T16:49:33+00:00"
  6429. },
  6430. {
  6431. "name": "symfony/process",
  6432. "version": "v5.1.11",
  6433. "source": {
  6434. "type": "git",
  6435. "url": "https://github.com/symfony/process.git",
  6436. "reference": "d279ae7f2d6e0e4e45f66de7d76006246ae00e4d"
  6437. },
  6438. "dist": {
  6439. "type": "zip",
  6440. "url": "https://api.github.com/repos/symfony/process/zipball/d279ae7f2d6e0e4e45f66de7d76006246ae00e4d",
  6441. "reference": "d279ae7f2d6e0e4e45f66de7d76006246ae00e4d",
  6442. "shasum": ""
  6443. },
  6444. "require": {
  6445. "php": ">=7.2.5",
  6446. "symfony/polyfill-php80": "^1.15"
  6447. },
  6448. "type": "library",
  6449. "autoload": {
  6450. "psr-4": {
  6451. "Symfony\\Component\\Process\\": ""
  6452. },
  6453. "exclude-from-classmap": [
  6454. "/Tests/"
  6455. ]
  6456. },
  6457. "notification-url": "https://packagist.org/downloads/",
  6458. "license": [
  6459. "MIT"
  6460. ],
  6461. "authors": [
  6462. {
  6463. "name": "Fabien Potencier",
  6464. "email": "fabien@symfony.com"
  6465. },
  6466. {
  6467. "name": "Symfony Community",
  6468. "homepage": "https://symfony.com/contributors"
  6469. }
  6470. ],
  6471. "description": "Executes commands in sub-processes",
  6472. "homepage": "https://symfony.com",
  6473. "support": {
  6474. "source": "https://github.com/symfony/process/tree/v5.1.11"
  6475. },
  6476. "funding": [
  6477. {
  6478. "url": "https://symfony.com/sponsor",
  6479. "type": "custom"
  6480. },
  6481. {
  6482. "url": "https://github.com/fabpot",
  6483. "type": "github"
  6484. },
  6485. {
  6486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6487. "type": "tidelift"
  6488. }
  6489. ],
  6490. "time": "2021-01-27T10:01:46+00:00"
  6491. },
  6492. {
  6493. "name": "symfony/property-access",
  6494. "version": "v5.1.11",
  6495. "source": {
  6496. "type": "git",
  6497. "url": "https://github.com/symfony/property-access.git",
  6498. "reference": "d99f6d52333d0798a3b5bb3a81bae789e96bae93"
  6499. },
  6500. "dist": {
  6501. "type": "zip",
  6502. "url": "https://api.github.com/repos/symfony/property-access/zipball/d99f6d52333d0798a3b5bb3a81bae789e96bae93",
  6503. "reference": "d99f6d52333d0798a3b5bb3a81bae789e96bae93",
  6504. "shasum": ""
  6505. },
  6506. "require": {
  6507. "php": ">=7.2.5",
  6508. "symfony/polyfill-php80": "^1.15",
  6509. "symfony/property-info": "^5.1.1"
  6510. },
  6511. "require-dev": {
  6512. "symfony/cache": "^4.4|^5.0"
  6513. },
  6514. "suggest": {
  6515. "psr/cache-implementation": "To cache access methods."
  6516. },
  6517. "type": "library",
  6518. "autoload": {
  6519. "psr-4": {
  6520. "Symfony\\Component\\PropertyAccess\\": ""
  6521. },
  6522. "exclude-from-classmap": [
  6523. "/Tests/"
  6524. ]
  6525. },
  6526. "notification-url": "https://packagist.org/downloads/",
  6527. "license": [
  6528. "MIT"
  6529. ],
  6530. "authors": [
  6531. {
  6532. "name": "Fabien Potencier",
  6533. "email": "fabien@symfony.com"
  6534. },
  6535. {
  6536. "name": "Symfony Community",
  6537. "homepage": "https://symfony.com/contributors"
  6538. }
  6539. ],
  6540. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6541. "homepage": "https://symfony.com",
  6542. "keywords": [
  6543. "access",
  6544. "array",
  6545. "extraction",
  6546. "index",
  6547. "injection",
  6548. "object",
  6549. "property",
  6550. "property path",
  6551. "reflection"
  6552. ],
  6553. "support": {
  6554. "source": "https://github.com/symfony/property-access/tree/v5.1.11"
  6555. },
  6556. "funding": [
  6557. {
  6558. "url": "https://symfony.com/sponsor",
  6559. "type": "custom"
  6560. },
  6561. {
  6562. "url": "https://github.com/fabpot",
  6563. "type": "github"
  6564. },
  6565. {
  6566. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6567. "type": "tidelift"
  6568. }
  6569. ],
  6570. "time": "2021-01-27T10:01:46+00:00"
  6571. },
  6572. {
  6573. "name": "symfony/property-info",
  6574. "version": "v5.1.11",
  6575. "source": {
  6576. "type": "git",
  6577. "url": "https://github.com/symfony/property-info.git",
  6578. "reference": "d4981d21891987fce806fc94e41312fe9c131747"
  6579. },
  6580. "dist": {
  6581. "type": "zip",
  6582. "url": "https://api.github.com/repos/symfony/property-info/zipball/d4981d21891987fce806fc94e41312fe9c131747",
  6583. "reference": "d4981d21891987fce806fc94e41312fe9c131747",
  6584. "shasum": ""
  6585. },
  6586. "require": {
  6587. "php": ">=7.2.5",
  6588. "symfony/polyfill-php80": "^1.15",
  6589. "symfony/string": "^5.1"
  6590. },
  6591. "conflict": {
  6592. "phpdocumentor/reflection-docblock": "<3.2.2",
  6593. "phpdocumentor/type-resolver": "<1.4.0",
  6594. "symfony/dependency-injection": "<4.4"
  6595. },
  6596. "require-dev": {
  6597. "doctrine/annotations": "^1.10.4",
  6598. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6599. "symfony/cache": "^4.4|^5.0",
  6600. "symfony/dependency-injection": "^4.4|^5.0",
  6601. "symfony/serializer": "^4.4|^5.0"
  6602. },
  6603. "suggest": {
  6604. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6605. "psr/cache-implementation": "To cache results",
  6606. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6607. "symfony/serializer": "To use Serializer metadata"
  6608. },
  6609. "type": "library",
  6610. "autoload": {
  6611. "psr-4": {
  6612. "Symfony\\Component\\PropertyInfo\\": ""
  6613. },
  6614. "exclude-from-classmap": [
  6615. "/Tests/"
  6616. ]
  6617. },
  6618. "notification-url": "https://packagist.org/downloads/",
  6619. "license": [
  6620. "MIT"
  6621. ],
  6622. "authors": [
  6623. {
  6624. "name": "Kévin Dunglas",
  6625. "email": "dunglas@gmail.com"
  6626. },
  6627. {
  6628. "name": "Symfony Community",
  6629. "homepage": "https://symfony.com/contributors"
  6630. }
  6631. ],
  6632. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6633. "homepage": "https://symfony.com",
  6634. "keywords": [
  6635. "doctrine",
  6636. "phpdoc",
  6637. "property",
  6638. "symfony",
  6639. "type",
  6640. "validator"
  6641. ],
  6642. "support": {
  6643. "source": "https://github.com/symfony/property-info/tree/v5.1.11"
  6644. },
  6645. "funding": [
  6646. {
  6647. "url": "https://symfony.com/sponsor",
  6648. "type": "custom"
  6649. },
  6650. {
  6651. "url": "https://github.com/fabpot",
  6652. "type": "github"
  6653. },
  6654. {
  6655. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6656. "type": "tidelift"
  6657. }
  6658. ],
  6659. "time": "2021-01-27T10:01:46+00:00"
  6660. },
  6661. {
  6662. "name": "symfony/proxy-manager-bridge",
  6663. "version": "v5.1.11",
  6664. "source": {
  6665. "type": "git",
  6666. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  6667. "reference": "fd6bb40190b1719abbe831be09adf38e0744d5f5"
  6668. },
  6669. "dist": {
  6670. "type": "zip",
  6671. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/fd6bb40190b1719abbe831be09adf38e0744d5f5",
  6672. "reference": "fd6bb40190b1719abbe831be09adf38e0744d5f5",
  6673. "shasum": ""
  6674. },
  6675. "require": {
  6676. "composer/package-versions-deprecated": "^1.8",
  6677. "friendsofphp/proxy-manager-lts": "^1.0.2",
  6678. "php": ">=7.2.5",
  6679. "symfony/dependency-injection": "^5.0"
  6680. },
  6681. "require-dev": {
  6682. "symfony/config": "^4.4|^5.0"
  6683. },
  6684. "type": "symfony-bridge",
  6685. "autoload": {
  6686. "psr-4": {
  6687. "Symfony\\Bridge\\ProxyManager\\": ""
  6688. },
  6689. "exclude-from-classmap": [
  6690. "/Tests/"
  6691. ]
  6692. },
  6693. "notification-url": "https://packagist.org/downloads/",
  6694. "license": [
  6695. "MIT"
  6696. ],
  6697. "authors": [
  6698. {
  6699. "name": "Fabien Potencier",
  6700. "email": "fabien@symfony.com"
  6701. },
  6702. {
  6703. "name": "Symfony Community",
  6704. "homepage": "https://symfony.com/contributors"
  6705. }
  6706. ],
  6707. "description": "Provides integration for ProxyManager with various Symfony components",
  6708. "homepage": "https://symfony.com",
  6709. "support": {
  6710. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v5.1.11"
  6711. },
  6712. "funding": [
  6713. {
  6714. "url": "https://symfony.com/sponsor",
  6715. "type": "custom"
  6716. },
  6717. {
  6718. "url": "https://github.com/fabpot",
  6719. "type": "github"
  6720. },
  6721. {
  6722. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6723. "type": "tidelift"
  6724. }
  6725. ],
  6726. "time": "2021-01-27T10:01:46+00:00"
  6727. },
  6728. {
  6729. "name": "symfony/redis-messenger",
  6730. "version": "v5.1.11",
  6731. "source": {
  6732. "type": "git",
  6733. "url": "https://github.com/symfony/redis-messenger.git",
  6734. "reference": "dac2c879ac2225edd6abb5ced391b7e60d44f810"
  6735. },
  6736. "dist": {
  6737. "type": "zip",
  6738. "url": "https://api.github.com/repos/symfony/redis-messenger/zipball/dac2c879ac2225edd6abb5ced391b7e60d44f810",
  6739. "reference": "dac2c879ac2225edd6abb5ced391b7e60d44f810",
  6740. "shasum": ""
  6741. },
  6742. "require": {
  6743. "php": ">=7.2.5",
  6744. "symfony/deprecation-contracts": "^2.1",
  6745. "symfony/messenger": "^5.1"
  6746. },
  6747. "require-dev": {
  6748. "symfony/property-access": "^4.4|^5.0",
  6749. "symfony/serializer": "^4.4|^5.0"
  6750. },
  6751. "type": "symfony-bridge",
  6752. "autoload": {
  6753. "psr-4": {
  6754. "Symfony\\Component\\Messenger\\Bridge\\Redis\\": ""
  6755. },
  6756. "exclude-from-classmap": [
  6757. "/Tests/"
  6758. ]
  6759. },
  6760. "notification-url": "https://packagist.org/downloads/",
  6761. "license": [
  6762. "MIT"
  6763. ],
  6764. "authors": [
  6765. {
  6766. "name": "Fabien Potencier",
  6767. "email": "fabien@symfony.com"
  6768. },
  6769. {
  6770. "name": "Symfony Community",
  6771. "homepage": "https://symfony.com/contributors"
  6772. }
  6773. ],
  6774. "description": "Symfony Redis extension Messenger Bridge",
  6775. "homepage": "https://symfony.com",
  6776. "support": {
  6777. "source": "https://github.com/symfony/redis-messenger/tree/v5.1.11"
  6778. },
  6779. "funding": [
  6780. {
  6781. "url": "https://symfony.com/sponsor",
  6782. "type": "custom"
  6783. },
  6784. {
  6785. "url": "https://github.com/fabpot",
  6786. "type": "github"
  6787. },
  6788. {
  6789. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6790. "type": "tidelift"
  6791. }
  6792. ],
  6793. "time": "2021-01-27T11:17:55+00:00"
  6794. },
  6795. {
  6796. "name": "symfony/routing",
  6797. "version": "v5.1.11",
  6798. "source": {
  6799. "type": "git",
  6800. "url": "https://github.com/symfony/routing.git",
  6801. "reference": "e7f71f5da6af8b238f2257670fd6aa4ae6263826"
  6802. },
  6803. "dist": {
  6804. "type": "zip",
  6805. "url": "https://api.github.com/repos/symfony/routing/zipball/e7f71f5da6af8b238f2257670fd6aa4ae6263826",
  6806. "reference": "e7f71f5da6af8b238f2257670fd6aa4ae6263826",
  6807. "shasum": ""
  6808. },
  6809. "require": {
  6810. "php": ">=7.2.5",
  6811. "symfony/deprecation-contracts": "^2.1",
  6812. "symfony/polyfill-php80": "^1.15"
  6813. },
  6814. "conflict": {
  6815. "symfony/config": "<5.0",
  6816. "symfony/dependency-injection": "<4.4",
  6817. "symfony/yaml": "<4.4"
  6818. },
  6819. "require-dev": {
  6820. "doctrine/annotations": "^1.10.4",
  6821. "psr/log": "~1.0",
  6822. "symfony/config": "^5.0",
  6823. "symfony/dependency-injection": "^4.4|^5.0",
  6824. "symfony/expression-language": "^4.4|^5.0",
  6825. "symfony/http-foundation": "^4.4|^5.0",
  6826. "symfony/yaml": "^4.4|^5.0"
  6827. },
  6828. "suggest": {
  6829. "doctrine/annotations": "For using the annotation loader",
  6830. "symfony/config": "For using the all-in-one router or any loader",
  6831. "symfony/expression-language": "For using expression matching",
  6832. "symfony/http-foundation": "For using a Symfony Request object",
  6833. "symfony/yaml": "For using the YAML loader"
  6834. },
  6835. "type": "library",
  6836. "autoload": {
  6837. "psr-4": {
  6838. "Symfony\\Component\\Routing\\": ""
  6839. },
  6840. "exclude-from-classmap": [
  6841. "/Tests/"
  6842. ]
  6843. },
  6844. "notification-url": "https://packagist.org/downloads/",
  6845. "license": [
  6846. "MIT"
  6847. ],
  6848. "authors": [
  6849. {
  6850. "name": "Fabien Potencier",
  6851. "email": "fabien@symfony.com"
  6852. },
  6853. {
  6854. "name": "Symfony Community",
  6855. "homepage": "https://symfony.com/contributors"
  6856. }
  6857. ],
  6858. "description": "Maps an HTTP request to a set of configuration variables",
  6859. "homepage": "https://symfony.com",
  6860. "keywords": [
  6861. "router",
  6862. "routing",
  6863. "uri",
  6864. "url"
  6865. ],
  6866. "support": {
  6867. "source": "https://github.com/symfony/routing/tree/v5.1.11"
  6868. },
  6869. "funding": [
  6870. {
  6871. "url": "https://symfony.com/sponsor",
  6872. "type": "custom"
  6873. },
  6874. {
  6875. "url": "https://github.com/fabpot",
  6876. "type": "github"
  6877. },
  6878. {
  6879. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6880. "type": "tidelift"
  6881. }
  6882. ],
  6883. "time": "2021-01-27T10:01:46+00:00"
  6884. },
  6885. {
  6886. "name": "symfony/security-bundle",
  6887. "version": "v5.1.11",
  6888. "source": {
  6889. "type": "git",
  6890. "url": "https://github.com/symfony/security-bundle.git",
  6891. "reference": "911f6b515d515c12a4aea749b6ac688050b6a85c"
  6892. },
  6893. "dist": {
  6894. "type": "zip",
  6895. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/911f6b515d515c12a4aea749b6ac688050b6a85c",
  6896. "reference": "911f6b515d515c12a4aea749b6ac688050b6a85c",
  6897. "shasum": ""
  6898. },
  6899. "require": {
  6900. "ext-xml": "*",
  6901. "php": ">=7.2.5",
  6902. "symfony/config": "^4.4|^5.0",
  6903. "symfony/dependency-injection": "^5.1",
  6904. "symfony/deprecation-contracts": "^2.1",
  6905. "symfony/event-dispatcher": "^5.1",
  6906. "symfony/http-kernel": "^5.0",
  6907. "symfony/polyfill-php80": "^1.15",
  6908. "symfony/security-core": "^5.1",
  6909. "symfony/security-csrf": "^4.4|^5.0",
  6910. "symfony/security-guard": "^5.1",
  6911. "symfony/security-http": "^5.1,>=5.1.2"
  6912. },
  6913. "conflict": {
  6914. "symfony/browser-kit": "<4.4",
  6915. "symfony/console": "<4.4",
  6916. "symfony/framework-bundle": "<4.4",
  6917. "symfony/ldap": "<4.4",
  6918. "symfony/twig-bundle": "<4.4"
  6919. },
  6920. "require-dev": {
  6921. "doctrine/doctrine-bundle": "^2.0",
  6922. "symfony/asset": "^4.4|^5.0",
  6923. "symfony/browser-kit": "^4.4|^5.0",
  6924. "symfony/console": "^4.4|^5.0",
  6925. "symfony/css-selector": "^4.4|^5.0",
  6926. "symfony/dom-crawler": "^4.4|^5.0",
  6927. "symfony/expression-language": "^4.4|^5.0",
  6928. "symfony/form": "^4.4|^5.0",
  6929. "symfony/framework-bundle": "^4.4|^5.0",
  6930. "symfony/process": "^4.4|^5.0",
  6931. "symfony/serializer": "^4.4|^5.0",
  6932. "symfony/translation": "^4.4|^5.0",
  6933. "symfony/twig-bridge": "^4.4|^5.0",
  6934. "symfony/twig-bundle": "^4.4|^5.0",
  6935. "symfony/validator": "^4.4|^5.0",
  6936. "symfony/yaml": "^4.4|^5.0",
  6937. "twig/twig": "^2.13|^3.0.4"
  6938. },
  6939. "type": "symfony-bundle",
  6940. "autoload": {
  6941. "psr-4": {
  6942. "Symfony\\Bundle\\SecurityBundle\\": ""
  6943. },
  6944. "exclude-from-classmap": [
  6945. "/Tests/"
  6946. ]
  6947. },
  6948. "notification-url": "https://packagist.org/downloads/",
  6949. "license": [
  6950. "MIT"
  6951. ],
  6952. "authors": [
  6953. {
  6954. "name": "Fabien Potencier",
  6955. "email": "fabien@symfony.com"
  6956. },
  6957. {
  6958. "name": "Symfony Community",
  6959. "homepage": "https://symfony.com/contributors"
  6960. }
  6961. ],
  6962. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6963. "homepage": "https://symfony.com",
  6964. "support": {
  6965. "source": "https://github.com/symfony/security-bundle/tree/v5.1.11"
  6966. },
  6967. "funding": [
  6968. {
  6969. "url": "https://symfony.com/sponsor",
  6970. "type": "custom"
  6971. },
  6972. {
  6973. "url": "https://github.com/fabpot",
  6974. "type": "github"
  6975. },
  6976. {
  6977. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6978. "type": "tidelift"
  6979. }
  6980. ],
  6981. "time": "2021-01-27T10:01:46+00:00"
  6982. },
  6983. {
  6984. "name": "symfony/security-core",
  6985. "version": "v5.1.11",
  6986. "source": {
  6987. "type": "git",
  6988. "url": "https://github.com/symfony/security-core.git",
  6989. "reference": "33a6d376ef0502f18bc498a076590372685f6e89"
  6990. },
  6991. "dist": {
  6992. "type": "zip",
  6993. "url": "https://api.github.com/repos/symfony/security-core/zipball/33a6d376ef0502f18bc498a076590372685f6e89",
  6994. "reference": "33a6d376ef0502f18bc498a076590372685f6e89",
  6995. "shasum": ""
  6996. },
  6997. "require": {
  6998. "php": ">=7.2.5",
  6999. "symfony/deprecation-contracts": "^2.1",
  7000. "symfony/event-dispatcher-contracts": "^1.1|^2",
  7001. "symfony/polyfill-php80": "^1.15",
  7002. "symfony/service-contracts": "^1.1.6|^2"
  7003. },
  7004. "conflict": {
  7005. "symfony/event-dispatcher": "<4.4",
  7006. "symfony/ldap": "<4.4",
  7007. "symfony/security-guard": "<4.4"
  7008. },
  7009. "require-dev": {
  7010. "psr/container": "^1.0",
  7011. "psr/log": "~1.0",
  7012. "symfony/event-dispatcher": "^4.4|^5.0",
  7013. "symfony/expression-language": "^4.4|^5.0",
  7014. "symfony/http-foundation": "^4.4|^5.0",
  7015. "symfony/ldap": "^4.4|^5.0",
  7016. "symfony/translation": "^4.4|^5.0",
  7017. "symfony/validator": "^4.4|^5.0"
  7018. },
  7019. "suggest": {
  7020. "psr/container-implementation": "To instantiate the Security class",
  7021. "symfony/event-dispatcher": "",
  7022. "symfony/expression-language": "For using the expression voter",
  7023. "symfony/http-foundation": "",
  7024. "symfony/ldap": "For using LDAP integration",
  7025. "symfony/validator": "For using the user password constraint"
  7026. },
  7027. "type": "library",
  7028. "autoload": {
  7029. "psr-4": {
  7030. "Symfony\\Component\\Security\\Core\\": ""
  7031. },
  7032. "exclude-from-classmap": [
  7033. "/Tests/"
  7034. ]
  7035. },
  7036. "notification-url": "https://packagist.org/downloads/",
  7037. "license": [
  7038. "MIT"
  7039. ],
  7040. "authors": [
  7041. {
  7042. "name": "Fabien Potencier",
  7043. "email": "fabien@symfony.com"
  7044. },
  7045. {
  7046. "name": "Symfony Community",
  7047. "homepage": "https://symfony.com/contributors"
  7048. }
  7049. ],
  7050. "description": "Symfony Security Component - Core Library",
  7051. "homepage": "https://symfony.com",
  7052. "support": {
  7053. "source": "https://github.com/symfony/security-core/tree/v5.1.11"
  7054. },
  7055. "funding": [
  7056. {
  7057. "url": "https://symfony.com/sponsor",
  7058. "type": "custom"
  7059. },
  7060. {
  7061. "url": "https://github.com/fabpot",
  7062. "type": "github"
  7063. },
  7064. {
  7065. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7066. "type": "tidelift"
  7067. }
  7068. ],
  7069. "time": "2021-01-27T12:50:07+00:00"
  7070. },
  7071. {
  7072. "name": "symfony/security-csrf",
  7073. "version": "v5.1.11",
  7074. "source": {
  7075. "type": "git",
  7076. "url": "https://github.com/symfony/security-csrf.git",
  7077. "reference": "e22ef49d5d3773014942f3dfe301b168a4a833dc"
  7078. },
  7079. "dist": {
  7080. "type": "zip",
  7081. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/e22ef49d5d3773014942f3dfe301b168a4a833dc",
  7082. "reference": "e22ef49d5d3773014942f3dfe301b168a4a833dc",
  7083. "shasum": ""
  7084. },
  7085. "require": {
  7086. "php": ">=7.2.5",
  7087. "symfony/security-core": "^4.4|^5.0"
  7088. },
  7089. "conflict": {
  7090. "symfony/http-foundation": "<4.4"
  7091. },
  7092. "require-dev": {
  7093. "symfony/http-foundation": "^4.4|^5.0"
  7094. },
  7095. "suggest": {
  7096. "symfony/http-foundation": "For using the class SessionTokenStorage."
  7097. },
  7098. "type": "library",
  7099. "autoload": {
  7100. "psr-4": {
  7101. "Symfony\\Component\\Security\\Csrf\\": ""
  7102. },
  7103. "exclude-from-classmap": [
  7104. "/Tests/"
  7105. ]
  7106. },
  7107. "notification-url": "https://packagist.org/downloads/",
  7108. "license": [
  7109. "MIT"
  7110. ],
  7111. "authors": [
  7112. {
  7113. "name": "Fabien Potencier",
  7114. "email": "fabien@symfony.com"
  7115. },
  7116. {
  7117. "name": "Symfony Community",
  7118. "homepage": "https://symfony.com/contributors"
  7119. }
  7120. ],
  7121. "description": "Symfony Security Component - CSRF Library",
  7122. "homepage": "https://symfony.com",
  7123. "support": {
  7124. "source": "https://github.com/symfony/security-csrf/tree/v5.1.11"
  7125. },
  7126. "funding": [
  7127. {
  7128. "url": "https://symfony.com/sponsor",
  7129. "type": "custom"
  7130. },
  7131. {
  7132. "url": "https://github.com/fabpot",
  7133. "type": "github"
  7134. },
  7135. {
  7136. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7137. "type": "tidelift"
  7138. }
  7139. ],
  7140. "time": "2021-01-27T10:01:46+00:00"
  7141. },
  7142. {
  7143. "name": "symfony/security-guard",
  7144. "version": "v5.1.11",
  7145. "source": {
  7146. "type": "git",
  7147. "url": "https://github.com/symfony/security-guard.git",
  7148. "reference": "23e2b838d255f2695a143cf4ad138c58c4dc2918"
  7149. },
  7150. "dist": {
  7151. "type": "zip",
  7152. "url": "https://api.github.com/repos/symfony/security-guard/zipball/23e2b838d255f2695a143cf4ad138c58c4dc2918",
  7153. "reference": "23e2b838d255f2695a143cf4ad138c58c4dc2918",
  7154. "shasum": ""
  7155. },
  7156. "require": {
  7157. "php": ">=7.2.5",
  7158. "symfony/polyfill-php80": "^1.15",
  7159. "symfony/security-core": "^5.0",
  7160. "symfony/security-http": "^4.4.1|^5.0.1"
  7161. },
  7162. "require-dev": {
  7163. "psr/log": "~1.0"
  7164. },
  7165. "type": "library",
  7166. "autoload": {
  7167. "psr-4": {
  7168. "Symfony\\Component\\Security\\Guard\\": ""
  7169. },
  7170. "exclude-from-classmap": [
  7171. "/Tests/"
  7172. ]
  7173. },
  7174. "notification-url": "https://packagist.org/downloads/",
  7175. "license": [
  7176. "MIT"
  7177. ],
  7178. "authors": [
  7179. {
  7180. "name": "Fabien Potencier",
  7181. "email": "fabien@symfony.com"
  7182. },
  7183. {
  7184. "name": "Symfony Community",
  7185. "homepage": "https://symfony.com/contributors"
  7186. }
  7187. ],
  7188. "description": "Symfony Security Component - Guard",
  7189. "homepage": "https://symfony.com",
  7190. "support": {
  7191. "source": "https://github.com/symfony/security-guard/tree/v5.1.11"
  7192. },
  7193. "funding": [
  7194. {
  7195. "url": "https://symfony.com/sponsor",
  7196. "type": "custom"
  7197. },
  7198. {
  7199. "url": "https://github.com/fabpot",
  7200. "type": "github"
  7201. },
  7202. {
  7203. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7204. "type": "tidelift"
  7205. }
  7206. ],
  7207. "time": "2021-01-27T10:01:46+00:00"
  7208. },
  7209. {
  7210. "name": "symfony/security-http",
  7211. "version": "v5.1.11",
  7212. "source": {
  7213. "type": "git",
  7214. "url": "https://github.com/symfony/security-http.git",
  7215. "reference": "c3a869cc01640d14ebbbfd03046f494103ffb2fa"
  7216. },
  7217. "dist": {
  7218. "type": "zip",
  7219. "url": "https://api.github.com/repos/symfony/security-http/zipball/c3a869cc01640d14ebbbfd03046f494103ffb2fa",
  7220. "reference": "c3a869cc01640d14ebbbfd03046f494103ffb2fa",
  7221. "shasum": ""
  7222. },
  7223. "require": {
  7224. "php": ">=7.2.5",
  7225. "symfony/deprecation-contracts": "^2.1",
  7226. "symfony/http-foundation": "^4.4.7|^5.0.7",
  7227. "symfony/http-kernel": "^4.4|^5.0",
  7228. "symfony/polyfill-php80": "^1.15",
  7229. "symfony/property-access": "^4.4|^5.0",
  7230. "symfony/security-core": "^5.1"
  7231. },
  7232. "conflict": {
  7233. "symfony/event-dispatcher": "<4.3",
  7234. "symfony/security-csrf": "<4.4"
  7235. },
  7236. "require-dev": {
  7237. "psr/log": "~1.0",
  7238. "symfony/routing": "^4.4|^5.0",
  7239. "symfony/security-csrf": "^4.4|^5.0"
  7240. },
  7241. "suggest": {
  7242. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  7243. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  7244. },
  7245. "type": "library",
  7246. "autoload": {
  7247. "psr-4": {
  7248. "Symfony\\Component\\Security\\Http\\": ""
  7249. },
  7250. "exclude-from-classmap": [
  7251. "/Tests/"
  7252. ]
  7253. },
  7254. "notification-url": "https://packagist.org/downloads/",
  7255. "license": [
  7256. "MIT"
  7257. ],
  7258. "authors": [
  7259. {
  7260. "name": "Fabien Potencier",
  7261. "email": "fabien@symfony.com"
  7262. },
  7263. {
  7264. "name": "Symfony Community",
  7265. "homepage": "https://symfony.com/contributors"
  7266. }
  7267. ],
  7268. "description": "Symfony Security Component - HTTP Integration",
  7269. "homepage": "https://symfony.com",
  7270. "support": {
  7271. "source": "https://github.com/symfony/security-http/tree/v5.1.11"
  7272. },
  7273. "funding": [
  7274. {
  7275. "url": "https://symfony.com/sponsor",
  7276. "type": "custom"
  7277. },
  7278. {
  7279. "url": "https://github.com/fabpot",
  7280. "type": "github"
  7281. },
  7282. {
  7283. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7284. "type": "tidelift"
  7285. }
  7286. ],
  7287. "time": "2021-01-27T11:17:55+00:00"
  7288. },
  7289. {
  7290. "name": "symfony/serializer",
  7291. "version": "v5.1.11",
  7292. "source": {
  7293. "type": "git",
  7294. "url": "https://github.com/symfony/serializer.git",
  7295. "reference": "76404a1e1a4eaefe94ce12740af1884149d47d96"
  7296. },
  7297. "dist": {
  7298. "type": "zip",
  7299. "url": "https://api.github.com/repos/symfony/serializer/zipball/76404a1e1a4eaefe94ce12740af1884149d47d96",
  7300. "reference": "76404a1e1a4eaefe94ce12740af1884149d47d96",
  7301. "shasum": ""
  7302. },
  7303. "require": {
  7304. "php": ">=7.2.5",
  7305. "symfony/polyfill-ctype": "~1.8",
  7306. "symfony/polyfill-php80": "^1.15"
  7307. },
  7308. "conflict": {
  7309. "phpdocumentor/reflection-docblock": "<3.2.2",
  7310. "phpdocumentor/type-resolver": "<1.4.0",
  7311. "symfony/dependency-injection": "<4.4",
  7312. "symfony/property-access": "<4.4",
  7313. "symfony/property-info": "<4.4",
  7314. "symfony/yaml": "<4.4"
  7315. },
  7316. "require-dev": {
  7317. "doctrine/annotations": "^1.10.4",
  7318. "doctrine/cache": "~1.0",
  7319. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7320. "symfony/cache": "^4.4|^5.0",
  7321. "symfony/config": "^4.4|^5.0",
  7322. "symfony/dependency-injection": "^4.4|^5.0",
  7323. "symfony/error-handler": "^4.4|^5.0",
  7324. "symfony/http-foundation": "^4.4|^5.0",
  7325. "symfony/mime": "^4.4|^5.0",
  7326. "symfony/property-access": "^4.4.9|^5.0.9",
  7327. "symfony/property-info": "^4.4|^5.0",
  7328. "symfony/validator": "^4.4|^5.0",
  7329. "symfony/yaml": "^4.4|^5.0"
  7330. },
  7331. "suggest": {
  7332. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  7333. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  7334. "psr/cache-implementation": "For using the metadata cache.",
  7335. "symfony/config": "For using the XML mapping loader.",
  7336. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  7337. "symfony/property-access": "For using the ObjectNormalizer.",
  7338. "symfony/property-info": "To deserialize relations.",
  7339. "symfony/yaml": "For using the default YAML mapping loader."
  7340. },
  7341. "type": "library",
  7342. "autoload": {
  7343. "psr-4": {
  7344. "Symfony\\Component\\Serializer\\": ""
  7345. },
  7346. "exclude-from-classmap": [
  7347. "/Tests/"
  7348. ]
  7349. },
  7350. "notification-url": "https://packagist.org/downloads/",
  7351. "license": [
  7352. "MIT"
  7353. ],
  7354. "authors": [
  7355. {
  7356. "name": "Fabien Potencier",
  7357. "email": "fabien@symfony.com"
  7358. },
  7359. {
  7360. "name": "Symfony Community",
  7361. "homepage": "https://symfony.com/contributors"
  7362. }
  7363. ],
  7364. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7365. "homepage": "https://symfony.com",
  7366. "support": {
  7367. "source": "https://github.com/symfony/serializer/tree/v5.1.11"
  7368. },
  7369. "funding": [
  7370. {
  7371. "url": "https://symfony.com/sponsor",
  7372. "type": "custom"
  7373. },
  7374. {
  7375. "url": "https://github.com/fabpot",
  7376. "type": "github"
  7377. },
  7378. {
  7379. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7380. "type": "tidelift"
  7381. }
  7382. ],
  7383. "time": "2021-01-27T11:17:55+00:00"
  7384. },
  7385. {
  7386. "name": "symfony/serializer-pack",
  7387. "version": "v1.0.4",
  7388. "source": {
  7389. "type": "git",
  7390. "url": "https://github.com/symfony/serializer-pack.git",
  7391. "reference": "61173947057d5e1bf1c79e2a6ab6a8430be0602e"
  7392. },
  7393. "dist": {
  7394. "type": "zip",
  7395. "url": "https://api.github.com/repos/symfony/serializer-pack/zipball/61173947057d5e1bf1c79e2a6ab6a8430be0602e",
  7396. "reference": "61173947057d5e1bf1c79e2a6ab6a8430be0602e",
  7397. "shasum": ""
  7398. },
  7399. "require": {
  7400. "doctrine/annotations": "^1.0",
  7401. "phpdocumentor/reflection-docblock": "*",
  7402. "symfony/property-access": "*",
  7403. "symfony/property-info": "*",
  7404. "symfony/serializer": "*"
  7405. },
  7406. "type": "symfony-pack",
  7407. "notification-url": "https://packagist.org/downloads/",
  7408. "license": [
  7409. "MIT"
  7410. ],
  7411. "description": "A pack for the Symfony serializer",
  7412. "support": {
  7413. "issues": "https://github.com/symfony/serializer-pack/issues",
  7414. "source": "https://github.com/symfony/serializer-pack/tree/v1.0.4"
  7415. },
  7416. "funding": [
  7417. {
  7418. "url": "https://symfony.com/sponsor",
  7419. "type": "custom"
  7420. },
  7421. {
  7422. "url": "https://github.com/fabpot",
  7423. "type": "github"
  7424. },
  7425. {
  7426. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7427. "type": "tidelift"
  7428. }
  7429. ],
  7430. "time": "2020-10-19T08:52:16+00:00"
  7431. },
  7432. {
  7433. "name": "symfony/service-contracts",
  7434. "version": "v2.2.0",
  7435. "source": {
  7436. "type": "git",
  7437. "url": "https://github.com/symfony/service-contracts.git",
  7438. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  7439. },
  7440. "dist": {
  7441. "type": "zip",
  7442. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  7443. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  7444. "shasum": ""
  7445. },
  7446. "require": {
  7447. "php": ">=7.2.5",
  7448. "psr/container": "^1.0"
  7449. },
  7450. "suggest": {
  7451. "symfony/service-implementation": ""
  7452. },
  7453. "type": "library",
  7454. "extra": {
  7455. "branch-alias": {
  7456. "dev-master": "2.2-dev"
  7457. },
  7458. "thanks": {
  7459. "name": "symfony/contracts",
  7460. "url": "https://github.com/symfony/contracts"
  7461. }
  7462. },
  7463. "autoload": {
  7464. "psr-4": {
  7465. "Symfony\\Contracts\\Service\\": ""
  7466. }
  7467. },
  7468. "notification-url": "https://packagist.org/downloads/",
  7469. "license": [
  7470. "MIT"
  7471. ],
  7472. "authors": [
  7473. {
  7474. "name": "Nicolas Grekas",
  7475. "email": "p@tchwork.com"
  7476. },
  7477. {
  7478. "name": "Symfony Community",
  7479. "homepage": "https://symfony.com/contributors"
  7480. }
  7481. ],
  7482. "description": "Generic abstractions related to writing services",
  7483. "homepage": "https://symfony.com",
  7484. "keywords": [
  7485. "abstractions",
  7486. "contracts",
  7487. "decoupling",
  7488. "interfaces",
  7489. "interoperability",
  7490. "standards"
  7491. ],
  7492. "support": {
  7493. "source": "https://github.com/symfony/service-contracts/tree/master"
  7494. },
  7495. "funding": [
  7496. {
  7497. "url": "https://symfony.com/sponsor",
  7498. "type": "custom"
  7499. },
  7500. {
  7501. "url": "https://github.com/fabpot",
  7502. "type": "github"
  7503. },
  7504. {
  7505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7506. "type": "tidelift"
  7507. }
  7508. ],
  7509. "time": "2020-09-07T11:33:47+00:00"
  7510. },
  7511. {
  7512. "name": "symfony/stopwatch",
  7513. "version": "v5.1.11",
  7514. "source": {
  7515. "type": "git",
  7516. "url": "https://github.com/symfony/stopwatch.git",
  7517. "reference": "40e7945f2d0f72427eb71b54c26d93d08ef88793"
  7518. },
  7519. "dist": {
  7520. "type": "zip",
  7521. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/40e7945f2d0f72427eb71b54c26d93d08ef88793",
  7522. "reference": "40e7945f2d0f72427eb71b54c26d93d08ef88793",
  7523. "shasum": ""
  7524. },
  7525. "require": {
  7526. "php": ">=7.2.5",
  7527. "symfony/service-contracts": "^1.0|^2"
  7528. },
  7529. "type": "library",
  7530. "autoload": {
  7531. "psr-4": {
  7532. "Symfony\\Component\\Stopwatch\\": ""
  7533. },
  7534. "exclude-from-classmap": [
  7535. "/Tests/"
  7536. ]
  7537. },
  7538. "notification-url": "https://packagist.org/downloads/",
  7539. "license": [
  7540. "MIT"
  7541. ],
  7542. "authors": [
  7543. {
  7544. "name": "Fabien Potencier",
  7545. "email": "fabien@symfony.com"
  7546. },
  7547. {
  7548. "name": "Symfony Community",
  7549. "homepage": "https://symfony.com/contributors"
  7550. }
  7551. ],
  7552. "description": "Provides a way to profile code",
  7553. "homepage": "https://symfony.com",
  7554. "support": {
  7555. "source": "https://github.com/symfony/stopwatch/tree/v5.1.11"
  7556. },
  7557. "funding": [
  7558. {
  7559. "url": "https://symfony.com/sponsor",
  7560. "type": "custom"
  7561. },
  7562. {
  7563. "url": "https://github.com/fabpot",
  7564. "type": "github"
  7565. },
  7566. {
  7567. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7568. "type": "tidelift"
  7569. }
  7570. ],
  7571. "time": "2021-01-27T10:01:46+00:00"
  7572. },
  7573. {
  7574. "name": "symfony/string",
  7575. "version": "v5.1.11",
  7576. "source": {
  7577. "type": "git",
  7578. "url": "https://github.com/symfony/string.git",
  7579. "reference": "83bbb92d34881744b8021452a76532b28283dbfb"
  7580. },
  7581. "dist": {
  7582. "type": "zip",
  7583. "url": "https://api.github.com/repos/symfony/string/zipball/83bbb92d34881744b8021452a76532b28283dbfb",
  7584. "reference": "83bbb92d34881744b8021452a76532b28283dbfb",
  7585. "shasum": ""
  7586. },
  7587. "require": {
  7588. "php": ">=7.2.5",
  7589. "symfony/polyfill-ctype": "~1.8",
  7590. "symfony/polyfill-intl-grapheme": "~1.0",
  7591. "symfony/polyfill-intl-normalizer": "~1.0",
  7592. "symfony/polyfill-mbstring": "~1.0",
  7593. "symfony/polyfill-php80": "~1.15"
  7594. },
  7595. "require-dev": {
  7596. "symfony/error-handler": "^4.4|^5.0",
  7597. "symfony/http-client": "^4.4|^5.0",
  7598. "symfony/translation-contracts": "^1.1|^2",
  7599. "symfony/var-exporter": "^4.4|^5.0"
  7600. },
  7601. "type": "library",
  7602. "autoload": {
  7603. "psr-4": {
  7604. "Symfony\\Component\\String\\": ""
  7605. },
  7606. "files": [
  7607. "Resources/functions.php"
  7608. ],
  7609. "exclude-from-classmap": [
  7610. "/Tests/"
  7611. ]
  7612. },
  7613. "notification-url": "https://packagist.org/downloads/",
  7614. "license": [
  7615. "MIT"
  7616. ],
  7617. "authors": [
  7618. {
  7619. "name": "Nicolas Grekas",
  7620. "email": "p@tchwork.com"
  7621. },
  7622. {
  7623. "name": "Symfony Community",
  7624. "homepage": "https://symfony.com/contributors"
  7625. }
  7626. ],
  7627. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7628. "homepage": "https://symfony.com",
  7629. "keywords": [
  7630. "grapheme",
  7631. "i18n",
  7632. "string",
  7633. "unicode",
  7634. "utf-8",
  7635. "utf8"
  7636. ],
  7637. "support": {
  7638. "source": "https://github.com/symfony/string/tree/v5.1.11"
  7639. },
  7640. "funding": [
  7641. {
  7642. "url": "https://symfony.com/sponsor",
  7643. "type": "custom"
  7644. },
  7645. {
  7646. "url": "https://github.com/fabpot",
  7647. "type": "github"
  7648. },
  7649. {
  7650. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7651. "type": "tidelift"
  7652. }
  7653. ],
  7654. "time": "2021-01-25T14:41:58+00:00"
  7655. },
  7656. {
  7657. "name": "symfony/translation",
  7658. "version": "v5.1.11",
  7659. "source": {
  7660. "type": "git",
  7661. "url": "https://github.com/symfony/translation.git",
  7662. "reference": "b16d3e4b2d3f78fb2444aa8d19019f033e55ec56"
  7663. },
  7664. "dist": {
  7665. "type": "zip",
  7666. "url": "https://api.github.com/repos/symfony/translation/zipball/b16d3e4b2d3f78fb2444aa8d19019f033e55ec56",
  7667. "reference": "b16d3e4b2d3f78fb2444aa8d19019f033e55ec56",
  7668. "shasum": ""
  7669. },
  7670. "require": {
  7671. "php": ">=7.2.5",
  7672. "symfony/polyfill-mbstring": "~1.0",
  7673. "symfony/polyfill-php80": "^1.15",
  7674. "symfony/translation-contracts": "^2"
  7675. },
  7676. "conflict": {
  7677. "symfony/config": "<4.4",
  7678. "symfony/dependency-injection": "<5.0",
  7679. "symfony/http-kernel": "<5.0",
  7680. "symfony/twig-bundle": "<5.0",
  7681. "symfony/yaml": "<4.4"
  7682. },
  7683. "provide": {
  7684. "symfony/translation-implementation": "2.0"
  7685. },
  7686. "require-dev": {
  7687. "psr/log": "~1.0",
  7688. "symfony/config": "^4.4|^5.0",
  7689. "symfony/console": "^4.4|^5.0",
  7690. "symfony/dependency-injection": "^5.0",
  7691. "symfony/finder": "^4.4|^5.0",
  7692. "symfony/http-kernel": "^5.0",
  7693. "symfony/intl": "^4.4|^5.0",
  7694. "symfony/service-contracts": "^1.1.2|^2",
  7695. "symfony/yaml": "^4.4|^5.0"
  7696. },
  7697. "suggest": {
  7698. "psr/log-implementation": "To use logging capability in translator",
  7699. "symfony/config": "",
  7700. "symfony/yaml": ""
  7701. },
  7702. "type": "library",
  7703. "autoload": {
  7704. "psr-4": {
  7705. "Symfony\\Component\\Translation\\": ""
  7706. },
  7707. "exclude-from-classmap": [
  7708. "/Tests/"
  7709. ]
  7710. },
  7711. "notification-url": "https://packagist.org/downloads/",
  7712. "license": [
  7713. "MIT"
  7714. ],
  7715. "authors": [
  7716. {
  7717. "name": "Fabien Potencier",
  7718. "email": "fabien@symfony.com"
  7719. },
  7720. {
  7721. "name": "Symfony Community",
  7722. "homepage": "https://symfony.com/contributors"
  7723. }
  7724. ],
  7725. "description": "Provides tools to internationalize your application",
  7726. "homepage": "https://symfony.com",
  7727. "support": {
  7728. "source": "https://github.com/symfony/translation/tree/v5.1.11"
  7729. },
  7730. "funding": [
  7731. {
  7732. "url": "https://symfony.com/sponsor",
  7733. "type": "custom"
  7734. },
  7735. {
  7736. "url": "https://github.com/fabpot",
  7737. "type": "github"
  7738. },
  7739. {
  7740. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7741. "type": "tidelift"
  7742. }
  7743. ],
  7744. "time": "2021-01-27T10:01:46+00:00"
  7745. },
  7746. {
  7747. "name": "symfony/translation-contracts",
  7748. "version": "v2.3.0",
  7749. "source": {
  7750. "type": "git",
  7751. "url": "https://github.com/symfony/translation-contracts.git",
  7752. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  7753. },
  7754. "dist": {
  7755. "type": "zip",
  7756. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  7757. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  7758. "shasum": ""
  7759. },
  7760. "require": {
  7761. "php": ">=7.2.5"
  7762. },
  7763. "suggest": {
  7764. "symfony/translation-implementation": ""
  7765. },
  7766. "type": "library",
  7767. "extra": {
  7768. "branch-alias": {
  7769. "dev-master": "2.3-dev"
  7770. },
  7771. "thanks": {
  7772. "name": "symfony/contracts",
  7773. "url": "https://github.com/symfony/contracts"
  7774. }
  7775. },
  7776. "autoload": {
  7777. "psr-4": {
  7778. "Symfony\\Contracts\\Translation\\": ""
  7779. }
  7780. },
  7781. "notification-url": "https://packagist.org/downloads/",
  7782. "license": [
  7783. "MIT"
  7784. ],
  7785. "authors": [
  7786. {
  7787. "name": "Nicolas Grekas",
  7788. "email": "p@tchwork.com"
  7789. },
  7790. {
  7791. "name": "Symfony Community",
  7792. "homepage": "https://symfony.com/contributors"
  7793. }
  7794. ],
  7795. "description": "Generic abstractions related to translation",
  7796. "homepage": "https://symfony.com",
  7797. "keywords": [
  7798. "abstractions",
  7799. "contracts",
  7800. "decoupling",
  7801. "interfaces",
  7802. "interoperability",
  7803. "standards"
  7804. ],
  7805. "support": {
  7806. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  7807. },
  7808. "funding": [
  7809. {
  7810. "url": "https://symfony.com/sponsor",
  7811. "type": "custom"
  7812. },
  7813. {
  7814. "url": "https://github.com/fabpot",
  7815. "type": "github"
  7816. },
  7817. {
  7818. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7819. "type": "tidelift"
  7820. }
  7821. ],
  7822. "time": "2020-09-28T13:05:58+00:00"
  7823. },
  7824. {
  7825. "name": "symfony/twig-bridge",
  7826. "version": "v5.1.11",
  7827. "source": {
  7828. "type": "git",
  7829. "url": "https://github.com/symfony/twig-bridge.git",
  7830. "reference": "4421afc6e1a0ef5e7cd9b32359617b98069d1666"
  7831. },
  7832. "dist": {
  7833. "type": "zip",
  7834. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/4421afc6e1a0ef5e7cd9b32359617b98069d1666",
  7835. "reference": "4421afc6e1a0ef5e7cd9b32359617b98069d1666",
  7836. "shasum": ""
  7837. },
  7838. "require": {
  7839. "php": ">=7.2.5",
  7840. "symfony/polyfill-php80": "^1.15",
  7841. "symfony/translation-contracts": "^1.1|^2",
  7842. "twig/twig": "^2.13|^3.0.4"
  7843. },
  7844. "conflict": {
  7845. "symfony/console": "<4.4",
  7846. "symfony/form": "<5.1",
  7847. "symfony/http-foundation": "<4.4",
  7848. "symfony/http-kernel": "<4.4",
  7849. "symfony/translation": "<5.0",
  7850. "symfony/workflow": "<4.4"
  7851. },
  7852. "require-dev": {
  7853. "egulias/email-validator": "^2.1.10",
  7854. "symfony/asset": "^4.4|^5.0",
  7855. "symfony/console": "^4.4|^5.0",
  7856. "symfony/dependency-injection": "^4.4|^5.0",
  7857. "symfony/expression-language": "^4.4|^5.0",
  7858. "symfony/finder": "^4.4|^5.0",
  7859. "symfony/form": "^5.1.9",
  7860. "symfony/http-foundation": "^4.4|^5.0",
  7861. "symfony/http-kernel": "^4.4|^5.0",
  7862. "symfony/mime": "^4.4|^5.0",
  7863. "symfony/polyfill-intl-icu": "~1.0",
  7864. "symfony/routing": "^4.4|^5.0",
  7865. "symfony/security-acl": "^2.8|^3.0",
  7866. "symfony/security-core": "^4.4|^5.0",
  7867. "symfony/security-csrf": "^4.4|^5.0",
  7868. "symfony/security-http": "^4.4|^5.0",
  7869. "symfony/stopwatch": "^4.4|^5.0",
  7870. "symfony/translation": "^5.0",
  7871. "symfony/web-link": "^4.4|^5.0",
  7872. "symfony/workflow": "^4.4|^5.0",
  7873. "symfony/yaml": "^4.4|^5.0",
  7874. "twig/cssinliner-extra": "^2.12",
  7875. "twig/inky-extra": "^2.12",
  7876. "twig/markdown-extra": "^2.12"
  7877. },
  7878. "suggest": {
  7879. "symfony/asset": "For using the AssetExtension",
  7880. "symfony/expression-language": "For using the ExpressionExtension",
  7881. "symfony/finder": "",
  7882. "symfony/form": "For using the FormExtension",
  7883. "symfony/http-kernel": "For using the HttpKernelExtension",
  7884. "symfony/routing": "For using the RoutingExtension",
  7885. "symfony/security-core": "For using the SecurityExtension",
  7886. "symfony/security-csrf": "For using the CsrfExtension",
  7887. "symfony/security-http": "For using the LogoutUrlExtension",
  7888. "symfony/stopwatch": "For using the StopwatchExtension",
  7889. "symfony/translation": "For using the TranslationExtension",
  7890. "symfony/var-dumper": "For using the DumpExtension",
  7891. "symfony/web-link": "For using the WebLinkExtension",
  7892. "symfony/yaml": "For using the YamlExtension"
  7893. },
  7894. "type": "symfony-bridge",
  7895. "autoload": {
  7896. "psr-4": {
  7897. "Symfony\\Bridge\\Twig\\": ""
  7898. },
  7899. "exclude-from-classmap": [
  7900. "/Tests/"
  7901. ]
  7902. },
  7903. "notification-url": "https://packagist.org/downloads/",
  7904. "license": [
  7905. "MIT"
  7906. ],
  7907. "authors": [
  7908. {
  7909. "name": "Fabien Potencier",
  7910. "email": "fabien@symfony.com"
  7911. },
  7912. {
  7913. "name": "Symfony Community",
  7914. "homepage": "https://symfony.com/contributors"
  7915. }
  7916. ],
  7917. "description": "Provides integration for Twig with various Symfony components",
  7918. "homepage": "https://symfony.com",
  7919. "support": {
  7920. "source": "https://github.com/symfony/twig-bridge/tree/v5.1.11"
  7921. },
  7922. "funding": [
  7923. {
  7924. "url": "https://symfony.com/sponsor",
  7925. "type": "custom"
  7926. },
  7927. {
  7928. "url": "https://github.com/fabpot",
  7929. "type": "github"
  7930. },
  7931. {
  7932. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7933. "type": "tidelift"
  7934. }
  7935. ],
  7936. "time": "2021-01-27T10:01:46+00:00"
  7937. },
  7938. {
  7939. "name": "symfony/twig-bundle",
  7940. "version": "v5.1.11",
  7941. "source": {
  7942. "type": "git",
  7943. "url": "https://github.com/symfony/twig-bundle.git",
  7944. "reference": "88e5d5232f11f6db6610d5f4c2380f26e02ce92e"
  7945. },
  7946. "dist": {
  7947. "type": "zip",
  7948. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/88e5d5232f11f6db6610d5f4c2380f26e02ce92e",
  7949. "reference": "88e5d5232f11f6db6610d5f4c2380f26e02ce92e",
  7950. "shasum": ""
  7951. },
  7952. "require": {
  7953. "php": ">=7.2.5",
  7954. "symfony/config": "^4.4|^5.0",
  7955. "symfony/http-foundation": "^4.4|^5.0",
  7956. "symfony/http-kernel": "^5.0",
  7957. "symfony/polyfill-ctype": "~1.8",
  7958. "symfony/twig-bridge": "^5.0",
  7959. "twig/twig": "^2.13|^3.0.4"
  7960. },
  7961. "conflict": {
  7962. "symfony/dependency-injection": "<4.4",
  7963. "symfony/framework-bundle": "<5.0",
  7964. "symfony/translation": "<5.0"
  7965. },
  7966. "require-dev": {
  7967. "doctrine/annotations": "^1.10.4",
  7968. "doctrine/cache": "~1.0",
  7969. "symfony/asset": "^4.4|^5.0",
  7970. "symfony/dependency-injection": "^4.4|^5.0",
  7971. "symfony/expression-language": "^4.4|^5.0",
  7972. "symfony/finder": "^4.4|^5.0",
  7973. "symfony/form": "^4.4|^5.0",
  7974. "symfony/framework-bundle": "^5.0",
  7975. "symfony/routing": "^4.4|^5.0",
  7976. "symfony/stopwatch": "^4.4|^5.0",
  7977. "symfony/translation": "^5.0",
  7978. "symfony/web-link": "^4.4|^5.0",
  7979. "symfony/yaml": "^4.4|^5.0"
  7980. },
  7981. "type": "symfony-bundle",
  7982. "autoload": {
  7983. "psr-4": {
  7984. "Symfony\\Bundle\\TwigBundle\\": ""
  7985. },
  7986. "exclude-from-classmap": [
  7987. "/Tests/"
  7988. ]
  7989. },
  7990. "notification-url": "https://packagist.org/downloads/",
  7991. "license": [
  7992. "MIT"
  7993. ],
  7994. "authors": [
  7995. {
  7996. "name": "Fabien Potencier",
  7997. "email": "fabien@symfony.com"
  7998. },
  7999. {
  8000. "name": "Symfony Community",
  8001. "homepage": "https://symfony.com/contributors"
  8002. }
  8003. ],
  8004. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  8005. "homepage": "https://symfony.com",
  8006. "support": {
  8007. "source": "https://github.com/symfony/twig-bundle/tree/v5.1.11"
  8008. },
  8009. "funding": [
  8010. {
  8011. "url": "https://symfony.com/sponsor",
  8012. "type": "custom"
  8013. },
  8014. {
  8015. "url": "https://github.com/fabpot",
  8016. "type": "github"
  8017. },
  8018. {
  8019. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8020. "type": "tidelift"
  8021. }
  8022. ],
  8023. "time": "2021-01-27T10:01:46+00:00"
  8024. },
  8025. {
  8026. "name": "symfony/twig-pack",
  8027. "version": "v1.0.1",
  8028. "source": {
  8029. "type": "git",
  8030. "url": "https://github.com/symfony/twig-pack.git",
  8031. "reference": "08a73e833e07921c464336deb7630f93e85ef930"
  8032. },
  8033. "dist": {
  8034. "type": "zip",
  8035. "url": "https://api.github.com/repos/symfony/twig-pack/zipball/08a73e833e07921c464336deb7630f93e85ef930",
  8036. "reference": "08a73e833e07921c464336deb7630f93e85ef930",
  8037. "shasum": ""
  8038. },
  8039. "require": {
  8040. "symfony/twig-bundle": "*",
  8041. "twig/extra-bundle": "^2.12|^3.0",
  8042. "twig/twig": "^2.12|^3.0"
  8043. },
  8044. "type": "symfony-pack",
  8045. "notification-url": "https://packagist.org/downloads/",
  8046. "license": [
  8047. "MIT"
  8048. ],
  8049. "description": "A Twig pack for Symfony projects",
  8050. "support": {
  8051. "issues": "https://github.com/symfony/twig-pack/issues",
  8052. "source": "https://github.com/symfony/twig-pack/tree/v1.0.1"
  8053. },
  8054. "funding": [
  8055. {
  8056. "url": "https://symfony.com/sponsor",
  8057. "type": "custom"
  8058. },
  8059. {
  8060. "url": "https://github.com/fabpot",
  8061. "type": "github"
  8062. },
  8063. {
  8064. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8065. "type": "tidelift"
  8066. }
  8067. ],
  8068. "time": "2020-10-19T08:46:41+00:00"
  8069. },
  8070. {
  8071. "name": "symfony/validator",
  8072. "version": "v5.1.11",
  8073. "source": {
  8074. "type": "git",
  8075. "url": "https://github.com/symfony/validator.git",
  8076. "reference": "c651438e159bdcbe8354320ab627d33fa7e288ff"
  8077. },
  8078. "dist": {
  8079. "type": "zip",
  8080. "url": "https://api.github.com/repos/symfony/validator/zipball/c651438e159bdcbe8354320ab627d33fa7e288ff",
  8081. "reference": "c651438e159bdcbe8354320ab627d33fa7e288ff",
  8082. "shasum": ""
  8083. },
  8084. "require": {
  8085. "php": ">=7.2.5",
  8086. "symfony/deprecation-contracts": "^2.0",
  8087. "symfony/polyfill-ctype": "~1.8",
  8088. "symfony/polyfill-mbstring": "~1.0",
  8089. "symfony/polyfill-php80": "^1.15",
  8090. "symfony/translation-contracts": "^1.1|^2"
  8091. },
  8092. "conflict": {
  8093. "doctrine/lexer": "<1.0.2",
  8094. "phpunit/phpunit": "<5.4.3",
  8095. "symfony/dependency-injection": "<4.4",
  8096. "symfony/expression-language": "<5.1",
  8097. "symfony/http-kernel": "<4.4",
  8098. "symfony/intl": "<4.4",
  8099. "symfony/translation": "<4.4",
  8100. "symfony/yaml": "<4.4"
  8101. },
  8102. "require-dev": {
  8103. "doctrine/annotations": "^1.10.4",
  8104. "doctrine/cache": "~1.0",
  8105. "egulias/email-validator": "^2.1.10",
  8106. "symfony/cache": "^4.4|^5.0",
  8107. "symfony/config": "^4.4|^5.0",
  8108. "symfony/dependency-injection": "^4.4|^5.0",
  8109. "symfony/expression-language": "^5.1",
  8110. "symfony/http-client": "^4.4|^5.0",
  8111. "symfony/http-foundation": "^4.4|^5.0",
  8112. "symfony/http-kernel": "^4.4|^5.0",
  8113. "symfony/intl": "^4.4|^5.0",
  8114. "symfony/mime": "^4.4|^5.0",
  8115. "symfony/property-access": "^4.4|^5.0",
  8116. "symfony/property-info": "^4.4|^5.0",
  8117. "symfony/translation": "^4.4|^5.0",
  8118. "symfony/yaml": "^4.4|^5.0"
  8119. },
  8120. "suggest": {
  8121. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8122. "doctrine/cache": "For using the default cached annotation reader.",
  8123. "egulias/email-validator": "Strict (RFC compliant) email validation",
  8124. "psr/cache-implementation": "For using the mapping cache.",
  8125. "symfony/config": "",
  8126. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  8127. "symfony/http-foundation": "",
  8128. "symfony/intl": "",
  8129. "symfony/property-access": "For accessing properties within comparison constraints",
  8130. "symfony/property-info": "To automatically add NotNull and Type constraints",
  8131. "symfony/translation": "For translating validation errors.",
  8132. "symfony/yaml": ""
  8133. },
  8134. "type": "library",
  8135. "autoload": {
  8136. "psr-4": {
  8137. "Symfony\\Component\\Validator\\": ""
  8138. },
  8139. "exclude-from-classmap": [
  8140. "/Tests/"
  8141. ]
  8142. },
  8143. "notification-url": "https://packagist.org/downloads/",
  8144. "license": [
  8145. "MIT"
  8146. ],
  8147. "authors": [
  8148. {
  8149. "name": "Fabien Potencier",
  8150. "email": "fabien@symfony.com"
  8151. },
  8152. {
  8153. "name": "Symfony Community",
  8154. "homepage": "https://symfony.com/contributors"
  8155. }
  8156. ],
  8157. "description": "Provides tools to validate values",
  8158. "homepage": "https://symfony.com",
  8159. "support": {
  8160. "source": "https://github.com/symfony/validator/tree/v5.1.11"
  8161. },
  8162. "funding": [
  8163. {
  8164. "url": "https://symfony.com/sponsor",
  8165. "type": "custom"
  8166. },
  8167. {
  8168. "url": "https://github.com/fabpot",
  8169. "type": "github"
  8170. },
  8171. {
  8172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8173. "type": "tidelift"
  8174. }
  8175. ],
  8176. "time": "2021-01-27T12:50:07+00:00"
  8177. },
  8178. {
  8179. "name": "symfony/var-dumper",
  8180. "version": "v5.1.11",
  8181. "source": {
  8182. "type": "git",
  8183. "url": "https://github.com/symfony/var-dumper.git",
  8184. "reference": "cee600a1248b423330375c869812bdd61a085cd0"
  8185. },
  8186. "dist": {
  8187. "type": "zip",
  8188. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/cee600a1248b423330375c869812bdd61a085cd0",
  8189. "reference": "cee600a1248b423330375c869812bdd61a085cd0",
  8190. "shasum": ""
  8191. },
  8192. "require": {
  8193. "php": ">=7.2.5",
  8194. "symfony/polyfill-mbstring": "~1.0",
  8195. "symfony/polyfill-php80": "^1.15"
  8196. },
  8197. "conflict": {
  8198. "phpunit/phpunit": "<5.4.3",
  8199. "symfony/console": "<4.4"
  8200. },
  8201. "require-dev": {
  8202. "ext-iconv": "*",
  8203. "symfony/console": "^4.4|^5.0",
  8204. "symfony/process": "^4.4|^5.0",
  8205. "twig/twig": "^2.13|^3.0.4"
  8206. },
  8207. "suggest": {
  8208. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8209. "ext-intl": "To show region name in time zone dump",
  8210. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8211. },
  8212. "bin": [
  8213. "Resources/bin/var-dump-server"
  8214. ],
  8215. "type": "library",
  8216. "autoload": {
  8217. "files": [
  8218. "Resources/functions/dump.php"
  8219. ],
  8220. "psr-4": {
  8221. "Symfony\\Component\\VarDumper\\": ""
  8222. },
  8223. "exclude-from-classmap": [
  8224. "/Tests/"
  8225. ]
  8226. },
  8227. "notification-url": "https://packagist.org/downloads/",
  8228. "license": [
  8229. "MIT"
  8230. ],
  8231. "authors": [
  8232. {
  8233. "name": "Nicolas Grekas",
  8234. "email": "p@tchwork.com"
  8235. },
  8236. {
  8237. "name": "Symfony Community",
  8238. "homepage": "https://symfony.com/contributors"
  8239. }
  8240. ],
  8241. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8242. "homepage": "https://symfony.com",
  8243. "keywords": [
  8244. "debug",
  8245. "dump"
  8246. ],
  8247. "support": {
  8248. "source": "https://github.com/symfony/var-dumper/tree/v5.1.11"
  8249. },
  8250. "funding": [
  8251. {
  8252. "url": "https://symfony.com/sponsor",
  8253. "type": "custom"
  8254. },
  8255. {
  8256. "url": "https://github.com/fabpot",
  8257. "type": "github"
  8258. },
  8259. {
  8260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8261. "type": "tidelift"
  8262. }
  8263. ],
  8264. "time": "2021-01-27T10:01:46+00:00"
  8265. },
  8266. {
  8267. "name": "symfony/var-exporter",
  8268. "version": "v5.1.11",
  8269. "source": {
  8270. "type": "git",
  8271. "url": "https://github.com/symfony/var-exporter.git",
  8272. "reference": "5aed4875ab514c8cb9b6ff4772baa25fa4c10307"
  8273. },
  8274. "dist": {
  8275. "type": "zip",
  8276. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/5aed4875ab514c8cb9b6ff4772baa25fa4c10307",
  8277. "reference": "5aed4875ab514c8cb9b6ff4772baa25fa4c10307",
  8278. "shasum": ""
  8279. },
  8280. "require": {
  8281. "php": ">=7.2.5",
  8282. "symfony/polyfill-php80": "^1.15"
  8283. },
  8284. "require-dev": {
  8285. "symfony/var-dumper": "^4.4.9|^5.0.9"
  8286. },
  8287. "type": "library",
  8288. "autoload": {
  8289. "psr-4": {
  8290. "Symfony\\Component\\VarExporter\\": ""
  8291. },
  8292. "exclude-from-classmap": [
  8293. "/Tests/"
  8294. ]
  8295. },
  8296. "notification-url": "https://packagist.org/downloads/",
  8297. "license": [
  8298. "MIT"
  8299. ],
  8300. "authors": [
  8301. {
  8302. "name": "Nicolas Grekas",
  8303. "email": "p@tchwork.com"
  8304. },
  8305. {
  8306. "name": "Symfony Community",
  8307. "homepage": "https://symfony.com/contributors"
  8308. }
  8309. ],
  8310. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8311. "homepage": "https://symfony.com",
  8312. "keywords": [
  8313. "clone",
  8314. "construct",
  8315. "export",
  8316. "hydrate",
  8317. "instantiate",
  8318. "serialize"
  8319. ],
  8320. "support": {
  8321. "source": "https://github.com/symfony/var-exporter/tree/v5.1.11"
  8322. },
  8323. "funding": [
  8324. {
  8325. "url": "https://symfony.com/sponsor",
  8326. "type": "custom"
  8327. },
  8328. {
  8329. "url": "https://github.com/fabpot",
  8330. "type": "github"
  8331. },
  8332. {
  8333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8334. "type": "tidelift"
  8335. }
  8336. ],
  8337. "time": "2021-01-27T10:01:46+00:00"
  8338. },
  8339. {
  8340. "name": "symfony/web-link",
  8341. "version": "v5.1.11",
  8342. "source": {
  8343. "type": "git",
  8344. "url": "https://github.com/symfony/web-link.git",
  8345. "reference": "28e6bd9028740602c158f5c6ac8d5e2a2692812e"
  8346. },
  8347. "dist": {
  8348. "type": "zip",
  8349. "url": "https://api.github.com/repos/symfony/web-link/zipball/28e6bd9028740602c158f5c6ac8d5e2a2692812e",
  8350. "reference": "28e6bd9028740602c158f5c6ac8d5e2a2692812e",
  8351. "shasum": ""
  8352. },
  8353. "require": {
  8354. "php": ">=7.2.5",
  8355. "psr/link": "^1.0"
  8356. },
  8357. "conflict": {
  8358. "symfony/http-kernel": "<4.4"
  8359. },
  8360. "provide": {
  8361. "psr/link-implementation": "1.0"
  8362. },
  8363. "require-dev": {
  8364. "symfony/http-foundation": "^4.4|^5.0",
  8365. "symfony/http-kernel": "^4.4|^5.0"
  8366. },
  8367. "suggest": {
  8368. "symfony/http-kernel": ""
  8369. },
  8370. "type": "library",
  8371. "autoload": {
  8372. "psr-4": {
  8373. "Symfony\\Component\\WebLink\\": ""
  8374. },
  8375. "exclude-from-classmap": [
  8376. "/Tests/"
  8377. ]
  8378. },
  8379. "notification-url": "https://packagist.org/downloads/",
  8380. "license": [
  8381. "MIT"
  8382. ],
  8383. "authors": [
  8384. {
  8385. "name": "Kévin Dunglas",
  8386. "email": "dunglas@gmail.com"
  8387. },
  8388. {
  8389. "name": "Symfony Community",
  8390. "homepage": "https://symfony.com/contributors"
  8391. }
  8392. ],
  8393. "description": "Manages links between resources",
  8394. "homepage": "https://symfony.com",
  8395. "keywords": [
  8396. "dns-prefetch",
  8397. "http",
  8398. "http2",
  8399. "link",
  8400. "performance",
  8401. "prefetch",
  8402. "preload",
  8403. "prerender",
  8404. "psr13",
  8405. "push"
  8406. ],
  8407. "support": {
  8408. "source": "https://github.com/symfony/web-link/tree/v5.1.11"
  8409. },
  8410. "funding": [
  8411. {
  8412. "url": "https://symfony.com/sponsor",
  8413. "type": "custom"
  8414. },
  8415. {
  8416. "url": "https://github.com/fabpot",
  8417. "type": "github"
  8418. },
  8419. {
  8420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8421. "type": "tidelift"
  8422. }
  8423. ],
  8424. "time": "2021-01-10T16:29:19+00:00"
  8425. },
  8426. {
  8427. "name": "symfony/yaml",
  8428. "version": "v5.1.11",
  8429. "source": {
  8430. "type": "git",
  8431. "url": "https://github.com/symfony/yaml.git",
  8432. "reference": "6bb8b36c6dea8100268512bf46e858c8eb5c545e"
  8433. },
  8434. "dist": {
  8435. "type": "zip",
  8436. "url": "https://api.github.com/repos/symfony/yaml/zipball/6bb8b36c6dea8100268512bf46e858c8eb5c545e",
  8437. "reference": "6bb8b36c6dea8100268512bf46e858c8eb5c545e",
  8438. "shasum": ""
  8439. },
  8440. "require": {
  8441. "php": ">=7.2.5",
  8442. "symfony/deprecation-contracts": "^2.1",
  8443. "symfony/polyfill-ctype": "~1.8"
  8444. },
  8445. "conflict": {
  8446. "symfony/console": "<4.4"
  8447. },
  8448. "require-dev": {
  8449. "symfony/console": "^4.4|^5.0"
  8450. },
  8451. "suggest": {
  8452. "symfony/console": "For validating YAML files using the lint command"
  8453. },
  8454. "bin": [
  8455. "Resources/bin/yaml-lint"
  8456. ],
  8457. "type": "library",
  8458. "autoload": {
  8459. "psr-4": {
  8460. "Symfony\\Component\\Yaml\\": ""
  8461. },
  8462. "exclude-from-classmap": [
  8463. "/Tests/"
  8464. ]
  8465. },
  8466. "notification-url": "https://packagist.org/downloads/",
  8467. "license": [
  8468. "MIT"
  8469. ],
  8470. "authors": [
  8471. {
  8472. "name": "Fabien Potencier",
  8473. "email": "fabien@symfony.com"
  8474. },
  8475. {
  8476. "name": "Symfony Community",
  8477. "homepage": "https://symfony.com/contributors"
  8478. }
  8479. ],
  8480. "description": "Loads and dumps YAML files",
  8481. "homepage": "https://symfony.com",
  8482. "support": {
  8483. "source": "https://github.com/symfony/yaml/tree/v5.1.11"
  8484. },
  8485. "funding": [
  8486. {
  8487. "url": "https://symfony.com/sponsor",
  8488. "type": "custom"
  8489. },
  8490. {
  8491. "url": "https://github.com/fabpot",
  8492. "type": "github"
  8493. },
  8494. {
  8495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8496. "type": "tidelift"
  8497. }
  8498. ],
  8499. "time": "2021-01-27T10:01:46+00:00"
  8500. },
  8501. {
  8502. "name": "symfonycasts/verify-email-bundle",
  8503. "version": "v1.2.0",
  8504. "source": {
  8505. "type": "git",
  8506. "url": "https://github.com/SymfonyCasts/verify-email-bundle.git",
  8507. "reference": "9fc2cf3118e9f249c7bff11786fed4ea2c06e5ed"
  8508. },
  8509. "dist": {
  8510. "type": "zip",
  8511. "url": "https://api.github.com/repos/SymfonyCasts/verify-email-bundle/zipball/9fc2cf3118e9f249c7bff11786fed4ea2c06e5ed",
  8512. "reference": "9fc2cf3118e9f249c7bff11786fed4ea2c06e5ed",
  8513. "shasum": ""
  8514. },
  8515. "require": {
  8516. "php": ">=7.2.5",
  8517. "symfony/config": "^4.4 | ^5.0",
  8518. "symfony/dependency-injection": "^4.4 | ^5.0",
  8519. "symfony/deprecation-contracts": "^2.2",
  8520. "symfony/http-kernel": "^4.4 | ^5.0",
  8521. "symfony/routing": "^4.4 | ^5.0"
  8522. },
  8523. "conflict": {
  8524. "symfony/framework-bundle": "<4.4"
  8525. },
  8526. "require-dev": {
  8527. "doctrine/orm": "^2.7",
  8528. "doctrine/persistence": "^2.0",
  8529. "friendsofphp/php-cs-fixer": "^2.17",
  8530. "symfony/framework-bundle": "^4.4 | ^5.0",
  8531. "symfony/phpunit-bridge": "^5.0",
  8532. "vimeo/psalm": "^4.3"
  8533. },
  8534. "type": "symfony-bundle",
  8535. "autoload": {
  8536. "psr-4": {
  8537. "SymfonyCasts\\Bundle\\VerifyEmail\\": "src/"
  8538. }
  8539. },
  8540. "notification-url": "https://packagist.org/downloads/",
  8541. "license": [
  8542. "MIT"
  8543. ],
  8544. "description": "Simple, stylish Email Verification for Symfony",
  8545. "support": {
  8546. "issues": "https://github.com/SymfonyCasts/verify-email-bundle/issues",
  8547. "source": "https://github.com/SymfonyCasts/verify-email-bundle/tree/v1.2.0"
  8548. },
  8549. "time": "2021-02-08T14:20:22+00:00"
  8550. },
  8551. {
  8552. "name": "tgalopin/html-sanitizer",
  8553. "version": "1.4.0",
  8554. "source": {
  8555. "type": "git",
  8556. "url": "https://github.com/tgalopin/html-sanitizer.git",
  8557. "reference": "56cca6b48de4e50d16a4f549e3e677ae0d561e91"
  8558. },
  8559. "dist": {
  8560. "type": "zip",
  8561. "url": "https://api.github.com/repos/tgalopin/html-sanitizer/zipball/56cca6b48de4e50d16a4f549e3e677ae0d561e91",
  8562. "reference": "56cca6b48de4e50d16a4f549e3e677ae0d561e91",
  8563. "shasum": ""
  8564. },
  8565. "require": {
  8566. "ext-dom": "*",
  8567. "league/uri-parser": "^1.4.1",
  8568. "masterminds/html5": "^2.4",
  8569. "php": ">=7.1",
  8570. "psr/log": "^1.0"
  8571. },
  8572. "require-dev": {
  8573. "phpunit/phpunit": "^7.4",
  8574. "symfony/var-dumper": "^4.1"
  8575. },
  8576. "type": "library",
  8577. "autoload": {
  8578. "psr-4": {
  8579. "HtmlSanitizer\\": "src"
  8580. }
  8581. },
  8582. "notification-url": "https://packagist.org/downloads/",
  8583. "license": [
  8584. "MIT"
  8585. ],
  8586. "authors": [
  8587. {
  8588. "name": "Titouan Galopin",
  8589. "email": "galopintitouan@gmail.com"
  8590. }
  8591. ],
  8592. "description": "Sanitize untrustworthy HTML user input",
  8593. "support": {
  8594. "issues": "https://github.com/tgalopin/html-sanitizer/issues",
  8595. "source": "https://github.com/tgalopin/html-sanitizer/tree/master"
  8596. },
  8597. "time": "2020-02-03T16:51:08+00:00"
  8598. },
  8599. {
  8600. "name": "tgalopin/html-sanitizer-bundle",
  8601. "version": "1.3.0",
  8602. "source": {
  8603. "type": "git",
  8604. "url": "https://github.com/tgalopin/html-sanitizer-bundle.git",
  8605. "reference": "87e07cee80136d845a21faa3116982990884a89a"
  8606. },
  8607. "dist": {
  8608. "type": "zip",
  8609. "url": "https://api.github.com/repos/tgalopin/html-sanitizer-bundle/zipball/87e07cee80136d845a21faa3116982990884a89a",
  8610. "reference": "87e07cee80136d845a21faa3116982990884a89a",
  8611. "shasum": ""
  8612. },
  8613. "require": {
  8614. "php": ">=7.1",
  8615. "symfony/framework-bundle": "^3.4|^4.0|^5.0",
  8616. "tgalopin/html-sanitizer": "^1.1"
  8617. },
  8618. "require-dev": {
  8619. "phpunit/phpunit": "^7.4",
  8620. "symfony/form": "^4.1|^5.0",
  8621. "symfony/twig-bundle": "^4.1|^5.0",
  8622. "symfony/var-dumper": "^4.1|^5.0"
  8623. },
  8624. "type": "symfony-bundle",
  8625. "autoload": {
  8626. "psr-4": {
  8627. "HtmlSanitizer\\Bundle\\": "src"
  8628. }
  8629. },
  8630. "notification-url": "https://packagist.org/downloads/",
  8631. "license": [
  8632. "MIT"
  8633. ],
  8634. "authors": [
  8635. {
  8636. "name": "Titouan Galopin",
  8637. "email": "galopintitouan@gmail.com"
  8638. }
  8639. ],
  8640. "description": "Symfony Bundle for https://github.com/tgalopin/html-sanitizer",
  8641. "support": {
  8642. "issues": "https://github.com/tgalopin/html-sanitizer-bundle/issues",
  8643. "source": "https://github.com/tgalopin/html-sanitizer-bundle/tree/1.3.0"
  8644. },
  8645. "time": "2021-01-27T08:34:58+00:00"
  8646. },
  8647. {
  8648. "name": "twig/extra-bundle",
  8649. "version": "v3.3.0",
  8650. "source": {
  8651. "type": "git",
  8652. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8653. "reference": "e2d27a86c3f47859eb07808fa7c8679d30fcbdde"
  8654. },
  8655. "dist": {
  8656. "type": "zip",
  8657. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/e2d27a86c3f47859eb07808fa7c8679d30fcbdde",
  8658. "reference": "e2d27a86c3f47859eb07808fa7c8679d30fcbdde",
  8659. "shasum": ""
  8660. },
  8661. "require": {
  8662. "php": "^7.1.3|^8.0",
  8663. "symfony/framework-bundle": "^4.3|^5.0",
  8664. "symfony/twig-bundle": "^4.3|^5.0",
  8665. "twig/twig": "^2.4|^3.0"
  8666. },
  8667. "require-dev": {
  8668. "symfony/phpunit-bridge": "^4.4.9|^5.0.9",
  8669. "twig/cache-extra": "^3.0",
  8670. "twig/cssinliner-extra": "^2.12|^3.0",
  8671. "twig/html-extra": "^2.12|^3.0",
  8672. "twig/inky-extra": "^2.12|^3.0",
  8673. "twig/intl-extra": "^2.12|^3.0",
  8674. "twig/markdown-extra": "^2.12|^3.0",
  8675. "twig/string-extra": "^2.12|^3.0"
  8676. },
  8677. "type": "symfony-bundle",
  8678. "extra": {
  8679. "branch-alias": {
  8680. "dev-master": "3.2-dev"
  8681. }
  8682. },
  8683. "autoload": {
  8684. "psr-4": {
  8685. "Twig\\Extra\\TwigExtraBundle\\": ""
  8686. },
  8687. "exclude-from-classmap": [
  8688. "/Tests/"
  8689. ]
  8690. },
  8691. "notification-url": "https://packagist.org/downloads/",
  8692. "license": [
  8693. "MIT"
  8694. ],
  8695. "authors": [
  8696. {
  8697. "name": "Fabien Potencier",
  8698. "email": "fabien@symfony.com",
  8699. "homepage": "http://fabien.potencier.org",
  8700. "role": "Lead Developer"
  8701. }
  8702. ],
  8703. "description": "A Symfony bundle for extra Twig extensions",
  8704. "homepage": "https://twig.symfony.com",
  8705. "keywords": [
  8706. "bundle",
  8707. "extra",
  8708. "twig"
  8709. ],
  8710. "support": {
  8711. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.3.0"
  8712. },
  8713. "funding": [
  8714. {
  8715. "url": "https://github.com/fabpot",
  8716. "type": "github"
  8717. },
  8718. {
  8719. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8720. "type": "tidelift"
  8721. }
  8722. ],
  8723. "time": "2021-02-06T21:13:17+00:00"
  8724. },
  8725. {
  8726. "name": "twig/markdown-extra",
  8727. "version": "v3.3.0",
  8728. "source": {
  8729. "type": "git",
  8730. "url": "https://github.com/twigphp/markdown-extra.git",
  8731. "reference": "48142a7727b2b84691f843056346d534933f1d3f"
  8732. },
  8733. "dist": {
  8734. "type": "zip",
  8735. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/48142a7727b2b84691f843056346d534933f1d3f",
  8736. "reference": "48142a7727b2b84691f843056346d534933f1d3f",
  8737. "shasum": ""
  8738. },
  8739. "require": {
  8740. "php": ">=7.1.3",
  8741. "twig/twig": "^2.4|^3.0"
  8742. },
  8743. "require-dev": {
  8744. "erusev/parsedown": "^1.7",
  8745. "league/commonmark": "^1.0",
  8746. "league/html-to-markdown": "^4.8",
  8747. "michelf/php-markdown": "^1.8",
  8748. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  8749. },
  8750. "type": "library",
  8751. "extra": {
  8752. "branch-alias": {
  8753. "dev-master": "3.2-dev"
  8754. }
  8755. },
  8756. "autoload": {
  8757. "psr-4": {
  8758. "Twig\\Extra\\Markdown\\": ""
  8759. },
  8760. "exclude-from-classmap": [
  8761. "/Tests/"
  8762. ]
  8763. },
  8764. "notification-url": "https://packagist.org/downloads/",
  8765. "license": [
  8766. "MIT"
  8767. ],
  8768. "authors": [
  8769. {
  8770. "name": "Fabien Potencier",
  8771. "email": "fabien@symfony.com",
  8772. "homepage": "http://fabien.potencier.org",
  8773. "role": "Lead Developer"
  8774. }
  8775. ],
  8776. "description": "A Twig extension for Markdown",
  8777. "homepage": "https://twig.symfony.com",
  8778. "keywords": [
  8779. "html",
  8780. "markdown",
  8781. "twig"
  8782. ],
  8783. "support": {
  8784. "source": "https://github.com/twigphp/markdown-extra/tree/v3.3.0"
  8785. },
  8786. "funding": [
  8787. {
  8788. "url": "https://github.com/fabpot",
  8789. "type": "github"
  8790. },
  8791. {
  8792. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8793. "type": "tidelift"
  8794. }
  8795. ],
  8796. "time": "2021-01-01T14:58:18+00:00"
  8797. },
  8798. {
  8799. "name": "twig/twig",
  8800. "version": "v3.3.0",
  8801. "source": {
  8802. "type": "git",
  8803. "url": "https://github.com/twigphp/Twig.git",
  8804. "reference": "1f3b7e2c06cc05d42936a8ad508ff1db7975cdc5"
  8805. },
  8806. "dist": {
  8807. "type": "zip",
  8808. "url": "https://api.github.com/repos/twigphp/Twig/zipball/1f3b7e2c06cc05d42936a8ad508ff1db7975cdc5",
  8809. "reference": "1f3b7e2c06cc05d42936a8ad508ff1db7975cdc5",
  8810. "shasum": ""
  8811. },
  8812. "require": {
  8813. "php": ">=7.2.5",
  8814. "symfony/polyfill-ctype": "^1.8",
  8815. "symfony/polyfill-mbstring": "^1.3"
  8816. },
  8817. "require-dev": {
  8818. "psr/container": "^1.0",
  8819. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  8820. },
  8821. "type": "library",
  8822. "extra": {
  8823. "branch-alias": {
  8824. "dev-master": "3.3-dev"
  8825. }
  8826. },
  8827. "autoload": {
  8828. "psr-4": {
  8829. "Twig\\": "src/"
  8830. }
  8831. },
  8832. "notification-url": "https://packagist.org/downloads/",
  8833. "license": [
  8834. "BSD-3-Clause"
  8835. ],
  8836. "authors": [
  8837. {
  8838. "name": "Fabien Potencier",
  8839. "email": "fabien@symfony.com",
  8840. "homepage": "http://fabien.potencier.org",
  8841. "role": "Lead Developer"
  8842. },
  8843. {
  8844. "name": "Twig Team",
  8845. "role": "Contributors"
  8846. },
  8847. {
  8848. "name": "Armin Ronacher",
  8849. "email": "armin.ronacher@active-4.com",
  8850. "role": "Project Founder"
  8851. }
  8852. ],
  8853. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8854. "homepage": "https://twig.symfony.com",
  8855. "keywords": [
  8856. "templating"
  8857. ],
  8858. "support": {
  8859. "issues": "https://github.com/twigphp/Twig/issues",
  8860. "source": "https://github.com/twigphp/Twig/tree/v3.3.0"
  8861. },
  8862. "funding": [
  8863. {
  8864. "url": "https://github.com/fabpot",
  8865. "type": "github"
  8866. },
  8867. {
  8868. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8869. "type": "tidelift"
  8870. }
  8871. ],
  8872. "time": "2021-02-08T09:54:36+00:00"
  8873. },
  8874. {
  8875. "name": "webmozart/assert",
  8876. "version": "1.9.1",
  8877. "source": {
  8878. "type": "git",
  8879. "url": "https://github.com/webmozarts/assert.git",
  8880. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  8881. },
  8882. "dist": {
  8883. "type": "zip",
  8884. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8885. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8886. "shasum": ""
  8887. },
  8888. "require": {
  8889. "php": "^5.3.3 || ^7.0 || ^8.0",
  8890. "symfony/polyfill-ctype": "^1.8"
  8891. },
  8892. "conflict": {
  8893. "phpstan/phpstan": "<0.12.20",
  8894. "vimeo/psalm": "<3.9.1"
  8895. },
  8896. "require-dev": {
  8897. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  8898. },
  8899. "type": "library",
  8900. "autoload": {
  8901. "psr-4": {
  8902. "Webmozart\\Assert\\": "src/"
  8903. }
  8904. },
  8905. "notification-url": "https://packagist.org/downloads/",
  8906. "license": [
  8907. "MIT"
  8908. ],
  8909. "authors": [
  8910. {
  8911. "name": "Bernhard Schussek",
  8912. "email": "bschussek@gmail.com"
  8913. }
  8914. ],
  8915. "description": "Assertions to validate method input/output with nice error messages.",
  8916. "keywords": [
  8917. "assert",
  8918. "check",
  8919. "validate"
  8920. ],
  8921. "support": {
  8922. "issues": "https://github.com/webmozarts/assert/issues",
  8923. "source": "https://github.com/webmozarts/assert/tree/1.9.1"
  8924. },
  8925. "time": "2020-07-08T17:02:28+00:00"
  8926. }
  8927. ],
  8928. "packages-dev": [
  8929. {
  8930. "name": "composer/semver",
  8931. "version": "3.2.4",
  8932. "source": {
  8933. "type": "git",
  8934. "url": "https://github.com/composer/semver.git",
  8935. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  8936. },
  8937. "dist": {
  8938. "type": "zip",
  8939. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8940. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8941. "shasum": ""
  8942. },
  8943. "require": {
  8944. "php": "^5.3.2 || ^7.0 || ^8.0"
  8945. },
  8946. "require-dev": {
  8947. "phpstan/phpstan": "^0.12.54",
  8948. "symfony/phpunit-bridge": "^4.2 || ^5"
  8949. },
  8950. "type": "library",
  8951. "extra": {
  8952. "branch-alias": {
  8953. "dev-main": "3.x-dev"
  8954. }
  8955. },
  8956. "autoload": {
  8957. "psr-4": {
  8958. "Composer\\Semver\\": "src"
  8959. }
  8960. },
  8961. "notification-url": "https://packagist.org/downloads/",
  8962. "license": [
  8963. "MIT"
  8964. ],
  8965. "authors": [
  8966. {
  8967. "name": "Nils Adermann",
  8968. "email": "naderman@naderman.de",
  8969. "homepage": "http://www.naderman.de"
  8970. },
  8971. {
  8972. "name": "Jordi Boggiano",
  8973. "email": "j.boggiano@seld.be",
  8974. "homepage": "http://seld.be"
  8975. },
  8976. {
  8977. "name": "Rob Bast",
  8978. "email": "rob.bast@gmail.com",
  8979. "homepage": "http://robbast.nl"
  8980. }
  8981. ],
  8982. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8983. "keywords": [
  8984. "semantic",
  8985. "semver",
  8986. "validation",
  8987. "versioning"
  8988. ],
  8989. "support": {
  8990. "irc": "irc://irc.freenode.org/composer",
  8991. "issues": "https://github.com/composer/semver/issues",
  8992. "source": "https://github.com/composer/semver/tree/3.2.4"
  8993. },
  8994. "funding": [
  8995. {
  8996. "url": "https://packagist.com",
  8997. "type": "custom"
  8998. },
  8999. {
  9000. "url": "https://github.com/composer",
  9001. "type": "github"
  9002. },
  9003. {
  9004. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9005. "type": "tidelift"
  9006. }
  9007. ],
  9008. "time": "2020-11-13T08:59:24+00:00"
  9009. },
  9010. {
  9011. "name": "composer/xdebug-handler",
  9012. "version": "1.4.5",
  9013. "source": {
  9014. "type": "git",
  9015. "url": "https://github.com/composer/xdebug-handler.git",
  9016. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  9017. },
  9018. "dist": {
  9019. "type": "zip",
  9020. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  9021. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  9022. "shasum": ""
  9023. },
  9024. "require": {
  9025. "php": "^5.3.2 || ^7.0 || ^8.0",
  9026. "psr/log": "^1.0"
  9027. },
  9028. "require-dev": {
  9029. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  9030. },
  9031. "type": "library",
  9032. "autoload": {
  9033. "psr-4": {
  9034. "Composer\\XdebugHandler\\": "src"
  9035. }
  9036. },
  9037. "notification-url": "https://packagist.org/downloads/",
  9038. "license": [
  9039. "MIT"
  9040. ],
  9041. "authors": [
  9042. {
  9043. "name": "John Stevenson",
  9044. "email": "john-stevenson@blueyonder.co.uk"
  9045. }
  9046. ],
  9047. "description": "Restarts a process without Xdebug.",
  9048. "keywords": [
  9049. "Xdebug",
  9050. "performance"
  9051. ],
  9052. "support": {
  9053. "irc": "irc://irc.freenode.org/composer",
  9054. "issues": "https://github.com/composer/xdebug-handler/issues",
  9055. "source": "https://github.com/composer/xdebug-handler/tree/1.4.5"
  9056. },
  9057. "funding": [
  9058. {
  9059. "url": "https://packagist.com",
  9060. "type": "custom"
  9061. },
  9062. {
  9063. "url": "https://github.com/composer",
  9064. "type": "github"
  9065. },
  9066. {
  9067. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9068. "type": "tidelift"
  9069. }
  9070. ],
  9071. "time": "2020-11-13T08:04:11+00:00"
  9072. },
  9073. {
  9074. "name": "friendsofphp/php-cs-fixer",
  9075. "version": "v2.18.2",
  9076. "source": {
  9077. "type": "git",
  9078. "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
  9079. "reference": "18f8c9d184ba777380794a389fabc179896ba913"
  9080. },
  9081. "dist": {
  9082. "type": "zip",
  9083. "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/18f8c9d184ba777380794a389fabc179896ba913",
  9084. "reference": "18f8c9d184ba777380794a389fabc179896ba913",
  9085. "shasum": ""
  9086. },
  9087. "require": {
  9088. "composer/semver": "^1.4 || ^2.0 || ^3.0",
  9089. "composer/xdebug-handler": "^1.2",
  9090. "doctrine/annotations": "^1.2",
  9091. "ext-json": "*",
  9092. "ext-tokenizer": "*",
  9093. "php": "^5.6 || ^7.0 || ^8.0",
  9094. "php-cs-fixer/diff": "^1.3",
  9095. "symfony/console": "^3.4.43 || ^4.1.6 || ^5.0",
  9096. "symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0",
  9097. "symfony/filesystem": "^3.0 || ^4.0 || ^5.0",
  9098. "symfony/finder": "^3.0 || ^4.0 || ^5.0",
  9099. "symfony/options-resolver": "^3.0 || ^4.0 || ^5.0",
  9100. "symfony/polyfill-php70": "^1.0",
  9101. "symfony/polyfill-php72": "^1.4",
  9102. "symfony/process": "^3.0 || ^4.0 || ^5.0",
  9103. "symfony/stopwatch": "^3.0 || ^4.0 || ^5.0"
  9104. },
  9105. "require-dev": {
  9106. "justinrainbow/json-schema": "^5.0",
  9107. "keradus/cli-executor": "^1.4",
  9108. "mikey179/vfsstream": "^1.6",
  9109. "php-coveralls/php-coveralls": "^2.4.2",
  9110. "php-cs-fixer/accessible-object": "^1.0",
  9111. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
  9112. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
  9113. "phpspec/prophecy-phpunit": "^1.1 || ^2.0",
  9114. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.13 || ^9.5",
  9115. "phpunitgoodpractices/polyfill": "^1.5",
  9116. "phpunitgoodpractices/traits": "^1.9.1",
  9117. "sanmai/phpunit-legacy-adapter": "^6.4 || ^8.2.1",
  9118. "symfony/phpunit-bridge": "^5.2.1",
  9119. "symfony/yaml": "^3.0 || ^4.0 || ^5.0"
  9120. },
  9121. "suggest": {
  9122. "ext-dom": "For handling output formats in XML",
  9123. "ext-mbstring": "For handling non-UTF8 characters.",
  9124. "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
  9125. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
  9126. "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
  9127. },
  9128. "bin": [
  9129. "php-cs-fixer"
  9130. ],
  9131. "type": "application",
  9132. "autoload": {
  9133. "psr-4": {
  9134. "PhpCsFixer\\": "src/"
  9135. },
  9136. "classmap": [
  9137. "tests/Test/AbstractFixerTestCase.php",
  9138. "tests/Test/AbstractIntegrationCaseFactory.php",
  9139. "tests/Test/AbstractIntegrationTestCase.php",
  9140. "tests/Test/Assert/AssertTokensTrait.php",
  9141. "tests/Test/IntegrationCase.php",
  9142. "tests/Test/IntegrationCaseFactory.php",
  9143. "tests/Test/IntegrationCaseFactoryInterface.php",
  9144. "tests/Test/InternalIntegrationCaseFactory.php",
  9145. "tests/Test/IsIdenticalConstraint.php",
  9146. "tests/TestCase.php"
  9147. ]
  9148. },
  9149. "notification-url": "https://packagist.org/downloads/",
  9150. "license": [
  9151. "MIT"
  9152. ],
  9153. "authors": [
  9154. {
  9155. "name": "Fabien Potencier",
  9156. "email": "fabien@symfony.com"
  9157. },
  9158. {
  9159. "name": "Dariusz Rumiński",
  9160. "email": "dariusz.ruminski@gmail.com"
  9161. }
  9162. ],
  9163. "description": "A tool to automatically fix PHP code style",
  9164. "support": {
  9165. "issues": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/issues",
  9166. "source": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/tree/v2.18.2"
  9167. },
  9168. "funding": [
  9169. {
  9170. "url": "https://github.com/keradus",
  9171. "type": "github"
  9172. }
  9173. ],
  9174. "time": "2021-01-26T00:22:21+00:00"
  9175. },
  9176. {
  9177. "name": "niels-de-blaauw/php-doc-check",
  9178. "version": "v0.2.2",
  9179. "source": {
  9180. "type": "git",
  9181. "url": "https://github.com/NielsdeBlaauw/php-doc-check.git",
  9182. "reference": "c0262fb76db3ed3f93ae0a2857bf41b695ec3b62"
  9183. },
  9184. "dist": {
  9185. "type": "zip",
  9186. "url": "https://api.github.com/repos/NielsdeBlaauw/php-doc-check/zipball/c0262fb76db3ed3f93ae0a2857bf41b695ec3b62",
  9187. "reference": "c0262fb76db3ed3f93ae0a2857bf41b695ec3b62",
  9188. "shasum": ""
  9189. },
  9190. "require": {
  9191. "nikic/php-parser": "^4.2",
  9192. "ulrichsg/getopt-php": "^3.2",
  9193. "wp-cli/php-cli-tools": "^0.11.11"
  9194. },
  9195. "require-dev": {
  9196. "humbug/box": "^3.4",
  9197. "phpmd/phpmd": "^2.6",
  9198. "phpstan/phpstan": "^0.11.1",
  9199. "phpunit/phpunit": "^7.5",
  9200. "squizlabs/php_codesniffer": "^3.4"
  9201. },
  9202. "bin": [
  9203. "bin/php-doc-check"
  9204. ],
  9205. "type": "library",
  9206. "autoload": {
  9207. "psr-4": {
  9208. "NdB\\PhpDocCheck\\": "src"
  9209. }
  9210. },
  9211. "notification-url": "https://packagist.org/downloads/",
  9212. "license": [
  9213. "MIT"
  9214. ],
  9215. "authors": [
  9216. {
  9217. "name": "Niels de Blaauw",
  9218. "email": "niels.de.blaauw@gmail.com"
  9219. }
  9220. ],
  9221. "description": "Command line tool that identifies code that needs documentation.",
  9222. "support": {
  9223. "issues": "https://github.com/NielsdeBlaauw/php-doc-check/issues",
  9224. "source": "https://github.com/NielsdeBlaauw/php-doc-check/tree/master"
  9225. },
  9226. "time": "2019-02-10T20:38:29+00:00"
  9227. },
  9228. {
  9229. "name": "nikic/php-parser",
  9230. "version": "v4.10.4",
  9231. "source": {
  9232. "type": "git",
  9233. "url": "https://github.com/nikic/PHP-Parser.git",
  9234. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  9235. },
  9236. "dist": {
  9237. "type": "zip",
  9238. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  9239. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  9240. "shasum": ""
  9241. },
  9242. "require": {
  9243. "ext-tokenizer": "*",
  9244. "php": ">=7.0"
  9245. },
  9246. "require-dev": {
  9247. "ircmaxell/php-yacc": "^0.0.7",
  9248. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  9249. },
  9250. "bin": [
  9251. "bin/php-parse"
  9252. ],
  9253. "type": "library",
  9254. "extra": {
  9255. "branch-alias": {
  9256. "dev-master": "4.9-dev"
  9257. }
  9258. },
  9259. "autoload": {
  9260. "psr-4": {
  9261. "PhpParser\\": "lib/PhpParser"
  9262. }
  9263. },
  9264. "notification-url": "https://packagist.org/downloads/",
  9265. "license": [
  9266. "BSD-3-Clause"
  9267. ],
  9268. "authors": [
  9269. {
  9270. "name": "Nikita Popov"
  9271. }
  9272. ],
  9273. "description": "A PHP parser written in PHP",
  9274. "keywords": [
  9275. "parser",
  9276. "php"
  9277. ],
  9278. "support": {
  9279. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9280. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  9281. },
  9282. "time": "2020-12-20T10:01:03+00:00"
  9283. },
  9284. {
  9285. "name": "php-cs-fixer/diff",
  9286. "version": "v1.3.1",
  9287. "source": {
  9288. "type": "git",
  9289. "url": "https://github.com/PHP-CS-Fixer/diff.git",
  9290. "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759"
  9291. },
  9292. "dist": {
  9293. "type": "zip",
  9294. "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/dbd31aeb251639ac0b9e7e29405c1441907f5759",
  9295. "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759",
  9296. "shasum": ""
  9297. },
  9298. "require": {
  9299. "php": "^5.6 || ^7.0 || ^8.0"
  9300. },
  9301. "require-dev": {
  9302. "phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0",
  9303. "symfony/process": "^3.3"
  9304. },
  9305. "type": "library",
  9306. "autoload": {
  9307. "classmap": [
  9308. "src/"
  9309. ]
  9310. },
  9311. "notification-url": "https://packagist.org/downloads/",
  9312. "license": [
  9313. "BSD-3-Clause"
  9314. ],
  9315. "authors": [
  9316. {
  9317. "name": "Sebastian Bergmann",
  9318. "email": "sebastian@phpunit.de"
  9319. },
  9320. {
  9321. "name": "Kore Nordmann",
  9322. "email": "mail@kore-nordmann.de"
  9323. },
  9324. {
  9325. "name": "SpacePossum"
  9326. }
  9327. ],
  9328. "description": "sebastian/diff v2 backport support for PHP5.6",
  9329. "homepage": "https://github.com/PHP-CS-Fixer",
  9330. "keywords": [
  9331. "diff"
  9332. ],
  9333. "support": {
  9334. "issues": "https://github.com/PHP-CS-Fixer/diff/issues",
  9335. "source": "https://github.com/PHP-CS-Fixer/diff/tree/v1.3.1"
  9336. },
  9337. "time": "2020-10-14T08:39:05+00:00"
  9338. },
  9339. {
  9340. "name": "symfony/browser-kit",
  9341. "version": "v5.1.11",
  9342. "source": {
  9343. "type": "git",
  9344. "url": "https://github.com/symfony/browser-kit.git",
  9345. "reference": "8d0688f6f7c733ff4096d64656c8a3b320d9a1f8"
  9346. },
  9347. "dist": {
  9348. "type": "zip",
  9349. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/8d0688f6f7c733ff4096d64656c8a3b320d9a1f8",
  9350. "reference": "8d0688f6f7c733ff4096d64656c8a3b320d9a1f8",
  9351. "shasum": ""
  9352. },
  9353. "require": {
  9354. "php": ">=7.2.5",
  9355. "symfony/dom-crawler": "^4.4|^5.0"
  9356. },
  9357. "require-dev": {
  9358. "symfony/css-selector": "^4.4|^5.0",
  9359. "symfony/http-client": "^4.4|^5.0",
  9360. "symfony/mime": "^4.4|^5.0",
  9361. "symfony/process": "^4.4|^5.0"
  9362. },
  9363. "suggest": {
  9364. "symfony/process": ""
  9365. },
  9366. "type": "library",
  9367. "autoload": {
  9368. "psr-4": {
  9369. "Symfony\\Component\\BrowserKit\\": ""
  9370. },
  9371. "exclude-from-classmap": [
  9372. "/Tests/"
  9373. ]
  9374. },
  9375. "notification-url": "https://packagist.org/downloads/",
  9376. "license": [
  9377. "MIT"
  9378. ],
  9379. "authors": [
  9380. {
  9381. "name": "Fabien Potencier",
  9382. "email": "fabien@symfony.com"
  9383. },
  9384. {
  9385. "name": "Symfony Community",
  9386. "homepage": "https://symfony.com/contributors"
  9387. }
  9388. ],
  9389. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9390. "homepage": "https://symfony.com",
  9391. "support": {
  9392. "source": "https://github.com/symfony/browser-kit/tree/v5.1.11"
  9393. },
  9394. "funding": [
  9395. {
  9396. "url": "https://symfony.com/sponsor",
  9397. "type": "custom"
  9398. },
  9399. {
  9400. "url": "https://github.com/fabpot",
  9401. "type": "github"
  9402. },
  9403. {
  9404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9405. "type": "tidelift"
  9406. }
  9407. ],
  9408. "time": "2021-01-27T12:50:07+00:00"
  9409. },
  9410. {
  9411. "name": "symfony/css-selector",
  9412. "version": "v5.1.11",
  9413. "source": {
  9414. "type": "git",
  9415. "url": "https://github.com/symfony/css-selector.git",
  9416. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f"
  9417. },
  9418. "dist": {
  9419. "type": "zip",
  9420. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f65f217b3314504a1ec99c2d6ef69016bb13490f",
  9421. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f",
  9422. "shasum": ""
  9423. },
  9424. "require": {
  9425. "php": ">=7.2.5"
  9426. },
  9427. "type": "library",
  9428. "autoload": {
  9429. "psr-4": {
  9430. "Symfony\\Component\\CssSelector\\": ""
  9431. },
  9432. "exclude-from-classmap": [
  9433. "/Tests/"
  9434. ]
  9435. },
  9436. "notification-url": "https://packagist.org/downloads/",
  9437. "license": [
  9438. "MIT"
  9439. ],
  9440. "authors": [
  9441. {
  9442. "name": "Fabien Potencier",
  9443. "email": "fabien@symfony.com"
  9444. },
  9445. {
  9446. "name": "Jean-François Simon",
  9447. "email": "jeanfrancois.simon@sensiolabs.com"
  9448. },
  9449. {
  9450. "name": "Symfony Community",
  9451. "homepage": "https://symfony.com/contributors"
  9452. }
  9453. ],
  9454. "description": "Converts CSS selectors to XPath expressions",
  9455. "homepage": "https://symfony.com",
  9456. "support": {
  9457. "source": "https://github.com/symfony/css-selector/tree/v5.1.11"
  9458. },
  9459. "funding": [
  9460. {
  9461. "url": "https://symfony.com/sponsor",
  9462. "type": "custom"
  9463. },
  9464. {
  9465. "url": "https://github.com/fabpot",
  9466. "type": "github"
  9467. },
  9468. {
  9469. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9470. "type": "tidelift"
  9471. }
  9472. ],
  9473. "time": "2021-01-27T10:01:46+00:00"
  9474. },
  9475. {
  9476. "name": "symfony/debug-bundle",
  9477. "version": "v5.1.11",
  9478. "source": {
  9479. "type": "git",
  9480. "url": "https://github.com/symfony/debug-bundle.git",
  9481. "reference": "cc01b42c54ca5a3eed3e48f0c2327e1b3d46c16b"
  9482. },
  9483. "dist": {
  9484. "type": "zip",
  9485. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/cc01b42c54ca5a3eed3e48f0c2327e1b3d46c16b",
  9486. "reference": "cc01b42c54ca5a3eed3e48f0c2327e1b3d46c16b",
  9487. "shasum": ""
  9488. },
  9489. "require": {
  9490. "ext-xml": "*",
  9491. "php": ">=7.2.5",
  9492. "symfony/http-kernel": "^4.4|^5.0",
  9493. "symfony/twig-bridge": "^4.4|^5.0",
  9494. "symfony/var-dumper": "^4.4|^5.0"
  9495. },
  9496. "conflict": {
  9497. "symfony/config": "<4.4",
  9498. "symfony/dependency-injection": "<4.4"
  9499. },
  9500. "require-dev": {
  9501. "symfony/config": "^4.4|^5.0",
  9502. "symfony/dependency-injection": "^4.4|^5.0",
  9503. "symfony/web-profiler-bundle": "^4.4|^5.0"
  9504. },
  9505. "suggest": {
  9506. "symfony/config": "For service container configuration",
  9507. "symfony/dependency-injection": "For using as a service from the container"
  9508. },
  9509. "type": "symfony-bundle",
  9510. "autoload": {
  9511. "psr-4": {
  9512. "Symfony\\Bundle\\DebugBundle\\": ""
  9513. },
  9514. "exclude-from-classmap": [
  9515. "/Tests/"
  9516. ]
  9517. },
  9518. "notification-url": "https://packagist.org/downloads/",
  9519. "license": [
  9520. "MIT"
  9521. ],
  9522. "authors": [
  9523. {
  9524. "name": "Fabien Potencier",
  9525. "email": "fabien@symfony.com"
  9526. },
  9527. {
  9528. "name": "Symfony Community",
  9529. "homepage": "https://symfony.com/contributors"
  9530. }
  9531. ],
  9532. "description": "Provides a tight integration of the Symfony Debug component into the Symfony full-stack framework",
  9533. "homepage": "https://symfony.com",
  9534. "support": {
  9535. "source": "https://github.com/symfony/debug-bundle/tree/v5.1.11"
  9536. },
  9537. "funding": [
  9538. {
  9539. "url": "https://symfony.com/sponsor",
  9540. "type": "custom"
  9541. },
  9542. {
  9543. "url": "https://github.com/fabpot",
  9544. "type": "github"
  9545. },
  9546. {
  9547. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9548. "type": "tidelift"
  9549. }
  9550. ],
  9551. "time": "2021-01-10T16:29:19+00:00"
  9552. },
  9553. {
  9554. "name": "symfony/debug-pack",
  9555. "version": "v1.0.9",
  9556. "source": {
  9557. "type": "git",
  9558. "url": "https://github.com/symfony/debug-pack.git",
  9559. "reference": "cfd5093378e9cafe500f05c777a22fe8a64a9342"
  9560. },
  9561. "dist": {
  9562. "type": "zip",
  9563. "url": "https://api.github.com/repos/symfony/debug-pack/zipball/cfd5093378e9cafe500f05c777a22fe8a64a9342",
  9564. "reference": "cfd5093378e9cafe500f05c777a22fe8a64a9342",
  9565. "shasum": ""
  9566. },
  9567. "require": {
  9568. "symfony/debug-bundle": "*",
  9569. "symfony/monolog-bundle": "^3.0",
  9570. "symfony/profiler-pack": "*",
  9571. "symfony/var-dumper": "*"
  9572. },
  9573. "type": "symfony-pack",
  9574. "notification-url": "https://packagist.org/downloads/",
  9575. "license": [
  9576. "MIT"
  9577. ],
  9578. "description": "A debug pack for Symfony projects",
  9579. "support": {
  9580. "issues": "https://github.com/symfony/debug-pack/issues",
  9581. "source": "https://github.com/symfony/debug-pack/tree/v1.0.9"
  9582. },
  9583. "funding": [
  9584. {
  9585. "url": "https://symfony.com/sponsor",
  9586. "type": "custom"
  9587. },
  9588. {
  9589. "url": "https://github.com/fabpot",
  9590. "type": "github"
  9591. },
  9592. {
  9593. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9594. "type": "tidelift"
  9595. }
  9596. ],
  9597. "time": "2020-10-19T08:51:51+00:00"
  9598. },
  9599. {
  9600. "name": "symfony/dom-crawler",
  9601. "version": "v5.1.11",
  9602. "source": {
  9603. "type": "git",
  9604. "url": "https://github.com/symfony/dom-crawler.git",
  9605. "reference": "5d89ceb53ec65e1973a555072fac8ed5ecad3384"
  9606. },
  9607. "dist": {
  9608. "type": "zip",
  9609. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/5d89ceb53ec65e1973a555072fac8ed5ecad3384",
  9610. "reference": "5d89ceb53ec65e1973a555072fac8ed5ecad3384",
  9611. "shasum": ""
  9612. },
  9613. "require": {
  9614. "php": ">=7.2.5",
  9615. "symfony/polyfill-ctype": "~1.8",
  9616. "symfony/polyfill-mbstring": "~1.0",
  9617. "symfony/polyfill-php80": "^1.15"
  9618. },
  9619. "conflict": {
  9620. "masterminds/html5": "<2.6"
  9621. },
  9622. "require-dev": {
  9623. "masterminds/html5": "^2.6",
  9624. "symfony/css-selector": "^4.4|^5.0"
  9625. },
  9626. "suggest": {
  9627. "symfony/css-selector": ""
  9628. },
  9629. "type": "library",
  9630. "autoload": {
  9631. "psr-4": {
  9632. "Symfony\\Component\\DomCrawler\\": ""
  9633. },
  9634. "exclude-from-classmap": [
  9635. "/Tests/"
  9636. ]
  9637. },
  9638. "notification-url": "https://packagist.org/downloads/",
  9639. "license": [
  9640. "MIT"
  9641. ],
  9642. "authors": [
  9643. {
  9644. "name": "Fabien Potencier",
  9645. "email": "fabien@symfony.com"
  9646. },
  9647. {
  9648. "name": "Symfony Community",
  9649. "homepage": "https://symfony.com/contributors"
  9650. }
  9651. ],
  9652. "description": "Eases DOM navigation for HTML and XML documents",
  9653. "homepage": "https://symfony.com",
  9654. "support": {
  9655. "source": "https://github.com/symfony/dom-crawler/tree/v5.1.11"
  9656. },
  9657. "funding": [
  9658. {
  9659. "url": "https://symfony.com/sponsor",
  9660. "type": "custom"
  9661. },
  9662. {
  9663. "url": "https://github.com/fabpot",
  9664. "type": "github"
  9665. },
  9666. {
  9667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9668. "type": "tidelift"
  9669. }
  9670. ],
  9671. "time": "2021-01-27T10:01:46+00:00"
  9672. },
  9673. {
  9674. "name": "symfony/maker-bundle",
  9675. "version": "v1.29.1",
  9676. "source": {
  9677. "type": "git",
  9678. "url": "https://github.com/symfony/maker-bundle.git",
  9679. "reference": "313b5669a5370bf36cd34fa8f5b5bbbfa5fb8aa8"
  9680. },
  9681. "dist": {
  9682. "type": "zip",
  9683. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/313b5669a5370bf36cd34fa8f5b5bbbfa5fb8aa8",
  9684. "reference": "313b5669a5370bf36cd34fa8f5b5bbbfa5fb8aa8",
  9685. "shasum": ""
  9686. },
  9687. "require": {
  9688. "doctrine/inflector": "^1.2|^2.0",
  9689. "nikic/php-parser": "^4.0",
  9690. "php": ">=7.1.3",
  9691. "symfony/config": "^3.4|^4.0|^5.0",
  9692. "symfony/console": "^3.4|^4.0|^5.0",
  9693. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9694. "symfony/deprecation-contracts": "^2.2",
  9695. "symfony/filesystem": "^3.4|^4.0|^5.0",
  9696. "symfony/finder": "^3.4|^4.0|^5.0",
  9697. "symfony/framework-bundle": "^3.4|^4.0|^5.0",
  9698. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  9699. },
  9700. "require-dev": {
  9701. "composer/semver": "^3.0@dev",
  9702. "doctrine/doctrine-bundle": "^1.8|^2.0",
  9703. "doctrine/orm": "^2.3",
  9704. "friendsofphp/php-cs-fixer": "^2.8",
  9705. "friendsoftwig/twigcs": "^3.1.2",
  9706. "symfony/http-client": "^4.3|^5.0",
  9707. "symfony/phpunit-bridge": "^4.3|^5.0",
  9708. "symfony/process": "^3.4|^4.0|^5.0",
  9709. "symfony/security-core": "^3.4|^4.0|^5.0",
  9710. "symfony/yaml": "^3.4|^4.0|^5.0"
  9711. },
  9712. "type": "symfony-bundle",
  9713. "extra": {
  9714. "branch-alias": {
  9715. "dev-main": "1.0-dev"
  9716. }
  9717. },
  9718. "autoload": {
  9719. "psr-4": {
  9720. "Symfony\\Bundle\\MakerBundle\\": "src/"
  9721. }
  9722. },
  9723. "notification-url": "https://packagist.org/downloads/",
  9724. "license": [
  9725. "MIT"
  9726. ],
  9727. "authors": [
  9728. {
  9729. "name": "Symfony Community",
  9730. "homepage": "https://symfony.com/contributors"
  9731. }
  9732. ],
  9733. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  9734. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  9735. "keywords": [
  9736. "code generator",
  9737. "generator",
  9738. "scaffold",
  9739. "scaffolding"
  9740. ],
  9741. "support": {
  9742. "issues": "https://github.com/symfony/maker-bundle/issues",
  9743. "source": "https://github.com/symfony/maker-bundle/tree/v1.29.1"
  9744. },
  9745. "funding": [
  9746. {
  9747. "url": "https://symfony.com/sponsor",
  9748. "type": "custom"
  9749. },
  9750. {
  9751. "url": "https://github.com/fabpot",
  9752. "type": "github"
  9753. },
  9754. {
  9755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9756. "type": "tidelift"
  9757. }
  9758. ],
  9759. "time": "2021-02-10T19:21:31+00:00"
  9760. },
  9761. {
  9762. "name": "symfony/phpunit-bridge",
  9763. "version": "v5.2.3",
  9764. "source": {
  9765. "type": "git",
  9766. "url": "https://github.com/symfony/phpunit-bridge.git",
  9767. "reference": "587f2b6bbcda8c473b91c18165958ffbb8af3c4c"
  9768. },
  9769. "dist": {
  9770. "type": "zip",
  9771. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/587f2b6bbcda8c473b91c18165958ffbb8af3c4c",
  9772. "reference": "587f2b6bbcda8c473b91c18165958ffbb8af3c4c",
  9773. "shasum": ""
  9774. },
  9775. "require": {
  9776. "php": ">=5.5.9"
  9777. },
  9778. "conflict": {
  9779. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0|<6.4,>=6.0|9.1.2"
  9780. },
  9781. "require-dev": {
  9782. "symfony/deprecation-contracts": "^2.1",
  9783. "symfony/error-handler": "^4.4|^5.0"
  9784. },
  9785. "suggest": {
  9786. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  9787. },
  9788. "bin": [
  9789. "bin/simple-phpunit"
  9790. ],
  9791. "type": "symfony-bridge",
  9792. "extra": {
  9793. "thanks": {
  9794. "name": "phpunit/phpunit",
  9795. "url": "https://github.com/sebastianbergmann/phpunit"
  9796. }
  9797. },
  9798. "autoload": {
  9799. "files": [
  9800. "bootstrap.php"
  9801. ],
  9802. "psr-4": {
  9803. "Symfony\\Bridge\\PhpUnit\\": ""
  9804. },
  9805. "exclude-from-classmap": [
  9806. "/Tests/"
  9807. ]
  9808. },
  9809. "notification-url": "https://packagist.org/downloads/",
  9810. "license": [
  9811. "MIT"
  9812. ],
  9813. "authors": [
  9814. {
  9815. "name": "Nicolas Grekas",
  9816. "email": "p@tchwork.com"
  9817. },
  9818. {
  9819. "name": "Symfony Community",
  9820. "homepage": "https://symfony.com/contributors"
  9821. }
  9822. ],
  9823. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  9824. "homepage": "https://symfony.com",
  9825. "support": {
  9826. "source": "https://github.com/symfony/phpunit-bridge/tree/v5.2.3"
  9827. },
  9828. "funding": [
  9829. {
  9830. "url": "https://symfony.com/sponsor",
  9831. "type": "custom"
  9832. },
  9833. {
  9834. "url": "https://github.com/fabpot",
  9835. "type": "github"
  9836. },
  9837. {
  9838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9839. "type": "tidelift"
  9840. }
  9841. ],
  9842. "time": "2021-01-25T13:54:05+00:00"
  9843. },
  9844. {
  9845. "name": "symfony/profiler-pack",
  9846. "version": "v1.0.5",
  9847. "source": {
  9848. "type": "git",
  9849. "url": "https://github.com/symfony/profiler-pack.git",
  9850. "reference": "29ec66471082b4eb068db11eb4f0a48c277653f7"
  9851. },
  9852. "dist": {
  9853. "type": "zip",
  9854. "url": "https://api.github.com/repos/symfony/profiler-pack/zipball/29ec66471082b4eb068db11eb4f0a48c277653f7",
  9855. "reference": "29ec66471082b4eb068db11eb4f0a48c277653f7",
  9856. "shasum": ""
  9857. },
  9858. "require": {
  9859. "symfony/stopwatch": "*",
  9860. "symfony/twig-bundle": "*",
  9861. "symfony/web-profiler-bundle": "*"
  9862. },
  9863. "type": "symfony-pack",
  9864. "notification-url": "https://packagist.org/downloads/",
  9865. "license": [
  9866. "MIT"
  9867. ],
  9868. "description": "A pack for the Symfony web profiler",
  9869. "support": {
  9870. "issues": "https://github.com/symfony/profiler-pack/issues",
  9871. "source": "https://github.com/symfony/profiler-pack/tree/v1.0.5"
  9872. },
  9873. "funding": [
  9874. {
  9875. "url": "https://symfony.com/sponsor",
  9876. "type": "custom"
  9877. },
  9878. {
  9879. "url": "https://github.com/fabpot",
  9880. "type": "github"
  9881. },
  9882. {
  9883. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9884. "type": "tidelift"
  9885. }
  9886. ],
  9887. "time": "2020-08-12T06:50:46+00:00"
  9888. },
  9889. {
  9890. "name": "symfony/test-pack",
  9891. "version": "v1.0.7",
  9892. "source": {
  9893. "type": "git",
  9894. "url": "https://github.com/symfony/test-pack.git",
  9895. "reference": "e61756c97cbedae00b7cf43b87abcfadfeb2746c"
  9896. },
  9897. "dist": {
  9898. "type": "zip",
  9899. "url": "https://api.github.com/repos/symfony/test-pack/zipball/e61756c97cbedae00b7cf43b87abcfadfeb2746c",
  9900. "reference": "e61756c97cbedae00b7cf43b87abcfadfeb2746c",
  9901. "shasum": ""
  9902. },
  9903. "require": {
  9904. "symfony/browser-kit": "*",
  9905. "symfony/css-selector": "*",
  9906. "symfony/phpunit-bridge": "*"
  9907. },
  9908. "type": "symfony-pack",
  9909. "notification-url": "https://packagist.org/downloads/",
  9910. "license": [
  9911. "MIT"
  9912. ],
  9913. "description": "A pack for functional and end-to-end testing within a Symfony app",
  9914. "support": {
  9915. "issues": "https://github.com/symfony/test-pack/issues",
  9916. "source": "https://github.com/symfony/test-pack/tree/v1.0.7"
  9917. },
  9918. "funding": [
  9919. {
  9920. "url": "https://symfony.com/sponsor",
  9921. "type": "custom"
  9922. },
  9923. {
  9924. "url": "https://github.com/fabpot",
  9925. "type": "github"
  9926. },
  9927. {
  9928. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9929. "type": "tidelift"
  9930. }
  9931. ],
  9932. "time": "2020-10-19T08:52:28+00:00"
  9933. },
  9934. {
  9935. "name": "symfony/web-profiler-bundle",
  9936. "version": "v5.1.11",
  9937. "source": {
  9938. "type": "git",
  9939. "url": "https://github.com/symfony/web-profiler-bundle.git",
  9940. "reference": "9a906203efff7df59d1e0185f7aa05e631eb4ef7"
  9941. },
  9942. "dist": {
  9943. "type": "zip",
  9944. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/9a906203efff7df59d1e0185f7aa05e631eb4ef7",
  9945. "reference": "9a906203efff7df59d1e0185f7aa05e631eb4ef7",
  9946. "shasum": ""
  9947. },
  9948. "require": {
  9949. "php": ">=7.2.5",
  9950. "symfony/config": "^4.4|^5.0",
  9951. "symfony/framework-bundle": "^5.1",
  9952. "symfony/http-kernel": "^4.4|^5.0",
  9953. "symfony/routing": "^4.4|^5.0",
  9954. "symfony/twig-bundle": "^4.4|^5.0",
  9955. "twig/twig": "^2.13|^3.0.4"
  9956. },
  9957. "conflict": {
  9958. "symfony/form": "<4.4",
  9959. "symfony/messenger": "<4.4"
  9960. },
  9961. "require-dev": {
  9962. "symfony/browser-kit": "^4.4|^5.0",
  9963. "symfony/console": "^4.4|^5.0",
  9964. "symfony/css-selector": "^4.4|^5.0",
  9965. "symfony/stopwatch": "^4.4|^5.0"
  9966. },
  9967. "type": "symfony-bundle",
  9968. "autoload": {
  9969. "psr-4": {
  9970. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  9971. },
  9972. "exclude-from-classmap": [
  9973. "/Tests/"
  9974. ]
  9975. },
  9976. "notification-url": "https://packagist.org/downloads/",
  9977. "license": [
  9978. "MIT"
  9979. ],
  9980. "authors": [
  9981. {
  9982. "name": "Fabien Potencier",
  9983. "email": "fabien@symfony.com"
  9984. },
  9985. {
  9986. "name": "Symfony Community",
  9987. "homepage": "https://symfony.com/contributors"
  9988. }
  9989. ],
  9990. "description": "Provides a development tool that gives detailed information about the execution of any request",
  9991. "homepage": "https://symfony.com",
  9992. "support": {
  9993. "source": "https://github.com/symfony/web-profiler-bundle/tree/v5.1.11"
  9994. },
  9995. "funding": [
  9996. {
  9997. "url": "https://symfony.com/sponsor",
  9998. "type": "custom"
  9999. },
  10000. {
  10001. "url": "https://github.com/fabpot",
  10002. "type": "github"
  10003. },
  10004. {
  10005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10006. "type": "tidelift"
  10007. }
  10008. ],
  10009. "time": "2021-01-27T10:01:46+00:00"
  10010. },
  10011. {
  10012. "name": "ulrichsg/getopt-php",
  10013. "version": "v3.4.0",
  10014. "source": {
  10015. "type": "git",
  10016. "url": "https://github.com/getopt-php/getopt-php.git",
  10017. "reference": "9121d7c2c51a6a59ee407c49a13b4d8cfae71075"
  10018. },
  10019. "dist": {
  10020. "type": "zip",
  10021. "url": "https://api.github.com/repos/getopt-php/getopt-php/zipball/9121d7c2c51a6a59ee407c49a13b4d8cfae71075",
  10022. "reference": "9121d7c2c51a6a59ee407c49a13b4d8cfae71075",
  10023. "shasum": ""
  10024. },
  10025. "require": {
  10026. "ext-mbstring": "*",
  10027. "php": ">=5.4.0"
  10028. },
  10029. "require-dev": {
  10030. "phpunit/phpunit": "^4.8",
  10031. "squizlabs/php_codesniffer": "^2.7"
  10032. },
  10033. "type": "library",
  10034. "autoload": {
  10035. "psr-4": {
  10036. "GetOpt\\": "src"
  10037. }
  10038. },
  10039. "notification-url": "https://packagist.org/downloads/",
  10040. "license": [
  10041. "MIT"
  10042. ],
  10043. "authors": [
  10044. {
  10045. "name": "Ulrich Schmidt-Goertz",
  10046. "email": "ulrich@schmidt-goertz.de"
  10047. },
  10048. {
  10049. "name": "Thomas Flori",
  10050. "email": "thflori@gmail.com"
  10051. }
  10052. ],
  10053. "description": "Command line arguments parser for PHP 5.4 - 7.3",
  10054. "homepage": "http://getopt-php.github.io/getopt-php",
  10055. "support": {
  10056. "issues": "https://github.com/getopt-php/getopt-php/issues",
  10057. "source": "https://github.com/getopt-php/getopt-php/tree/v3.4.0"
  10058. },
  10059. "time": "2020-07-14T06:09:04+00:00"
  10060. },
  10061. {
  10062. "name": "wp-cli/php-cli-tools",
  10063. "version": "v0.11.11",
  10064. "source": {
  10065. "type": "git",
  10066. "url": "https://github.com/wp-cli/php-cli-tools.git",
  10067. "reference": "fe9c7c44a9e1bf2196ec51dc38da0593dbf2993f"
  10068. },
  10069. "dist": {
  10070. "type": "zip",
  10071. "url": "https://api.github.com/repos/wp-cli/php-cli-tools/zipball/fe9c7c44a9e1bf2196ec51dc38da0593dbf2993f",
  10072. "reference": "fe9c7c44a9e1bf2196ec51dc38da0593dbf2993f",
  10073. "shasum": ""
  10074. },
  10075. "require": {
  10076. "php": ">= 5.3.0"
  10077. },
  10078. "type": "library",
  10079. "autoload": {
  10080. "psr-0": {
  10081. "cli": "lib/"
  10082. },
  10083. "files": [
  10084. "lib/cli/cli.php"
  10085. ]
  10086. },
  10087. "notification-url": "https://packagist.org/downloads/",
  10088. "license": [
  10089. "MIT"
  10090. ],
  10091. "authors": [
  10092. {
  10093. "name": "James Logsdon",
  10094. "email": "jlogsdon@php.net",
  10095. "role": "Developer"
  10096. },
  10097. {
  10098. "name": "Daniel Bachhuber",
  10099. "email": "daniel@handbuilt.co",
  10100. "role": "Maintainer"
  10101. }
  10102. ],
  10103. "description": "Console utilities for PHP",
  10104. "homepage": "http://github.com/wp-cli/php-cli-tools",
  10105. "keywords": [
  10106. "cli",
  10107. "console"
  10108. ],
  10109. "support": {
  10110. "issues": "https://github.com/wp-cli/php-cli-tools/issues",
  10111. "source": "https://github.com/wp-cli/php-cli-tools/tree/master"
  10112. },
  10113. "time": "2018-09-04T13:28:00+00:00"
  10114. }
  10115. ],
  10116. "aliases": [],
  10117. "minimum-stability": "stable",
  10118. "stability-flags": {
  10119. "alchemy/zippy": 20
  10120. },
  10121. "prefer-stable": false,
  10122. "prefer-lowest": false,
  10123. "platform": {
  10124. "php": "^7.4",
  10125. "ext-ctype": "*",
  10126. "ext-iconv": "*"
  10127. },
  10128. "platform-dev": [],
  10129. "plugin-api-version": "2.0.0"
  10130. }