composer.lock 352 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888
  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": "738b33106c8766b1b1028efd0d9fc94d",
  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. "time": "2016-05-22T08:56:59+00:00"
  64. },
  65. {
  66. "name": "alchemy/zippy",
  67. "version": "v0.5.x-dev",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/alchemy-fr/Zippy.git",
  71. "reference": "a1f0a0d67af1eb247191e938f1d3ee625b90e2a1"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/a1f0a0d67af1eb247191e938f1d3ee625b90e2a1",
  76. "reference": "a1f0a0d67af1eb247191e938f1d3ee625b90e2a1",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "alchemy/resource-component": "^0.1",
  81. "ext-mbstring": "*",
  82. "php": ">=5.5"
  83. },
  84. "require-dev": {
  85. "ext-rar": "*",
  86. "ext-zip": "*",
  87. "guzzle/guzzle": "~3.0",
  88. "guzzlehttp/guzzle": "^6.0",
  89. "pear-pear.php.net/archive_tar": "*",
  90. "phpunit/phpunit": "^4.0|^5.0"
  91. },
  92. "suggest": {
  93. "ext-rar": "To read/write Rar files",
  94. "ext-tar": "To read/write Tar files",
  95. "ext-zip": "To read/write Zip files",
  96. "guzzle/guzzle": "To read archives and files from remote sources (Guzzle 3)",
  97. "guzzlehttp/guzzle": "To read archives and files from remote sources (Guzzle 6)"
  98. },
  99. "type": "library",
  100. "extra": {
  101. "branch-alias": {
  102. "dev-master": "0.4.x-dev"
  103. }
  104. },
  105. "autoload": {
  106. "psr-4": {
  107. "Alchemy\\Zippy\\": "src/"
  108. }
  109. },
  110. "notification-url": "https://packagist.org/downloads/",
  111. "license": [
  112. "MIT"
  113. ],
  114. "authors": [
  115. {
  116. "name": "Alchemy",
  117. "email": "dev.team@alchemy.fr",
  118. "homepage": "http://www.alchemy.fr/"
  119. }
  120. ],
  121. "description": "Zippy, the archive manager companion",
  122. "keywords": [
  123. "bzip",
  124. "compression",
  125. "tar",
  126. "zip"
  127. ],
  128. "time": "2016-06-29T15:53:10+00:00"
  129. },
  130. {
  131. "name": "beberlei/assert",
  132. "version": "v2.9.9",
  133. "source": {
  134. "type": "git",
  135. "url": "https://github.com/beberlei/assert.git",
  136. "reference": "124317de301b7c91d5fce34c98bba2c6925bec95"
  137. },
  138. "dist": {
  139. "type": "zip",
  140. "url": "https://api.github.com/repos/beberlei/assert/zipball/124317de301b7c91d5fce34c98bba2c6925bec95",
  141. "reference": "124317de301b7c91d5fce34c98bba2c6925bec95",
  142. "shasum": ""
  143. },
  144. "require": {
  145. "ext-mbstring": "*",
  146. "php": ">=5.3"
  147. },
  148. "require-dev": {
  149. "friendsofphp/php-cs-fixer": "^2.1.1",
  150. "phpunit/phpunit": "^4.8.35|^5.7"
  151. },
  152. "type": "library",
  153. "autoload": {
  154. "psr-4": {
  155. "Assert\\": "lib/Assert"
  156. },
  157. "files": [
  158. "lib/Assert/functions.php"
  159. ]
  160. },
  161. "notification-url": "https://packagist.org/downloads/",
  162. "license": [
  163. "BSD-2-Clause"
  164. ],
  165. "authors": [
  166. {
  167. "name": "Benjamin Eberlei",
  168. "email": "kontakt@beberlei.de",
  169. "role": "Lead Developer"
  170. },
  171. {
  172. "name": "Richard Quadling",
  173. "email": "rquadling@gmail.com",
  174. "role": "Collaborator"
  175. }
  176. ],
  177. "description": "Thin assertion library for input validation in business models.",
  178. "keywords": [
  179. "assert",
  180. "assertion",
  181. "validation"
  182. ],
  183. "time": "2019-05-28T15:27:37+00:00"
  184. },
  185. {
  186. "name": "composer/package-versions-deprecated",
  187. "version": "1.11.99",
  188. "source": {
  189. "type": "git",
  190. "url": "https://github.com/composer/package-versions-deprecated.git",
  191. "reference": "c8c9aa8a14cc3d3bec86d0a8c3fa52ea79936855"
  192. },
  193. "dist": {
  194. "type": "zip",
  195. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/c8c9aa8a14cc3d3bec86d0a8c3fa52ea79936855",
  196. "reference": "c8c9aa8a14cc3d3bec86d0a8c3fa52ea79936855",
  197. "shasum": ""
  198. },
  199. "require": {
  200. "composer-plugin-api": "^1.1.0 || ^2.0",
  201. "php": "^7 || ^8"
  202. },
  203. "replace": {
  204. "ocramius/package-versions": "1.11.99"
  205. },
  206. "require-dev": {
  207. "composer/composer": "^1.9.3 || ^2.0@dev",
  208. "ext-zip": "^1.13",
  209. "phpunit/phpunit": "^6.5 || ^7"
  210. },
  211. "type": "composer-plugin",
  212. "extra": {
  213. "class": "PackageVersions\\Installer",
  214. "branch-alias": {
  215. "dev-master": "1.x-dev"
  216. }
  217. },
  218. "autoload": {
  219. "psr-4": {
  220. "PackageVersions\\": "src/PackageVersions"
  221. }
  222. },
  223. "notification-url": "https://packagist.org/downloads/",
  224. "license": [
  225. "MIT"
  226. ],
  227. "authors": [
  228. {
  229. "name": "Marco Pivetta",
  230. "email": "ocramius@gmail.com"
  231. },
  232. {
  233. "name": "Jordi Boggiano",
  234. "email": "j.boggiano@seld.be"
  235. }
  236. ],
  237. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  238. "funding": [
  239. {
  240. "url": "https://packagist.com",
  241. "type": "custom"
  242. },
  243. {
  244. "url": "https://github.com/composer",
  245. "type": "github"
  246. },
  247. {
  248. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  249. "type": "tidelift"
  250. }
  251. ],
  252. "time": "2020-08-25T05:50:16+00:00"
  253. },
  254. {
  255. "name": "doctrine/annotations",
  256. "version": "1.10.4",
  257. "source": {
  258. "type": "git",
  259. "url": "https://github.com/doctrine/annotations.git",
  260. "reference": "bfe91e31984e2ba76df1c1339681770401ec262f"
  261. },
  262. "dist": {
  263. "type": "zip",
  264. "url": "https://api.github.com/repos/doctrine/annotations/zipball/bfe91e31984e2ba76df1c1339681770401ec262f",
  265. "reference": "bfe91e31984e2ba76df1c1339681770401ec262f",
  266. "shasum": ""
  267. },
  268. "require": {
  269. "doctrine/lexer": "1.*",
  270. "ext-tokenizer": "*",
  271. "php": "^7.1 || ^8.0"
  272. },
  273. "require-dev": {
  274. "doctrine/cache": "1.*",
  275. "phpstan/phpstan": "^0.12.20",
  276. "phpunit/phpunit": "^7.5 || ^9.1.5"
  277. },
  278. "type": "library",
  279. "extra": {
  280. "branch-alias": {
  281. "dev-master": "1.9.x-dev"
  282. }
  283. },
  284. "autoload": {
  285. "psr-4": {
  286. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  287. }
  288. },
  289. "notification-url": "https://packagist.org/downloads/",
  290. "license": [
  291. "MIT"
  292. ],
  293. "authors": [
  294. {
  295. "name": "Guilherme Blanco",
  296. "email": "guilhermeblanco@gmail.com"
  297. },
  298. {
  299. "name": "Roman Borschel",
  300. "email": "roman@code-factory.org"
  301. },
  302. {
  303. "name": "Benjamin Eberlei",
  304. "email": "kontakt@beberlei.de"
  305. },
  306. {
  307. "name": "Jonathan Wage",
  308. "email": "jonwage@gmail.com"
  309. },
  310. {
  311. "name": "Johannes Schmitt",
  312. "email": "schmittjoh@gmail.com"
  313. }
  314. ],
  315. "description": "Docblock Annotations Parser",
  316. "homepage": "http://www.doctrine-project.org",
  317. "keywords": [
  318. "annotations",
  319. "docblock",
  320. "parser"
  321. ],
  322. "time": "2020-08-10T19:35:50+00:00"
  323. },
  324. {
  325. "name": "doctrine/cache",
  326. "version": "1.10.2",
  327. "source": {
  328. "type": "git",
  329. "url": "https://github.com/doctrine/cache.git",
  330. "reference": "13e3381b25847283a91948d04640543941309727"
  331. },
  332. "dist": {
  333. "type": "zip",
  334. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  335. "reference": "13e3381b25847283a91948d04640543941309727",
  336. "shasum": ""
  337. },
  338. "require": {
  339. "php": "~7.1 || ^8.0"
  340. },
  341. "conflict": {
  342. "doctrine/common": ">2.2,<2.4"
  343. },
  344. "require-dev": {
  345. "alcaeus/mongo-php-adapter": "^1.1",
  346. "doctrine/coding-standard": "^6.0",
  347. "mongodb/mongodb": "^1.1",
  348. "phpunit/phpunit": "^7.0",
  349. "predis/predis": "~1.0"
  350. },
  351. "suggest": {
  352. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  353. },
  354. "type": "library",
  355. "extra": {
  356. "branch-alias": {
  357. "dev-master": "1.9.x-dev"
  358. }
  359. },
  360. "autoload": {
  361. "psr-4": {
  362. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  363. }
  364. },
  365. "notification-url": "https://packagist.org/downloads/",
  366. "license": [
  367. "MIT"
  368. ],
  369. "authors": [
  370. {
  371. "name": "Guilherme Blanco",
  372. "email": "guilhermeblanco@gmail.com"
  373. },
  374. {
  375. "name": "Roman Borschel",
  376. "email": "roman@code-factory.org"
  377. },
  378. {
  379. "name": "Benjamin Eberlei",
  380. "email": "kontakt@beberlei.de"
  381. },
  382. {
  383. "name": "Jonathan Wage",
  384. "email": "jonwage@gmail.com"
  385. },
  386. {
  387. "name": "Johannes Schmitt",
  388. "email": "schmittjoh@gmail.com"
  389. }
  390. ],
  391. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  392. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  393. "keywords": [
  394. "abstraction",
  395. "apcu",
  396. "cache",
  397. "caching",
  398. "couchdb",
  399. "memcached",
  400. "php",
  401. "redis",
  402. "xcache"
  403. ],
  404. "funding": [
  405. {
  406. "url": "https://www.doctrine-project.org/sponsorship.html",
  407. "type": "custom"
  408. },
  409. {
  410. "url": "https://www.patreon.com/phpdoctrine",
  411. "type": "patreon"
  412. },
  413. {
  414. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  415. "type": "tidelift"
  416. }
  417. ],
  418. "time": "2020-07-07T18:54:01+00:00"
  419. },
  420. {
  421. "name": "doctrine/collections",
  422. "version": "1.6.7",
  423. "source": {
  424. "type": "git",
  425. "url": "https://github.com/doctrine/collections.git",
  426. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  427. },
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  431. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  432. "shasum": ""
  433. },
  434. "require": {
  435. "php": "^7.1.3 || ^8.0"
  436. },
  437. "require-dev": {
  438. "doctrine/coding-standard": "^6.0",
  439. "phpstan/phpstan-shim": "^0.9.2",
  440. "phpunit/phpunit": "^7.0",
  441. "vimeo/psalm": "^3.8.1"
  442. },
  443. "type": "library",
  444. "autoload": {
  445. "psr-4": {
  446. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  447. }
  448. },
  449. "notification-url": "https://packagist.org/downloads/",
  450. "license": [
  451. "MIT"
  452. ],
  453. "authors": [
  454. {
  455. "name": "Guilherme Blanco",
  456. "email": "guilhermeblanco@gmail.com"
  457. },
  458. {
  459. "name": "Roman Borschel",
  460. "email": "roman@code-factory.org"
  461. },
  462. {
  463. "name": "Benjamin Eberlei",
  464. "email": "kontakt@beberlei.de"
  465. },
  466. {
  467. "name": "Jonathan Wage",
  468. "email": "jonwage@gmail.com"
  469. },
  470. {
  471. "name": "Johannes Schmitt",
  472. "email": "schmittjoh@gmail.com"
  473. }
  474. ],
  475. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  476. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  477. "keywords": [
  478. "array",
  479. "collections",
  480. "iterators",
  481. "php"
  482. ],
  483. "time": "2020-07-27T17:53:49+00:00"
  484. },
  485. {
  486. "name": "doctrine/common",
  487. "version": "3.0.2",
  488. "source": {
  489. "type": "git",
  490. "url": "https://github.com/doctrine/common.git",
  491. "reference": "a3c6479858989e242a2465972b4f7a8642baf0d4"
  492. },
  493. "dist": {
  494. "type": "zip",
  495. "url": "https://api.github.com/repos/doctrine/common/zipball/a3c6479858989e242a2465972b4f7a8642baf0d4",
  496. "reference": "a3c6479858989e242a2465972b4f7a8642baf0d4",
  497. "shasum": ""
  498. },
  499. "require": {
  500. "doctrine/persistence": "^2.0",
  501. "php": "^7.1 || ^8.0"
  502. },
  503. "require-dev": {
  504. "doctrine/coding-standard": "^1.0",
  505. "phpstan/phpstan": "^0.11",
  506. "phpstan/phpstan-phpunit": "^0.11",
  507. "phpunit/phpunit": "^7.0",
  508. "squizlabs/php_codesniffer": "^3.0",
  509. "symfony/phpunit-bridge": "^4.0.5"
  510. },
  511. "type": "library",
  512. "extra": {
  513. "branch-alias": {
  514. "dev-master": "3.0.x-dev"
  515. }
  516. },
  517. "autoload": {
  518. "psr-4": {
  519. "Doctrine\\Common\\": "lib/Doctrine/Common"
  520. }
  521. },
  522. "notification-url": "https://packagist.org/downloads/",
  523. "license": [
  524. "MIT"
  525. ],
  526. "authors": [
  527. {
  528. "name": "Guilherme Blanco",
  529. "email": "guilhermeblanco@gmail.com"
  530. },
  531. {
  532. "name": "Roman Borschel",
  533. "email": "roman@code-factory.org"
  534. },
  535. {
  536. "name": "Benjamin Eberlei",
  537. "email": "kontakt@beberlei.de"
  538. },
  539. {
  540. "name": "Jonathan Wage",
  541. "email": "jonwage@gmail.com"
  542. },
  543. {
  544. "name": "Johannes Schmitt",
  545. "email": "schmittjoh@gmail.com"
  546. },
  547. {
  548. "name": "Marco Pivetta",
  549. "email": "ocramius@gmail.com"
  550. }
  551. ],
  552. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  553. "homepage": "https://www.doctrine-project.org/projects/common.html",
  554. "keywords": [
  555. "common",
  556. "doctrine",
  557. "php"
  558. ],
  559. "funding": [
  560. {
  561. "url": "https://www.doctrine-project.org/sponsorship.html",
  562. "type": "custom"
  563. },
  564. {
  565. "url": "https://www.patreon.com/phpdoctrine",
  566. "type": "patreon"
  567. },
  568. {
  569. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  570. "type": "tidelift"
  571. }
  572. ],
  573. "time": "2020-06-05T16:59:53+00:00"
  574. },
  575. {
  576. "name": "doctrine/dbal",
  577. "version": "2.11.2",
  578. "source": {
  579. "type": "git",
  580. "url": "https://github.com/doctrine/dbal.git",
  581. "reference": "b88a45cbc395e850b2d958dcd7b9d49d09ff23e0"
  582. },
  583. "dist": {
  584. "type": "zip",
  585. "url": "https://api.github.com/repos/doctrine/dbal/zipball/b88a45cbc395e850b2d958dcd7b9d49d09ff23e0",
  586. "reference": "b88a45cbc395e850b2d958dcd7b9d49d09ff23e0",
  587. "shasum": ""
  588. },
  589. "require": {
  590. "doctrine/cache": "^1.0",
  591. "doctrine/event-manager": "^1.0",
  592. "ext-pdo": "*",
  593. "php": "^7.3"
  594. },
  595. "require-dev": {
  596. "doctrine/coding-standard": "^8.1",
  597. "jetbrains/phpstorm-stubs": "^2019.1",
  598. "phpstan/phpstan": "^0.12.40",
  599. "phpunit/phpunit": "^9.4",
  600. "psalm/plugin-phpunit": "^0.10.0",
  601. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  602. "vimeo/psalm": "^3.17.2"
  603. },
  604. "suggest": {
  605. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  606. },
  607. "bin": [
  608. "bin/doctrine-dbal"
  609. ],
  610. "type": "library",
  611. "extra": {
  612. "branch-alias": {
  613. "dev-master": "4.0.x-dev"
  614. }
  615. },
  616. "autoload": {
  617. "psr-4": {
  618. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  619. }
  620. },
  621. "notification-url": "https://packagist.org/downloads/",
  622. "license": [
  623. "MIT"
  624. ],
  625. "authors": [
  626. {
  627. "name": "Guilherme Blanco",
  628. "email": "guilhermeblanco@gmail.com"
  629. },
  630. {
  631. "name": "Roman Borschel",
  632. "email": "roman@code-factory.org"
  633. },
  634. {
  635. "name": "Benjamin Eberlei",
  636. "email": "kontakt@beberlei.de"
  637. },
  638. {
  639. "name": "Jonathan Wage",
  640. "email": "jonwage@gmail.com"
  641. }
  642. ],
  643. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  644. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  645. "keywords": [
  646. "abstraction",
  647. "database",
  648. "db2",
  649. "dbal",
  650. "mariadb",
  651. "mssql",
  652. "mysql",
  653. "oci8",
  654. "oracle",
  655. "pdo",
  656. "pgsql",
  657. "postgresql",
  658. "queryobject",
  659. "sasql",
  660. "sql",
  661. "sqlanywhere",
  662. "sqlite",
  663. "sqlserver",
  664. "sqlsrv"
  665. ],
  666. "funding": [
  667. {
  668. "url": "https://www.doctrine-project.org/sponsorship.html",
  669. "type": "custom"
  670. },
  671. {
  672. "url": "https://www.patreon.com/phpdoctrine",
  673. "type": "patreon"
  674. },
  675. {
  676. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  677. "type": "tidelift"
  678. }
  679. ],
  680. "time": "2020-10-19T02:01:37+00:00"
  681. },
  682. {
  683. "name": "doctrine/doctrine-bundle",
  684. "version": "2.1.2",
  685. "source": {
  686. "type": "git",
  687. "url": "https://github.com/doctrine/DoctrineBundle.git",
  688. "reference": "f5153089993e1230f5d8acbd8e126014d5a63e17"
  689. },
  690. "dist": {
  691. "type": "zip",
  692. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/f5153089993e1230f5d8acbd8e126014d5a63e17",
  693. "reference": "f5153089993e1230f5d8acbd8e126014d5a63e17",
  694. "shasum": ""
  695. },
  696. "require": {
  697. "doctrine/dbal": "^2.9.0|^3.0",
  698. "doctrine/persistence": "^1.3.3|^2.0",
  699. "doctrine/sql-formatter": "^1.0.1",
  700. "php": "^7.1 || ^8.0",
  701. "symfony/cache": "^4.3.3|^5.0",
  702. "symfony/config": "^4.3.3|^5.0",
  703. "symfony/console": "^3.4.30|^4.3.3|^5.0",
  704. "symfony/dependency-injection": "^4.3.3|^5.0",
  705. "symfony/doctrine-bridge": "^4.3.7|^5.0",
  706. "symfony/framework-bundle": "^3.4.30|^4.3.3|^5.0",
  707. "symfony/service-contracts": "^1.1.1|^2.0"
  708. },
  709. "conflict": {
  710. "doctrine/orm": "<2.6",
  711. "twig/twig": "<1.34|>=2.0,<2.4"
  712. },
  713. "require-dev": {
  714. "doctrine/coding-standard": "^6.0",
  715. "doctrine/orm": "^2.6",
  716. "ocramius/proxy-manager": "^2.1",
  717. "phpunit/phpunit": "^7.5",
  718. "symfony/phpunit-bridge": "^4.2",
  719. "symfony/property-info": "^4.3.3|^5.0",
  720. "symfony/proxy-manager-bridge": "^3.4|^4.3.3|^5.0",
  721. "symfony/twig-bridge": "^3.4.30|^4.3.3|^5.0",
  722. "symfony/validator": "^3.4.30|^4.3.3|^5.0",
  723. "symfony/web-profiler-bundle": "^3.4.30|^4.3.3|^5.0",
  724. "symfony/yaml": "^3.4.30|^4.3.3|^5.0",
  725. "twig/twig": "^1.34|^2.12"
  726. },
  727. "suggest": {
  728. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  729. "symfony/web-profiler-bundle": "To use the data collector."
  730. },
  731. "type": "symfony-bundle",
  732. "extra": {
  733. "branch-alias": {
  734. "dev-master": "2.1.x-dev"
  735. }
  736. },
  737. "autoload": {
  738. "psr-4": {
  739. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  740. }
  741. },
  742. "notification-url": "https://packagist.org/downloads/",
  743. "license": [
  744. "MIT"
  745. ],
  746. "authors": [
  747. {
  748. "name": "Fabien Potencier",
  749. "email": "fabien@symfony.com"
  750. },
  751. {
  752. "name": "Benjamin Eberlei",
  753. "email": "kontakt@beberlei.de"
  754. },
  755. {
  756. "name": "Symfony Community",
  757. "homepage": "http://symfony.com/contributors"
  758. },
  759. {
  760. "name": "Doctrine Project",
  761. "homepage": "http://www.doctrine-project.org/"
  762. }
  763. ],
  764. "description": "Symfony DoctrineBundle",
  765. "homepage": "http://www.doctrine-project.org",
  766. "keywords": [
  767. "database",
  768. "dbal",
  769. "orm",
  770. "persistence"
  771. ],
  772. "funding": [
  773. {
  774. "url": "https://www.doctrine-project.org/sponsorship.html",
  775. "type": "custom"
  776. },
  777. {
  778. "url": "https://www.patreon.com/phpdoctrine",
  779. "type": "patreon"
  780. },
  781. {
  782. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  783. "type": "tidelift"
  784. }
  785. ],
  786. "time": "2020-08-25T10:57:15+00:00"
  787. },
  788. {
  789. "name": "doctrine/doctrine-migrations-bundle",
  790. "version": "3.0.1",
  791. "source": {
  792. "type": "git",
  793. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  794. "reference": "96e730b0ffa0bb39c0f913c1966213f1674bf249"
  795. },
  796. "dist": {
  797. "type": "zip",
  798. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/96e730b0ffa0bb39c0f913c1966213f1674bf249",
  799. "reference": "96e730b0ffa0bb39c0f913c1966213f1674bf249",
  800. "shasum": ""
  801. },
  802. "require": {
  803. "doctrine/doctrine-bundle": "~1.0|~2.0",
  804. "doctrine/migrations": "~3.0",
  805. "php": "^7.2",
  806. "symfony/framework-bundle": "~3.4|~4.0|~5.0"
  807. },
  808. "require-dev": {
  809. "doctrine/coding-standard": "^5.0",
  810. "doctrine/orm": "^2.6",
  811. "phpstan/phpstan": "^0.11",
  812. "phpstan/phpstan-deprecation-rules": "^0.11",
  813. "phpstan/phpstan-phpunit": "^0.11",
  814. "phpstan/phpstan-strict-rules": "^0.11",
  815. "phpunit/phpunit": "^6.4|^7.0"
  816. },
  817. "type": "symfony-bundle",
  818. "extra": {
  819. "branch-alias": {
  820. "dev-master": "3.0.x-dev"
  821. }
  822. },
  823. "autoload": {
  824. "psr-4": {
  825. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  826. },
  827. "exclude-from-classmap": [
  828. "/Tests/"
  829. ]
  830. },
  831. "notification-url": "https://packagist.org/downloads/",
  832. "license": [
  833. "MIT"
  834. ],
  835. "authors": [
  836. {
  837. "name": "Fabien Potencier",
  838. "email": "fabien@symfony.com"
  839. },
  840. {
  841. "name": "Doctrine Project",
  842. "homepage": "http://www.doctrine-project.org"
  843. },
  844. {
  845. "name": "Symfony Community",
  846. "homepage": "http://symfony.com/contributors"
  847. }
  848. ],
  849. "description": "Symfony DoctrineMigrationsBundle",
  850. "homepage": "https://www.doctrine-project.org",
  851. "keywords": [
  852. "dbal",
  853. "migrations",
  854. "schema"
  855. ],
  856. "funding": [
  857. {
  858. "url": "https://www.doctrine-project.org/sponsorship.html",
  859. "type": "custom"
  860. },
  861. {
  862. "url": "https://www.patreon.com/phpdoctrine",
  863. "type": "patreon"
  864. },
  865. {
  866. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  867. "type": "tidelift"
  868. }
  869. ],
  870. "time": "2020-06-15T06:04:38+00:00"
  871. },
  872. {
  873. "name": "doctrine/event-manager",
  874. "version": "1.1.1",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/doctrine/event-manager.git",
  878. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  883. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  884. "shasum": ""
  885. },
  886. "require": {
  887. "php": "^7.1 || ^8.0"
  888. },
  889. "conflict": {
  890. "doctrine/common": "<2.9@dev"
  891. },
  892. "require-dev": {
  893. "doctrine/coding-standard": "^6.0",
  894. "phpunit/phpunit": "^7.0"
  895. },
  896. "type": "library",
  897. "extra": {
  898. "branch-alias": {
  899. "dev-master": "1.0.x-dev"
  900. }
  901. },
  902. "autoload": {
  903. "psr-4": {
  904. "Doctrine\\Common\\": "lib/Doctrine/Common"
  905. }
  906. },
  907. "notification-url": "https://packagist.org/downloads/",
  908. "license": [
  909. "MIT"
  910. ],
  911. "authors": [
  912. {
  913. "name": "Guilherme Blanco",
  914. "email": "guilhermeblanco@gmail.com"
  915. },
  916. {
  917. "name": "Roman Borschel",
  918. "email": "roman@code-factory.org"
  919. },
  920. {
  921. "name": "Benjamin Eberlei",
  922. "email": "kontakt@beberlei.de"
  923. },
  924. {
  925. "name": "Jonathan Wage",
  926. "email": "jonwage@gmail.com"
  927. },
  928. {
  929. "name": "Johannes Schmitt",
  930. "email": "schmittjoh@gmail.com"
  931. },
  932. {
  933. "name": "Marco Pivetta",
  934. "email": "ocramius@gmail.com"
  935. }
  936. ],
  937. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  938. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  939. "keywords": [
  940. "event",
  941. "event dispatcher",
  942. "event manager",
  943. "event system",
  944. "events"
  945. ],
  946. "funding": [
  947. {
  948. "url": "https://www.doctrine-project.org/sponsorship.html",
  949. "type": "custom"
  950. },
  951. {
  952. "url": "https://www.patreon.com/phpdoctrine",
  953. "type": "patreon"
  954. },
  955. {
  956. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  957. "type": "tidelift"
  958. }
  959. ],
  960. "time": "2020-05-29T18:28:51+00:00"
  961. },
  962. {
  963. "name": "doctrine/inflector",
  964. "version": "1.4.3",
  965. "source": {
  966. "type": "git",
  967. "url": "https://github.com/doctrine/inflector.git",
  968. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
  969. },
  970. "dist": {
  971. "type": "zip",
  972. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
  973. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
  974. "shasum": ""
  975. },
  976. "require": {
  977. "php": "^7.2 || ^8.0"
  978. },
  979. "require-dev": {
  980. "doctrine/coding-standard": "^7.0",
  981. "phpstan/phpstan": "^0.11",
  982. "phpstan/phpstan-phpunit": "^0.11",
  983. "phpstan/phpstan-strict-rules": "^0.11",
  984. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  985. },
  986. "type": "library",
  987. "extra": {
  988. "branch-alias": {
  989. "dev-master": "2.0.x-dev"
  990. }
  991. },
  992. "autoload": {
  993. "psr-4": {
  994. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  995. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  996. }
  997. },
  998. "notification-url": "https://packagist.org/downloads/",
  999. "license": [
  1000. "MIT"
  1001. ],
  1002. "authors": [
  1003. {
  1004. "name": "Guilherme Blanco",
  1005. "email": "guilhermeblanco@gmail.com"
  1006. },
  1007. {
  1008. "name": "Roman Borschel",
  1009. "email": "roman@code-factory.org"
  1010. },
  1011. {
  1012. "name": "Benjamin Eberlei",
  1013. "email": "kontakt@beberlei.de"
  1014. },
  1015. {
  1016. "name": "Jonathan Wage",
  1017. "email": "jonwage@gmail.com"
  1018. },
  1019. {
  1020. "name": "Johannes Schmitt",
  1021. "email": "schmittjoh@gmail.com"
  1022. }
  1023. ],
  1024. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1025. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1026. "keywords": [
  1027. "inflection",
  1028. "inflector",
  1029. "lowercase",
  1030. "manipulation",
  1031. "php",
  1032. "plural",
  1033. "singular",
  1034. "strings",
  1035. "uppercase",
  1036. "words"
  1037. ],
  1038. "funding": [
  1039. {
  1040. "url": "https://www.doctrine-project.org/sponsorship.html",
  1041. "type": "custom"
  1042. },
  1043. {
  1044. "url": "https://www.patreon.com/phpdoctrine",
  1045. "type": "patreon"
  1046. },
  1047. {
  1048. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1049. "type": "tidelift"
  1050. }
  1051. ],
  1052. "time": "2020-05-29T07:19:59+00:00"
  1053. },
  1054. {
  1055. "name": "doctrine/instantiator",
  1056. "version": "1.3.1",
  1057. "source": {
  1058. "type": "git",
  1059. "url": "https://github.com/doctrine/instantiator.git",
  1060. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  1061. },
  1062. "dist": {
  1063. "type": "zip",
  1064. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  1065. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  1066. "shasum": ""
  1067. },
  1068. "require": {
  1069. "php": "^7.1 || ^8.0"
  1070. },
  1071. "require-dev": {
  1072. "doctrine/coding-standard": "^6.0",
  1073. "ext-pdo": "*",
  1074. "ext-phar": "*",
  1075. "phpbench/phpbench": "^0.13",
  1076. "phpstan/phpstan-phpunit": "^0.11",
  1077. "phpstan/phpstan-shim": "^0.11",
  1078. "phpunit/phpunit": "^7.0"
  1079. },
  1080. "type": "library",
  1081. "extra": {
  1082. "branch-alias": {
  1083. "dev-master": "1.2.x-dev"
  1084. }
  1085. },
  1086. "autoload": {
  1087. "psr-4": {
  1088. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1089. }
  1090. },
  1091. "notification-url": "https://packagist.org/downloads/",
  1092. "license": [
  1093. "MIT"
  1094. ],
  1095. "authors": [
  1096. {
  1097. "name": "Marco Pivetta",
  1098. "email": "ocramius@gmail.com",
  1099. "homepage": "http://ocramius.github.com/"
  1100. }
  1101. ],
  1102. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1103. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1104. "keywords": [
  1105. "constructor",
  1106. "instantiate"
  1107. ],
  1108. "funding": [
  1109. {
  1110. "url": "https://www.doctrine-project.org/sponsorship.html",
  1111. "type": "custom"
  1112. },
  1113. {
  1114. "url": "https://www.patreon.com/phpdoctrine",
  1115. "type": "patreon"
  1116. },
  1117. {
  1118. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1119. "type": "tidelift"
  1120. }
  1121. ],
  1122. "time": "2020-05-29T17:27:14+00:00"
  1123. },
  1124. {
  1125. "name": "doctrine/lexer",
  1126. "version": "1.2.1",
  1127. "source": {
  1128. "type": "git",
  1129. "url": "https://github.com/doctrine/lexer.git",
  1130. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1131. },
  1132. "dist": {
  1133. "type": "zip",
  1134. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1135. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1136. "shasum": ""
  1137. },
  1138. "require": {
  1139. "php": "^7.2 || ^8.0"
  1140. },
  1141. "require-dev": {
  1142. "doctrine/coding-standard": "^6.0",
  1143. "phpstan/phpstan": "^0.11.8",
  1144. "phpunit/phpunit": "^8.2"
  1145. },
  1146. "type": "library",
  1147. "extra": {
  1148. "branch-alias": {
  1149. "dev-master": "1.2.x-dev"
  1150. }
  1151. },
  1152. "autoload": {
  1153. "psr-4": {
  1154. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1155. }
  1156. },
  1157. "notification-url": "https://packagist.org/downloads/",
  1158. "license": [
  1159. "MIT"
  1160. ],
  1161. "authors": [
  1162. {
  1163. "name": "Guilherme Blanco",
  1164. "email": "guilhermeblanco@gmail.com"
  1165. },
  1166. {
  1167. "name": "Roman Borschel",
  1168. "email": "roman@code-factory.org"
  1169. },
  1170. {
  1171. "name": "Johannes Schmitt",
  1172. "email": "schmittjoh@gmail.com"
  1173. }
  1174. ],
  1175. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1176. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1177. "keywords": [
  1178. "annotations",
  1179. "docblock",
  1180. "lexer",
  1181. "parser",
  1182. "php"
  1183. ],
  1184. "funding": [
  1185. {
  1186. "url": "https://www.doctrine-project.org/sponsorship.html",
  1187. "type": "custom"
  1188. },
  1189. {
  1190. "url": "https://www.patreon.com/phpdoctrine",
  1191. "type": "patreon"
  1192. },
  1193. {
  1194. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1195. "type": "tidelift"
  1196. }
  1197. ],
  1198. "time": "2020-05-25T17:44:05+00:00"
  1199. },
  1200. {
  1201. "name": "doctrine/migrations",
  1202. "version": "3.0.1",
  1203. "source": {
  1204. "type": "git",
  1205. "url": "https://github.com/doctrine/migrations.git",
  1206. "reference": "69eaf2ca5bc48357b43ddbdc31ccdffc0e2a0882"
  1207. },
  1208. "dist": {
  1209. "type": "zip",
  1210. "url": "https://api.github.com/repos/doctrine/migrations/zipball/69eaf2ca5bc48357b43ddbdc31ccdffc0e2a0882",
  1211. "reference": "69eaf2ca5bc48357b43ddbdc31ccdffc0e2a0882",
  1212. "shasum": ""
  1213. },
  1214. "require": {
  1215. "doctrine/dbal": "^2.10",
  1216. "doctrine/event-manager": "^1.0",
  1217. "ocramius/package-versions": "^1.3",
  1218. "ocramius/proxy-manager": "^2.0.2",
  1219. "php": "^7.2",
  1220. "psr/log": "^1.1.3",
  1221. "symfony/console": "^3.4||^4.0||^5.0",
  1222. "symfony/stopwatch": "^3.4||^4.0||^5.0"
  1223. },
  1224. "require-dev": {
  1225. "doctrine/coding-standard": "^7.0",
  1226. "doctrine/orm": "^2.6",
  1227. "doctrine/persistence": "^1.3||^2.0",
  1228. "doctrine/sql-formatter": "^1.0",
  1229. "ext-pdo_sqlite": "*",
  1230. "phpstan/phpstan": "^0.12",
  1231. "phpstan/phpstan-deprecation-rules": "^0.12",
  1232. "phpstan/phpstan-phpunit": "^0.12",
  1233. "phpstan/phpstan-strict-rules": "^0.12",
  1234. "phpstan/phpstan-symfony": "^0.12",
  1235. "phpunit/phpunit": "^8.4",
  1236. "symfony/process": "^3.4||^4.0||^5.0",
  1237. "symfony/yaml": "^3.4||^4.0||^5.0"
  1238. },
  1239. "suggest": {
  1240. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1241. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1242. },
  1243. "bin": [
  1244. "bin/doctrine-migrations"
  1245. ],
  1246. "type": "library",
  1247. "extra": {
  1248. "branch-alias": {
  1249. "dev-master": "3.0.x-dev"
  1250. }
  1251. },
  1252. "autoload": {
  1253. "psr-4": {
  1254. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1255. }
  1256. },
  1257. "notification-url": "https://packagist.org/downloads/",
  1258. "license": [
  1259. "MIT"
  1260. ],
  1261. "authors": [
  1262. {
  1263. "name": "Benjamin Eberlei",
  1264. "email": "kontakt@beberlei.de"
  1265. },
  1266. {
  1267. "name": "Jonathan Wage",
  1268. "email": "jonwage@gmail.com"
  1269. },
  1270. {
  1271. "name": "Michael Simonson",
  1272. "email": "contact@mikesimonson.com"
  1273. }
  1274. ],
  1275. "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.",
  1276. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1277. "keywords": [
  1278. "database",
  1279. "dbal",
  1280. "migrations",
  1281. "php"
  1282. ],
  1283. "funding": [
  1284. {
  1285. "url": "https://www.doctrine-project.org/sponsorship.html",
  1286. "type": "custom"
  1287. },
  1288. {
  1289. "url": "https://www.patreon.com/phpdoctrine",
  1290. "type": "patreon"
  1291. },
  1292. {
  1293. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1294. "type": "tidelift"
  1295. }
  1296. ],
  1297. "time": "2020-06-21T08:55:42+00:00"
  1298. },
  1299. {
  1300. "name": "doctrine/orm",
  1301. "version": "2.7.4",
  1302. "source": {
  1303. "type": "git",
  1304. "url": "https://github.com/doctrine/orm.git",
  1305. "reference": "7d84a4998091ece4d645253ac65de9f879eeed2f"
  1306. },
  1307. "dist": {
  1308. "type": "zip",
  1309. "url": "https://api.github.com/repos/doctrine/orm/zipball/7d84a4998091ece4d645253ac65de9f879eeed2f",
  1310. "reference": "7d84a4998091ece4d645253ac65de9f879eeed2f",
  1311. "shasum": ""
  1312. },
  1313. "require": {
  1314. "composer/package-versions-deprecated": "^1.8",
  1315. "doctrine/annotations": "^1.8",
  1316. "doctrine/cache": "^1.9.1",
  1317. "doctrine/collections": "^1.5",
  1318. "doctrine/common": "^2.11 || ^3.0",
  1319. "doctrine/dbal": "^2.9.3",
  1320. "doctrine/event-manager": "^1.1",
  1321. "doctrine/inflector": "^1.0",
  1322. "doctrine/instantiator": "^1.3",
  1323. "doctrine/lexer": "^1.0",
  1324. "doctrine/persistence": "^1.3.3 || ^2.0",
  1325. "ext-pdo": "*",
  1326. "php": "^7.1",
  1327. "symfony/console": "^3.0|^4.0|^5.0"
  1328. },
  1329. "require-dev": {
  1330. "doctrine/coding-standard": "^5.0",
  1331. "phpstan/phpstan": "^0.12.18",
  1332. "phpunit/phpunit": "^7.5",
  1333. "symfony/yaml": "^3.4|^4.0|^5.0",
  1334. "vimeo/psalm": "^3.11"
  1335. },
  1336. "suggest": {
  1337. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1338. },
  1339. "bin": [
  1340. "bin/doctrine"
  1341. ],
  1342. "type": "library",
  1343. "extra": {
  1344. "branch-alias": {
  1345. "dev-master": "2.7.x-dev"
  1346. }
  1347. },
  1348. "autoload": {
  1349. "psr-4": {
  1350. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1351. }
  1352. },
  1353. "notification-url": "https://packagist.org/downloads/",
  1354. "license": [
  1355. "MIT"
  1356. ],
  1357. "authors": [
  1358. {
  1359. "name": "Guilherme Blanco",
  1360. "email": "guilhermeblanco@gmail.com"
  1361. },
  1362. {
  1363. "name": "Roman Borschel",
  1364. "email": "roman@code-factory.org"
  1365. },
  1366. {
  1367. "name": "Benjamin Eberlei",
  1368. "email": "kontakt@beberlei.de"
  1369. },
  1370. {
  1371. "name": "Jonathan Wage",
  1372. "email": "jonwage@gmail.com"
  1373. },
  1374. {
  1375. "name": "Marco Pivetta",
  1376. "email": "ocramius@gmail.com"
  1377. }
  1378. ],
  1379. "description": "Object-Relational-Mapper for PHP",
  1380. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1381. "keywords": [
  1382. "database",
  1383. "orm"
  1384. ],
  1385. "time": "2020-10-10T17:11:26+00:00"
  1386. },
  1387. {
  1388. "name": "doctrine/persistence",
  1389. "version": "2.0.0",
  1390. "source": {
  1391. "type": "git",
  1392. "url": "https://github.com/doctrine/persistence.git",
  1393. "reference": "1dee036f22cd5dc0bc12132f1d1c38415907be55"
  1394. },
  1395. "dist": {
  1396. "type": "zip",
  1397. "url": "https://api.github.com/repos/doctrine/persistence/zipball/1dee036f22cd5dc0bc12132f1d1c38415907be55",
  1398. "reference": "1dee036f22cd5dc0bc12132f1d1c38415907be55",
  1399. "shasum": ""
  1400. },
  1401. "require": {
  1402. "doctrine/annotations": "^1.0",
  1403. "doctrine/cache": "^1.0",
  1404. "doctrine/collections": "^1.0",
  1405. "doctrine/event-manager": "^1.0",
  1406. "doctrine/reflection": "^1.2",
  1407. "php": "^7.1"
  1408. },
  1409. "conflict": {
  1410. "doctrine/common": "<2.10@dev"
  1411. },
  1412. "require-dev": {
  1413. "doctrine/coding-standard": "^6.0",
  1414. "phpstan/phpstan": "^0.11",
  1415. "phpunit/phpunit": "^7.0",
  1416. "vimeo/psalm": "^3.11"
  1417. },
  1418. "type": "library",
  1419. "extra": {
  1420. "branch-alias": {
  1421. "dev-master": "2.x-dev"
  1422. }
  1423. },
  1424. "autoload": {
  1425. "psr-4": {
  1426. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1427. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1428. }
  1429. },
  1430. "notification-url": "https://packagist.org/downloads/",
  1431. "license": [
  1432. "MIT"
  1433. ],
  1434. "authors": [
  1435. {
  1436. "name": "Guilherme Blanco",
  1437. "email": "guilhermeblanco@gmail.com"
  1438. },
  1439. {
  1440. "name": "Roman Borschel",
  1441. "email": "roman@code-factory.org"
  1442. },
  1443. {
  1444. "name": "Benjamin Eberlei",
  1445. "email": "kontakt@beberlei.de"
  1446. },
  1447. {
  1448. "name": "Jonathan Wage",
  1449. "email": "jonwage@gmail.com"
  1450. },
  1451. {
  1452. "name": "Johannes Schmitt",
  1453. "email": "schmittjoh@gmail.com"
  1454. },
  1455. {
  1456. "name": "Marco Pivetta",
  1457. "email": "ocramius@gmail.com"
  1458. }
  1459. ],
  1460. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1461. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1462. "keywords": [
  1463. "mapper",
  1464. "object",
  1465. "odm",
  1466. "orm",
  1467. "persistence"
  1468. ],
  1469. "funding": [
  1470. {
  1471. "url": "https://www.doctrine-project.org/sponsorship.html",
  1472. "type": "custom"
  1473. },
  1474. {
  1475. "url": "https://www.patreon.com/phpdoctrine",
  1476. "type": "patreon"
  1477. },
  1478. {
  1479. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1480. "type": "tidelift"
  1481. }
  1482. ],
  1483. "time": "2020-05-12T19:32:44+00:00"
  1484. },
  1485. {
  1486. "name": "doctrine/reflection",
  1487. "version": "1.2.1",
  1488. "source": {
  1489. "type": "git",
  1490. "url": "https://github.com/doctrine/reflection.git",
  1491. "reference": "55e71912dfcd824b2fdd16f2d9afe15684cfce79"
  1492. },
  1493. "dist": {
  1494. "type": "zip",
  1495. "url": "https://api.github.com/repos/doctrine/reflection/zipball/55e71912dfcd824b2fdd16f2d9afe15684cfce79",
  1496. "reference": "55e71912dfcd824b2fdd16f2d9afe15684cfce79",
  1497. "shasum": ""
  1498. },
  1499. "require": {
  1500. "doctrine/annotations": "^1.0",
  1501. "ext-tokenizer": "*",
  1502. "php": "^7.1"
  1503. },
  1504. "conflict": {
  1505. "doctrine/common": "<2.9"
  1506. },
  1507. "require-dev": {
  1508. "doctrine/coding-standard": "^5.0",
  1509. "doctrine/common": "^2.10",
  1510. "phpstan/phpstan": "^0.11.0",
  1511. "phpstan/phpstan-phpunit": "^0.11.0",
  1512. "phpunit/phpunit": "^7.0"
  1513. },
  1514. "type": "library",
  1515. "extra": {
  1516. "branch-alias": {
  1517. "dev-master": "1.2.x-dev"
  1518. }
  1519. },
  1520. "autoload": {
  1521. "psr-4": {
  1522. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1523. }
  1524. },
  1525. "notification-url": "https://packagist.org/downloads/",
  1526. "license": [
  1527. "MIT"
  1528. ],
  1529. "authors": [
  1530. {
  1531. "name": "Guilherme Blanco",
  1532. "email": "guilhermeblanco@gmail.com"
  1533. },
  1534. {
  1535. "name": "Roman Borschel",
  1536. "email": "roman@code-factory.org"
  1537. },
  1538. {
  1539. "name": "Benjamin Eberlei",
  1540. "email": "kontakt@beberlei.de"
  1541. },
  1542. {
  1543. "name": "Jonathan Wage",
  1544. "email": "jonwage@gmail.com"
  1545. },
  1546. {
  1547. "name": "Johannes Schmitt",
  1548. "email": "schmittjoh@gmail.com"
  1549. },
  1550. {
  1551. "name": "Marco Pivetta",
  1552. "email": "ocramius@gmail.com"
  1553. }
  1554. ],
  1555. "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.",
  1556. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  1557. "keywords": [
  1558. "reflection",
  1559. "static"
  1560. ],
  1561. "time": "2020-03-27T11:06:43+00:00"
  1562. },
  1563. {
  1564. "name": "doctrine/sql-formatter",
  1565. "version": "1.1.1",
  1566. "source": {
  1567. "type": "git",
  1568. "url": "https://github.com/doctrine/sql-formatter.git",
  1569. "reference": "56070bebac6e77230ed7d306ad13528e60732871"
  1570. },
  1571. "dist": {
  1572. "type": "zip",
  1573. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/56070bebac6e77230ed7d306ad13528e60732871",
  1574. "reference": "56070bebac6e77230ed7d306ad13528e60732871",
  1575. "shasum": ""
  1576. },
  1577. "require": {
  1578. "php": "^7.1 || ^8.0"
  1579. },
  1580. "require-dev": {
  1581. "bamarni/composer-bin-plugin": "^1.4"
  1582. },
  1583. "bin": [
  1584. "bin/sql-formatter"
  1585. ],
  1586. "type": "library",
  1587. "extra": {
  1588. "branch-alias": {
  1589. "dev-master": "1.x-dev"
  1590. }
  1591. },
  1592. "autoload": {
  1593. "psr-4": {
  1594. "Doctrine\\SqlFormatter\\": "src"
  1595. }
  1596. },
  1597. "notification-url": "https://packagist.org/downloads/",
  1598. "license": [
  1599. "MIT"
  1600. ],
  1601. "authors": [
  1602. {
  1603. "name": "Jeremy Dorn",
  1604. "email": "jeremy@jeremydorn.com",
  1605. "homepage": "http://jeremydorn.com/"
  1606. }
  1607. ],
  1608. "description": "a PHP SQL highlighting library",
  1609. "homepage": "https://github.com/doctrine/sql-formatter/",
  1610. "keywords": [
  1611. "highlight",
  1612. "sql"
  1613. ],
  1614. "time": "2020-07-30T16:57:33+00:00"
  1615. },
  1616. {
  1617. "name": "egulias/email-validator",
  1618. "version": "2.1.22",
  1619. "source": {
  1620. "type": "git",
  1621. "url": "https://github.com/egulias/EmailValidator.git",
  1622. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  1623. },
  1624. "dist": {
  1625. "type": "zip",
  1626. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  1627. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  1628. "shasum": ""
  1629. },
  1630. "require": {
  1631. "doctrine/lexer": "^1.0.1",
  1632. "php": ">=5.5",
  1633. "symfony/polyfill-intl-idn": "^1.10"
  1634. },
  1635. "require-dev": {
  1636. "dominicsayers/isemail": "^3.0.7",
  1637. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1638. "satooshi/php-coveralls": "^1.0.1"
  1639. },
  1640. "suggest": {
  1641. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1642. },
  1643. "type": "library",
  1644. "extra": {
  1645. "branch-alias": {
  1646. "dev-master": "2.1.x-dev"
  1647. }
  1648. },
  1649. "autoload": {
  1650. "psr-4": {
  1651. "Egulias\\EmailValidator\\": "src"
  1652. }
  1653. },
  1654. "notification-url": "https://packagist.org/downloads/",
  1655. "license": [
  1656. "MIT"
  1657. ],
  1658. "authors": [
  1659. {
  1660. "name": "Eduardo Gulias Davis"
  1661. }
  1662. ],
  1663. "description": "A library for validating emails against several RFCs",
  1664. "homepage": "https://github.com/egulias/EmailValidator",
  1665. "keywords": [
  1666. "email",
  1667. "emailvalidation",
  1668. "emailvalidator",
  1669. "validation",
  1670. "validator"
  1671. ],
  1672. "time": "2020-09-26T15:48:38+00:00"
  1673. },
  1674. {
  1675. "name": "erusev/parsedown",
  1676. "version": "1.7.4",
  1677. "source": {
  1678. "type": "git",
  1679. "url": "https://github.com/erusev/parsedown.git",
  1680. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  1681. },
  1682. "dist": {
  1683. "type": "zip",
  1684. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  1685. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  1686. "shasum": ""
  1687. },
  1688. "require": {
  1689. "ext-mbstring": "*",
  1690. "php": ">=5.3.0"
  1691. },
  1692. "require-dev": {
  1693. "phpunit/phpunit": "^4.8.35"
  1694. },
  1695. "type": "library",
  1696. "autoload": {
  1697. "psr-0": {
  1698. "Parsedown": ""
  1699. }
  1700. },
  1701. "notification-url": "https://packagist.org/downloads/",
  1702. "license": [
  1703. "MIT"
  1704. ],
  1705. "authors": [
  1706. {
  1707. "name": "Emanuil Rusev",
  1708. "email": "hello@erusev.com",
  1709. "homepage": "http://erusev.com"
  1710. }
  1711. ],
  1712. "description": "Parser for Markdown.",
  1713. "homepage": "http://parsedown.org",
  1714. "keywords": [
  1715. "markdown",
  1716. "parser"
  1717. ],
  1718. "time": "2019-12-30T22:54:17+00:00"
  1719. },
  1720. {
  1721. "name": "giggsey/libphonenumber-for-php",
  1722. "version": "8.12.11",
  1723. "source": {
  1724. "type": "git",
  1725. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  1726. "reference": "a3e8c9c832b3c40d69b477b2a96b252d03fbf274"
  1727. },
  1728. "dist": {
  1729. "type": "zip",
  1730. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/a3e8c9c832b3c40d69b477b2a96b252d03fbf274",
  1731. "reference": "a3e8c9c832b3c40d69b477b2a96b252d03fbf274",
  1732. "shasum": ""
  1733. },
  1734. "require": {
  1735. "giggsey/locale": "^1.7",
  1736. "php": ">=5.3.2",
  1737. "symfony/polyfill-mbstring": "^1.17"
  1738. },
  1739. "require-dev": {
  1740. "pear/pear-core-minimal": "^1.9",
  1741. "pear/pear_exception": "^1.0",
  1742. "pear/versioncontrol_git": "^0.5",
  1743. "phing/phing": "^2.7",
  1744. "php-coveralls/php-coveralls": "^1.0|^2.0",
  1745. "phpunit/phpunit": "^4.8.36|^5.0",
  1746. "symfony/console": "^2.8|^3.0"
  1747. },
  1748. "type": "library",
  1749. "extra": {
  1750. "branch-alias": {
  1751. "dev-master": "8.x-dev"
  1752. }
  1753. },
  1754. "autoload": {
  1755. "psr-4": {
  1756. "libphonenumber\\": "src/"
  1757. },
  1758. "exclude-from-classmap": [
  1759. "/src/data/",
  1760. "/src/carrier/data/",
  1761. "/src/geocoding/data/",
  1762. "/src/timezone/data/"
  1763. ]
  1764. },
  1765. "notification-url": "https://packagist.org/downloads/",
  1766. "license": [
  1767. "Apache-2.0"
  1768. ],
  1769. "authors": [
  1770. {
  1771. "name": "Joshua Gigg",
  1772. "email": "giggsey@gmail.com",
  1773. "homepage": "https://giggsey.com/"
  1774. }
  1775. ],
  1776. "description": "PHP Port of Google's libphonenumber",
  1777. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  1778. "keywords": [
  1779. "geocoding",
  1780. "geolocation",
  1781. "libphonenumber",
  1782. "mobile",
  1783. "phonenumber",
  1784. "validation"
  1785. ],
  1786. "time": "2020-10-09T15:01:50+00:00"
  1787. },
  1788. {
  1789. "name": "giggsey/locale",
  1790. "version": "1.9",
  1791. "source": {
  1792. "type": "git",
  1793. "url": "https://github.com/giggsey/Locale.git",
  1794. "reference": "b07f1eace8072ccc61445ad8fbd493ff9d783043"
  1795. },
  1796. "dist": {
  1797. "type": "zip",
  1798. "url": "https://api.github.com/repos/giggsey/Locale/zipball/b07f1eace8072ccc61445ad8fbd493ff9d783043",
  1799. "reference": "b07f1eace8072ccc61445ad8fbd493ff9d783043",
  1800. "shasum": ""
  1801. },
  1802. "require": {
  1803. "php": ">=5.3.2"
  1804. },
  1805. "require-dev": {
  1806. "pear/pear-core-minimal": "^1.9",
  1807. "pear/pear_exception": "^1.0",
  1808. "pear/versioncontrol_git": "^0.5",
  1809. "phing/phing": "~2.7",
  1810. "php-coveralls/php-coveralls": "^1.0|^2.0",
  1811. "phpunit/phpunit": "^4.8|^5.0",
  1812. "symfony/console": "^2.8|^3.0|^4.0",
  1813. "symfony/filesystem": "^2.8|^3.0|^4.0",
  1814. "symfony/finder": "^2.8|^3.0|^4.0",
  1815. "symfony/process": "^2.8|^3.0|^4.0"
  1816. },
  1817. "type": "library",
  1818. "autoload": {
  1819. "psr-4": {
  1820. "Giggsey\\Locale\\": "src/"
  1821. }
  1822. },
  1823. "notification-url": "https://packagist.org/downloads/",
  1824. "license": [
  1825. "MIT"
  1826. ],
  1827. "authors": [
  1828. {
  1829. "name": "Joshua Gigg",
  1830. "email": "giggsey@gmail.com",
  1831. "homepage": "http://giggsey.com/"
  1832. }
  1833. ],
  1834. "description": "Locale functions required by libphonenumber-for-php",
  1835. "time": "2020-07-07T11:16:24+00:00"
  1836. },
  1837. {
  1838. "name": "laminas/laminas-code",
  1839. "version": "3.4.1",
  1840. "source": {
  1841. "type": "git",
  1842. "url": "https://github.com/laminas/laminas-code.git",
  1843. "reference": "1cb8f203389ab1482bf89c0e70a04849bacd7766"
  1844. },
  1845. "dist": {
  1846. "type": "zip",
  1847. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/1cb8f203389ab1482bf89c0e70a04849bacd7766",
  1848. "reference": "1cb8f203389ab1482bf89c0e70a04849bacd7766",
  1849. "shasum": ""
  1850. },
  1851. "require": {
  1852. "laminas/laminas-eventmanager": "^2.6 || ^3.0",
  1853. "laminas/laminas-zendframework-bridge": "^1.0",
  1854. "php": "^7.1"
  1855. },
  1856. "conflict": {
  1857. "phpspec/prophecy": "<1.9.0"
  1858. },
  1859. "replace": {
  1860. "zendframework/zend-code": "self.version"
  1861. },
  1862. "require-dev": {
  1863. "doctrine/annotations": "^1.7",
  1864. "ext-phar": "*",
  1865. "laminas/laminas-coding-standard": "^1.0",
  1866. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  1867. "phpunit/phpunit": "^7.5.16 || ^8.4"
  1868. },
  1869. "suggest": {
  1870. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1871. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1872. },
  1873. "type": "library",
  1874. "extra": {
  1875. "branch-alias": {
  1876. "dev-master": "3.4.x-dev",
  1877. "dev-develop": "3.5.x-dev",
  1878. "dev-dev-4.0": "4.0.x-dev"
  1879. }
  1880. },
  1881. "autoload": {
  1882. "psr-4": {
  1883. "Laminas\\Code\\": "src/"
  1884. }
  1885. },
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "BSD-3-Clause"
  1889. ],
  1890. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1891. "homepage": "https://laminas.dev",
  1892. "keywords": [
  1893. "code",
  1894. "laminas"
  1895. ],
  1896. "time": "2019-12-31T16:28:24+00:00"
  1897. },
  1898. {
  1899. "name": "laminas/laminas-eventmanager",
  1900. "version": "3.3.0",
  1901. "source": {
  1902. "type": "git",
  1903. "url": "https://github.com/laminas/laminas-eventmanager.git",
  1904. "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082"
  1905. },
  1906. "dist": {
  1907. "type": "zip",
  1908. "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/1940ccf30e058b2fd66f5a9d696f1b5e0027b082",
  1909. "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082",
  1910. "shasum": ""
  1911. },
  1912. "require": {
  1913. "laminas/laminas-zendframework-bridge": "^1.0",
  1914. "php": "^7.3 || ^8.0"
  1915. },
  1916. "replace": {
  1917. "zendframework/zend-eventmanager": "^3.2.1"
  1918. },
  1919. "require-dev": {
  1920. "container-interop/container-interop": "^1.1",
  1921. "laminas/laminas-coding-standard": "~1.0.0",
  1922. "laminas/laminas-stdlib": "^2.7.3 || ^3.0",
  1923. "phpbench/phpbench": "^0.17.1",
  1924. "phpunit/phpunit": "^8.5.8"
  1925. },
  1926. "suggest": {
  1927. "container-interop/container-interop": "^1.1, to use the lazy listeners feature",
  1928. "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  1929. },
  1930. "type": "library",
  1931. "extra": {
  1932. "branch-alias": {
  1933. "dev-master": "3.3.x-dev",
  1934. "dev-develop": "3.4.x-dev"
  1935. }
  1936. },
  1937. "autoload": {
  1938. "psr-4": {
  1939. "Laminas\\EventManager\\": "src/"
  1940. }
  1941. },
  1942. "notification-url": "https://packagist.org/downloads/",
  1943. "license": [
  1944. "BSD-3-Clause"
  1945. ],
  1946. "description": "Trigger and listen to events within a PHP application",
  1947. "homepage": "https://laminas.dev",
  1948. "keywords": [
  1949. "event",
  1950. "eventmanager",
  1951. "events",
  1952. "laminas"
  1953. ],
  1954. "funding": [
  1955. {
  1956. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1957. "type": "community_bridge"
  1958. }
  1959. ],
  1960. "time": "2020-08-25T11:10:44+00:00"
  1961. },
  1962. {
  1963. "name": "laminas/laminas-zendframework-bridge",
  1964. "version": "1.1.1",
  1965. "source": {
  1966. "type": "git",
  1967. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  1968. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  1969. },
  1970. "dist": {
  1971. "type": "zip",
  1972. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  1973. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  1974. "shasum": ""
  1975. },
  1976. "require": {
  1977. "php": "^5.6 || ^7.0 || ^8.0"
  1978. },
  1979. "require-dev": {
  1980. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  1981. "squizlabs/php_codesniffer": "^3.5"
  1982. },
  1983. "type": "library",
  1984. "extra": {
  1985. "laminas": {
  1986. "module": "Laminas\\ZendFrameworkBridge"
  1987. }
  1988. },
  1989. "autoload": {
  1990. "files": [
  1991. "src/autoload.php"
  1992. ],
  1993. "psr-4": {
  1994. "Laminas\\ZendFrameworkBridge\\": "src//"
  1995. }
  1996. },
  1997. "notification-url": "https://packagist.org/downloads/",
  1998. "license": [
  1999. "BSD-3-Clause"
  2000. ],
  2001. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  2002. "keywords": [
  2003. "ZendFramework",
  2004. "autoloading",
  2005. "laminas",
  2006. "zf"
  2007. ],
  2008. "funding": [
  2009. {
  2010. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2011. "type": "community_bridge"
  2012. }
  2013. ],
  2014. "time": "2020-09-14T14:23:00+00:00"
  2015. },
  2016. {
  2017. "name": "league/uri-parser",
  2018. "version": "1.4.1",
  2019. "source": {
  2020. "type": "git",
  2021. "url": "https://github.com/thephpleague/uri-parser.git",
  2022. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00"
  2023. },
  2024. "dist": {
  2025. "type": "zip",
  2026. "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00",
  2027. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00",
  2028. "shasum": ""
  2029. },
  2030. "require": {
  2031. "php": ">=7.0.0"
  2032. },
  2033. "require-dev": {
  2034. "friendsofphp/php-cs-fixer": "^2.0",
  2035. "phpstan/phpstan": "^0.9.2",
  2036. "phpstan/phpstan-phpunit": "^0.9.4",
  2037. "phpstan/phpstan-strict-rules": "^0.9.0",
  2038. "phpunit/phpunit": "^6.0"
  2039. },
  2040. "suggest": {
  2041. "ext-intl": "Allow parsing RFC3987 compliant hosts",
  2042. "league/uri-schemes": "Allow validating and normalizing URI parsing results"
  2043. },
  2044. "type": "library",
  2045. "extra": {
  2046. "branch-alias": {
  2047. "dev-master": "1.x-dev"
  2048. }
  2049. },
  2050. "autoload": {
  2051. "psr-4": {
  2052. "League\\Uri\\": "src"
  2053. },
  2054. "files": [
  2055. "src/functions_include.php"
  2056. ]
  2057. },
  2058. "notification-url": "https://packagist.org/downloads/",
  2059. "license": [
  2060. "MIT"
  2061. ],
  2062. "authors": [
  2063. {
  2064. "name": "Ignace Nyamagana Butera",
  2065. "email": "nyamsprod@gmail.com",
  2066. "homepage": "https://nyamsprod.com"
  2067. }
  2068. ],
  2069. "description": "userland URI parser RFC 3986 compliant",
  2070. "homepage": "https://github.com/thephpleague/uri-parser",
  2071. "keywords": [
  2072. "parse_url",
  2073. "parser",
  2074. "rfc3986",
  2075. "rfc3987",
  2076. "uri",
  2077. "url"
  2078. ],
  2079. "time": "2018-11-22T07:55:51+00:00"
  2080. },
  2081. {
  2082. "name": "lstrojny/functional-php",
  2083. "version": "1.14.1",
  2084. "source": {
  2085. "type": "git",
  2086. "url": "https://github.com/lstrojny/functional-php.git",
  2087. "reference": "9e8363e3cb9db924327f51b5804f4dfba03605aa"
  2088. },
  2089. "dist": {
  2090. "type": "zip",
  2091. "url": "https://api.github.com/repos/lstrojny/functional-php/zipball/9e8363e3cb9db924327f51b5804f4dfba03605aa",
  2092. "reference": "9e8363e3cb9db924327f51b5804f4dfba03605aa",
  2093. "shasum": ""
  2094. },
  2095. "require": {
  2096. "php": "~7"
  2097. },
  2098. "require-dev": {
  2099. "friendsofphp/php-cs-fixer": "^2.14",
  2100. "phpunit/phpunit": "~7",
  2101. "squizlabs/php_codesniffer": "~3.0"
  2102. },
  2103. "type": "library",
  2104. "autoload": {
  2105. "psr-4": {
  2106. "Functional\\": "src/Functional"
  2107. },
  2108. "files": [
  2109. "src/Functional/Ary.php",
  2110. "src/Functional/Average.php",
  2111. "src/Functional/ButLast.php",
  2112. "src/Functional/Capture.php",
  2113. "src/Functional/ConstFunction.php",
  2114. "src/Functional/CompareOn.php",
  2115. "src/Functional/CompareObjectHashOn.php",
  2116. "src/Functional/Compose.php",
  2117. "src/Functional/Concat.php",
  2118. "src/Functional/Contains.php",
  2119. "src/Functional/Converge.php",
  2120. "src/Functional/Curry.php",
  2121. "src/Functional/CurryN.php",
  2122. "src/Functional/Difference.php",
  2123. "src/Functional/DropFirst.php",
  2124. "src/Functional/DropLast.php",
  2125. "src/Functional/Each.php",
  2126. "src/Functional/Equal.php",
  2127. "src/Functional/ErrorToException.php",
  2128. "src/Functional/Every.php",
  2129. "src/Functional/False.php",
  2130. "src/Functional/Falsy.php",
  2131. "src/Functional/Filter.php",
  2132. "src/Functional/First.php",
  2133. "src/Functional/FirstIndexOf.php",
  2134. "src/Functional/FlatMap.php",
  2135. "src/Functional/Flatten.php",
  2136. "src/Functional/Flip.php",
  2137. "src/Functional/GreaterThan.php",
  2138. "src/Functional/GreaterThanOrEqual.php",
  2139. "src/Functional/Group.php",
  2140. "src/Functional/Head.php",
  2141. "src/Functional/Id.php",
  2142. "src/Functional/IfElse.php",
  2143. "src/Functional/Identical.php",
  2144. "src/Functional/IndexesOf.php",
  2145. "src/Functional/Intersperse.php",
  2146. "src/Functional/Invoke.php",
  2147. "src/Functional/InvokeFirst.php",
  2148. "src/Functional/InvokeIf.php",
  2149. "src/Functional/InvokeLast.php",
  2150. "src/Functional/Invoker.php",
  2151. "src/Functional/Last.php",
  2152. "src/Functional/LastIndexOf.php",
  2153. "src/Functional/LessThan.php",
  2154. "src/Functional/LessThanOrEqual.php",
  2155. "src/Functional/LexicographicCompare.php",
  2156. "src/Functional/Map.php",
  2157. "src/Functional/Matching.php",
  2158. "src/Functional/Maximum.php",
  2159. "src/Functional/Memoize.php",
  2160. "src/Functional/Minimum.php",
  2161. "src/Functional/None.php",
  2162. "src/Functional/Noop.php",
  2163. "src/Functional/Not.php",
  2164. "src/Functional/OmitKeys.php",
  2165. "src/Functional/PartialAny.php",
  2166. "src/Functional/PartialLeft.php",
  2167. "src/Functional/PartialMethod.php",
  2168. "src/Functional/PartialRight.php",
  2169. "src/Functional/Partition.php",
  2170. "src/Functional/Pick.php",
  2171. "src/Functional/Pluck.php",
  2172. "src/Functional/Poll.php",
  2173. "src/Functional/Product.php",
  2174. "src/Functional/Ratio.php",
  2175. "src/Functional/ReduceLeft.php",
  2176. "src/Functional/ReduceRight.php",
  2177. "src/Functional/Reindex.php",
  2178. "src/Functional/Reject.php",
  2179. "src/Functional/Repeat.php",
  2180. "src/Functional/Retry.php",
  2181. "src/Functional/Select.php",
  2182. "src/Functional/SelectKeys.php",
  2183. "src/Functional/SequenceConstant.php",
  2184. "src/Functional/SequenceExponential.php",
  2185. "src/Functional/SequenceLinear.php",
  2186. "src/Functional/Some.php",
  2187. "src/Functional/Sort.php",
  2188. "src/Functional/Sum.php",
  2189. "src/Functional/SuppressError.php",
  2190. "src/Functional/Tap.php",
  2191. "src/Functional/Tail.php",
  2192. "src/Functional/TailRecursion.php",
  2193. "src/Functional/TakeLeft.php",
  2194. "src/Functional/TakeRight.php",
  2195. "src/Functional/True.php",
  2196. "src/Functional/Truthy.php",
  2197. "src/Functional/Unique.php",
  2198. "src/Functional/ValueToKey.php",
  2199. "src/Functional/With.php",
  2200. "src/Functional/Zip.php",
  2201. "src/Functional/ZipAll.php"
  2202. ]
  2203. },
  2204. "notification-url": "https://packagist.org/downloads/",
  2205. "license": [
  2206. "MIT"
  2207. ],
  2208. "authors": [
  2209. {
  2210. "name": "Lars Strojny",
  2211. "email": "lstrojny@php.net",
  2212. "homepage": "http://usrportage.de"
  2213. },
  2214. {
  2215. "name": "Max Beutel",
  2216. "email": "nash12@gmail.com"
  2217. }
  2218. ],
  2219. "description": "Functional primitives for PHP",
  2220. "keywords": [
  2221. "functional"
  2222. ],
  2223. "time": "2020-10-12T09:48:50+00:00"
  2224. },
  2225. {
  2226. "name": "masterminds/html5",
  2227. "version": "2.7.4",
  2228. "source": {
  2229. "type": "git",
  2230. "url": "https://github.com/Masterminds/html5-php.git",
  2231. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  2232. },
  2233. "dist": {
  2234. "type": "zip",
  2235. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  2236. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  2237. "shasum": ""
  2238. },
  2239. "require": {
  2240. "ext-ctype": "*",
  2241. "ext-dom": "*",
  2242. "ext-libxml": "*",
  2243. "php": ">=5.3.0"
  2244. },
  2245. "require-dev": {
  2246. "phpunit/phpunit": "^4.8.35"
  2247. },
  2248. "type": "library",
  2249. "extra": {
  2250. "branch-alias": {
  2251. "dev-master": "2.7-dev"
  2252. }
  2253. },
  2254. "autoload": {
  2255. "psr-4": {
  2256. "Masterminds\\": "src"
  2257. }
  2258. },
  2259. "notification-url": "https://packagist.org/downloads/",
  2260. "license": [
  2261. "MIT"
  2262. ],
  2263. "authors": [
  2264. {
  2265. "name": "Matt Butcher",
  2266. "email": "technosophos@gmail.com"
  2267. },
  2268. {
  2269. "name": "Matt Farina",
  2270. "email": "matt@mattfarina.com"
  2271. },
  2272. {
  2273. "name": "Asmir Mustafic",
  2274. "email": "goetas@gmail.com"
  2275. }
  2276. ],
  2277. "description": "An HTML5 parser and serializer.",
  2278. "homepage": "http://masterminds.github.io/html5-php",
  2279. "keywords": [
  2280. "HTML5",
  2281. "dom",
  2282. "html",
  2283. "parser",
  2284. "querypath",
  2285. "serializer",
  2286. "xml"
  2287. ],
  2288. "time": "2020-10-01T13:52:52+00:00"
  2289. },
  2290. {
  2291. "name": "monolog/monolog",
  2292. "version": "2.1.1",
  2293. "source": {
  2294. "type": "git",
  2295. "url": "https://github.com/Seldaek/monolog.git",
  2296. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  2297. },
  2298. "dist": {
  2299. "type": "zip",
  2300. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2301. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2302. "shasum": ""
  2303. },
  2304. "require": {
  2305. "php": ">=7.2",
  2306. "psr/log": "^1.0.1"
  2307. },
  2308. "provide": {
  2309. "psr/log-implementation": "1.0.0"
  2310. },
  2311. "require-dev": {
  2312. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2313. "doctrine/couchdb": "~1.0@dev",
  2314. "elasticsearch/elasticsearch": "^6.0",
  2315. "graylog2/gelf-php": "^1.4.2",
  2316. "php-amqplib/php-amqplib": "~2.4",
  2317. "php-console/php-console": "^3.1.3",
  2318. "php-parallel-lint/php-parallel-lint": "^1.0",
  2319. "phpspec/prophecy": "^1.6.1",
  2320. "phpunit/phpunit": "^8.5",
  2321. "predis/predis": "^1.1",
  2322. "rollbar/rollbar": "^1.3",
  2323. "ruflin/elastica": ">=0.90 <3.0",
  2324. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2325. },
  2326. "suggest": {
  2327. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2328. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2329. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2330. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2331. "ext-mbstring": "Allow to work properly with unicode symbols",
  2332. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2333. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2334. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2335. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2336. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2337. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2338. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2339. },
  2340. "type": "library",
  2341. "extra": {
  2342. "branch-alias": {
  2343. "dev-master": "2.x-dev"
  2344. }
  2345. },
  2346. "autoload": {
  2347. "psr-4": {
  2348. "Monolog\\": "src/Monolog"
  2349. }
  2350. },
  2351. "notification-url": "https://packagist.org/downloads/",
  2352. "license": [
  2353. "MIT"
  2354. ],
  2355. "authors": [
  2356. {
  2357. "name": "Jordi Boggiano",
  2358. "email": "j.boggiano@seld.be",
  2359. "homepage": "http://seld.be"
  2360. }
  2361. ],
  2362. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2363. "homepage": "http://github.com/Seldaek/monolog",
  2364. "keywords": [
  2365. "log",
  2366. "logging",
  2367. "psr-3"
  2368. ],
  2369. "funding": [
  2370. {
  2371. "url": "https://github.com/Seldaek",
  2372. "type": "github"
  2373. },
  2374. {
  2375. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2376. "type": "tidelift"
  2377. }
  2378. ],
  2379. "time": "2020-07-23T08:41:23+00:00"
  2380. },
  2381. {
  2382. "name": "ocramius/proxy-manager",
  2383. "version": "2.8.0",
  2384. "source": {
  2385. "type": "git",
  2386. "url": "https://github.com/Ocramius/ProxyManager.git",
  2387. "reference": "ac1dd414fd114cfc0da9930e0ab46063c2f5e62a"
  2388. },
  2389. "dist": {
  2390. "type": "zip",
  2391. "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/ac1dd414fd114cfc0da9930e0ab46063c2f5e62a",
  2392. "reference": "ac1dd414fd114cfc0da9930e0ab46063c2f5e62a",
  2393. "shasum": ""
  2394. },
  2395. "require": {
  2396. "laminas/laminas-code": "^3.4.1",
  2397. "ocramius/package-versions": "^1.8.0",
  2398. "php": "~7.4.1",
  2399. "webimpress/safe-writer": "^2.0.1"
  2400. },
  2401. "conflict": {
  2402. "doctrine/annotations": "<1.6.1",
  2403. "laminas/laminas-stdlib": "<3.2.1",
  2404. "zendframework/zend-stdlib": "<3.2.1"
  2405. },
  2406. "require-dev": {
  2407. "doctrine/coding-standard": "^6.0.0",
  2408. "ext-phar": "*",
  2409. "infection/infection": "^0.16.2",
  2410. "nikic/php-parser": "^4.4.0",
  2411. "phpbench/phpbench": "^0.17.0",
  2412. "phpunit/phpunit": "^9.1.1",
  2413. "slevomat/coding-standard": "^5.0.4",
  2414. "squizlabs/php_codesniffer": "^3.5.4",
  2415. "vimeo/psalm": "^3.11.1"
  2416. },
  2417. "suggest": {
  2418. "laminas/laminas-json": "To have the JsonRpc adapter (Remote Object feature)",
  2419. "laminas/laminas-soap": "To have the Soap adapter (Remote Object feature)",
  2420. "laminas/laminas-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)",
  2421. "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects"
  2422. },
  2423. "type": "library",
  2424. "extra": {
  2425. "branch-alias": {
  2426. "dev-master": "3.0.x-dev"
  2427. }
  2428. },
  2429. "autoload": {
  2430. "psr-4": {
  2431. "ProxyManager\\": "src/ProxyManager"
  2432. }
  2433. },
  2434. "notification-url": "https://packagist.org/downloads/",
  2435. "license": [
  2436. "MIT"
  2437. ],
  2438. "authors": [
  2439. {
  2440. "name": "Marco Pivetta",
  2441. "email": "ocramius@gmail.com",
  2442. "homepage": "http://ocramius.github.io/"
  2443. }
  2444. ],
  2445. "description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies",
  2446. "homepage": "https://github.com/Ocramius/ProxyManager",
  2447. "keywords": [
  2448. "aop",
  2449. "lazy loading",
  2450. "proxy",
  2451. "proxy pattern",
  2452. "service proxies"
  2453. ],
  2454. "funding": [
  2455. {
  2456. "url": "https://github.com/Ocramius",
  2457. "type": "github"
  2458. },
  2459. {
  2460. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  2461. "type": "tidelift"
  2462. }
  2463. ],
  2464. "time": "2020-04-13T14:42:16+00:00"
  2465. },
  2466. {
  2467. "name": "odolbeau/phone-number-bundle",
  2468. "version": "v3.1.1",
  2469. "source": {
  2470. "type": "git",
  2471. "url": "https://github.com/odolbeau/phone-number-bundle.git",
  2472. "reference": "7f9530b521f4baaf55232f47a13b737b9343e895"
  2473. },
  2474. "dist": {
  2475. "type": "zip",
  2476. "url": "https://api.github.com/repos/odolbeau/phone-number-bundle/zipball/7f9530b521f4baaf55232f47a13b737b9343e895",
  2477. "reference": "7f9530b521f4baaf55232f47a13b737b9343e895",
  2478. "shasum": ""
  2479. },
  2480. "require": {
  2481. "giggsey/libphonenumber-for-php": "^8.0",
  2482. "php": "^7.2",
  2483. "symfony/framework-bundle": "^3.4|^4.3|^5.0"
  2484. },
  2485. "replace": {
  2486. "misd/phone-number-bundle": "self.version"
  2487. },
  2488. "require-dev": {
  2489. "doctrine/doctrine-bundle": "^1.12|^2.0",
  2490. "phpunit/phpunit": "^8.4",
  2491. "symfony/form": "^3.4|^4.3|^5.0",
  2492. "symfony/serializer": "^3.4|^4.3|^5.0",
  2493. "symfony/twig-bundle": "^3.4|^4.3|^5.0",
  2494. "symfony/validator": "^3.4|^4.3|^5.0"
  2495. },
  2496. "suggest": {
  2497. "doctrine/doctrine-bundle": "Add a DBAL mapping type",
  2498. "symfony/form": "Add a data transformer",
  2499. "symfony/serializer": "Serialize/deserialize phone numbers using Symfony library",
  2500. "symfony/twig-bundle": "Format phone numbers in Twig templates",
  2501. "symfony/validator": "Add a validation constraint"
  2502. },
  2503. "type": "symfony-bundle",
  2504. "extra": {
  2505. "branch-alias": {
  2506. "dev-master": "3.1.x-dev"
  2507. }
  2508. },
  2509. "autoload": {
  2510. "psr-4": {
  2511. "Misd\\PhoneNumberBundle\\": "src/"
  2512. }
  2513. },
  2514. "notification-url": "https://packagist.org/downloads/",
  2515. "license": [
  2516. "MIT"
  2517. ],
  2518. "description": "Integrates libphonenumber into your Symfony application",
  2519. "homepage": "https://github.com/odolbeau/phone-number-bundle",
  2520. "keywords": [
  2521. "bundle",
  2522. "libphonenumber",
  2523. "phone-number",
  2524. "phonenumber",
  2525. "telephone number"
  2526. ],
  2527. "time": "2020-06-19T12:08:34+00:00"
  2528. },
  2529. {
  2530. "name": "php-ds/php-ds",
  2531. "version": "v1.3.0",
  2532. "source": {
  2533. "type": "git",
  2534. "url": "https://github.com/php-ds/polyfill.git",
  2535. "reference": "b98396862fb8a13cbdbbaf4d18be28ee5c01ed3c"
  2536. },
  2537. "dist": {
  2538. "type": "zip",
  2539. "url": "https://api.github.com/repos/php-ds/polyfill/zipball/b98396862fb8a13cbdbbaf4d18be28ee5c01ed3c",
  2540. "reference": "b98396862fb8a13cbdbbaf4d18be28ee5c01ed3c",
  2541. "shasum": ""
  2542. },
  2543. "require": {
  2544. "ext-json": "*",
  2545. "php": ">=7.0.0"
  2546. },
  2547. "provide": {
  2548. "ext-ds": "1.3.0"
  2549. },
  2550. "require-dev": {
  2551. "php-ds/tests": "^1.3"
  2552. },
  2553. "suggest": {
  2554. "ext-ds": "to improve performance and reduce memory usage"
  2555. },
  2556. "type": "library",
  2557. "autoload": {
  2558. "psr-4": {
  2559. "Ds\\": "src"
  2560. }
  2561. },
  2562. "notification-url": "https://packagist.org/downloads/",
  2563. "license": [
  2564. "MIT"
  2565. ],
  2566. "authors": [
  2567. {
  2568. "name": "Rudi Theunissen",
  2569. "email": "rudolf.theunissen@gmail.com"
  2570. }
  2571. ],
  2572. "keywords": [
  2573. "data structures",
  2574. "ds",
  2575. "php",
  2576. "polyfill"
  2577. ],
  2578. "time": "2020-10-14T04:23:31+00:00"
  2579. },
  2580. {
  2581. "name": "phpdocumentor/reflection-common",
  2582. "version": "2.2.0",
  2583. "source": {
  2584. "type": "git",
  2585. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2586. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2587. },
  2588. "dist": {
  2589. "type": "zip",
  2590. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2591. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2592. "shasum": ""
  2593. },
  2594. "require": {
  2595. "php": "^7.2 || ^8.0"
  2596. },
  2597. "type": "library",
  2598. "extra": {
  2599. "branch-alias": {
  2600. "dev-2.x": "2.x-dev"
  2601. }
  2602. },
  2603. "autoload": {
  2604. "psr-4": {
  2605. "phpDocumentor\\Reflection\\": "src/"
  2606. }
  2607. },
  2608. "notification-url": "https://packagist.org/downloads/",
  2609. "license": [
  2610. "MIT"
  2611. ],
  2612. "authors": [
  2613. {
  2614. "name": "Jaap van Otterdijk",
  2615. "email": "opensource@ijaap.nl"
  2616. }
  2617. ],
  2618. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2619. "homepage": "http://www.phpdoc.org",
  2620. "keywords": [
  2621. "FQSEN",
  2622. "phpDocumentor",
  2623. "phpdoc",
  2624. "reflection",
  2625. "static analysis"
  2626. ],
  2627. "time": "2020-06-27T09:03:43+00:00"
  2628. },
  2629. {
  2630. "name": "phpdocumentor/reflection-docblock",
  2631. "version": "5.2.2",
  2632. "source": {
  2633. "type": "git",
  2634. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2635. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  2636. },
  2637. "dist": {
  2638. "type": "zip",
  2639. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  2640. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  2641. "shasum": ""
  2642. },
  2643. "require": {
  2644. "ext-filter": "*",
  2645. "php": "^7.2 || ^8.0",
  2646. "phpdocumentor/reflection-common": "^2.2",
  2647. "phpdocumentor/type-resolver": "^1.3",
  2648. "webmozart/assert": "^1.9.1"
  2649. },
  2650. "require-dev": {
  2651. "mockery/mockery": "~1.3.2"
  2652. },
  2653. "type": "library",
  2654. "extra": {
  2655. "branch-alias": {
  2656. "dev-master": "5.x-dev"
  2657. }
  2658. },
  2659. "autoload": {
  2660. "psr-4": {
  2661. "phpDocumentor\\Reflection\\": "src"
  2662. }
  2663. },
  2664. "notification-url": "https://packagist.org/downloads/",
  2665. "license": [
  2666. "MIT"
  2667. ],
  2668. "authors": [
  2669. {
  2670. "name": "Mike van Riel",
  2671. "email": "me@mikevanriel.com"
  2672. },
  2673. {
  2674. "name": "Jaap van Otterdijk",
  2675. "email": "account@ijaap.nl"
  2676. }
  2677. ],
  2678. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2679. "time": "2020-09-03T19:13:55+00:00"
  2680. },
  2681. {
  2682. "name": "phpdocumentor/type-resolver",
  2683. "version": "1.4.0",
  2684. "source": {
  2685. "type": "git",
  2686. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2687. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  2688. },
  2689. "dist": {
  2690. "type": "zip",
  2691. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  2692. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  2693. "shasum": ""
  2694. },
  2695. "require": {
  2696. "php": "^7.2 || ^8.0",
  2697. "phpdocumentor/reflection-common": "^2.0"
  2698. },
  2699. "require-dev": {
  2700. "ext-tokenizer": "*"
  2701. },
  2702. "type": "library",
  2703. "extra": {
  2704. "branch-alias": {
  2705. "dev-1.x": "1.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. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2724. "time": "2020-09-17T18:55:26+00:00"
  2725. },
  2726. {
  2727. "name": "psr/cache",
  2728. "version": "1.0.1",
  2729. "source": {
  2730. "type": "git",
  2731. "url": "https://github.com/php-fig/cache.git",
  2732. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2733. },
  2734. "dist": {
  2735. "type": "zip",
  2736. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2737. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2738. "shasum": ""
  2739. },
  2740. "require": {
  2741. "php": ">=5.3.0"
  2742. },
  2743. "type": "library",
  2744. "extra": {
  2745. "branch-alias": {
  2746. "dev-master": "1.0.x-dev"
  2747. }
  2748. },
  2749. "autoload": {
  2750. "psr-4": {
  2751. "Psr\\Cache\\": "src/"
  2752. }
  2753. },
  2754. "notification-url": "https://packagist.org/downloads/",
  2755. "license": [
  2756. "MIT"
  2757. ],
  2758. "authors": [
  2759. {
  2760. "name": "PHP-FIG",
  2761. "homepage": "http://www.php-fig.org/"
  2762. }
  2763. ],
  2764. "description": "Common interface for caching libraries",
  2765. "keywords": [
  2766. "cache",
  2767. "psr",
  2768. "psr-6"
  2769. ],
  2770. "time": "2016-08-06T20:24:11+00:00"
  2771. },
  2772. {
  2773. "name": "psr/container",
  2774. "version": "1.0.0",
  2775. "source": {
  2776. "type": "git",
  2777. "url": "https://github.com/php-fig/container.git",
  2778. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2779. },
  2780. "dist": {
  2781. "type": "zip",
  2782. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2783. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2784. "shasum": ""
  2785. },
  2786. "require": {
  2787. "php": ">=5.3.0"
  2788. },
  2789. "type": "library",
  2790. "extra": {
  2791. "branch-alias": {
  2792. "dev-master": "1.0.x-dev"
  2793. }
  2794. },
  2795. "autoload": {
  2796. "psr-4": {
  2797. "Psr\\Container\\": "src/"
  2798. }
  2799. },
  2800. "notification-url": "https://packagist.org/downloads/",
  2801. "license": [
  2802. "MIT"
  2803. ],
  2804. "authors": [
  2805. {
  2806. "name": "PHP-FIG",
  2807. "homepage": "http://www.php-fig.org/"
  2808. }
  2809. ],
  2810. "description": "Common Container Interface (PHP FIG PSR-11)",
  2811. "homepage": "https://github.com/php-fig/container",
  2812. "keywords": [
  2813. "PSR-11",
  2814. "container",
  2815. "container-interface",
  2816. "container-interop",
  2817. "psr"
  2818. ],
  2819. "time": "2017-02-14T16:28:37+00:00"
  2820. },
  2821. {
  2822. "name": "psr/event-dispatcher",
  2823. "version": "1.0.0",
  2824. "source": {
  2825. "type": "git",
  2826. "url": "https://github.com/php-fig/event-dispatcher.git",
  2827. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2828. },
  2829. "dist": {
  2830. "type": "zip",
  2831. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2832. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2833. "shasum": ""
  2834. },
  2835. "require": {
  2836. "php": ">=7.2.0"
  2837. },
  2838. "type": "library",
  2839. "extra": {
  2840. "branch-alias": {
  2841. "dev-master": "1.0.x-dev"
  2842. }
  2843. },
  2844. "autoload": {
  2845. "psr-4": {
  2846. "Psr\\EventDispatcher\\": "src/"
  2847. }
  2848. },
  2849. "notification-url": "https://packagist.org/downloads/",
  2850. "license": [
  2851. "MIT"
  2852. ],
  2853. "authors": [
  2854. {
  2855. "name": "PHP-FIG",
  2856. "homepage": "http://www.php-fig.org/"
  2857. }
  2858. ],
  2859. "description": "Standard interfaces for event handling.",
  2860. "keywords": [
  2861. "events",
  2862. "psr",
  2863. "psr-14"
  2864. ],
  2865. "time": "2019-01-08T18:20:26+00:00"
  2866. },
  2867. {
  2868. "name": "psr/link",
  2869. "version": "1.0.0",
  2870. "source": {
  2871. "type": "git",
  2872. "url": "https://github.com/php-fig/link.git",
  2873. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  2874. },
  2875. "dist": {
  2876. "type": "zip",
  2877. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  2878. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  2879. "shasum": ""
  2880. },
  2881. "require": {
  2882. "php": ">=5.3.0"
  2883. },
  2884. "type": "library",
  2885. "extra": {
  2886. "branch-alias": {
  2887. "dev-master": "1.0.x-dev"
  2888. }
  2889. },
  2890. "autoload": {
  2891. "psr-4": {
  2892. "Psr\\Link\\": "src/"
  2893. }
  2894. },
  2895. "notification-url": "https://packagist.org/downloads/",
  2896. "license": [
  2897. "MIT"
  2898. ],
  2899. "authors": [
  2900. {
  2901. "name": "PHP-FIG",
  2902. "homepage": "http://www.php-fig.org/"
  2903. }
  2904. ],
  2905. "description": "Common interfaces for HTTP links",
  2906. "keywords": [
  2907. "http",
  2908. "http-link",
  2909. "link",
  2910. "psr",
  2911. "psr-13",
  2912. "rest"
  2913. ],
  2914. "time": "2016-10-28T16:06:13+00:00"
  2915. },
  2916. {
  2917. "name": "psr/log",
  2918. "version": "1.1.3",
  2919. "source": {
  2920. "type": "git",
  2921. "url": "https://github.com/php-fig/log.git",
  2922. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  2923. },
  2924. "dist": {
  2925. "type": "zip",
  2926. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  2927. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  2928. "shasum": ""
  2929. },
  2930. "require": {
  2931. "php": ">=5.3.0"
  2932. },
  2933. "type": "library",
  2934. "extra": {
  2935. "branch-alias": {
  2936. "dev-master": "1.1.x-dev"
  2937. }
  2938. },
  2939. "autoload": {
  2940. "psr-4": {
  2941. "Psr\\Log\\": "Psr/Log/"
  2942. }
  2943. },
  2944. "notification-url": "https://packagist.org/downloads/",
  2945. "license": [
  2946. "MIT"
  2947. ],
  2948. "authors": [
  2949. {
  2950. "name": "PHP-FIG",
  2951. "homepage": "http://www.php-fig.org/"
  2952. }
  2953. ],
  2954. "description": "Common interface for logging libraries",
  2955. "homepage": "https://github.com/php-fig/log",
  2956. "keywords": [
  2957. "log",
  2958. "psr",
  2959. "psr-3"
  2960. ],
  2961. "time": "2020-03-23T09:12:05+00:00"
  2962. },
  2963. {
  2964. "name": "sensio/framework-extra-bundle",
  2965. "version": "v5.6.1",
  2966. "source": {
  2967. "type": "git",
  2968. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2969. "reference": "430d14c01836b77c28092883d195a43ce413ee32"
  2970. },
  2971. "dist": {
  2972. "type": "zip",
  2973. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/430d14c01836b77c28092883d195a43ce413ee32",
  2974. "reference": "430d14c01836b77c28092883d195a43ce413ee32",
  2975. "shasum": ""
  2976. },
  2977. "require": {
  2978. "doctrine/annotations": "^1.0",
  2979. "php": ">=7.2.5",
  2980. "symfony/config": "^4.4|^5.0",
  2981. "symfony/dependency-injection": "^4.4|^5.0",
  2982. "symfony/framework-bundle": "^4.4|^5.0",
  2983. "symfony/http-kernel": "^4.4|^5.0"
  2984. },
  2985. "conflict": {
  2986. "doctrine/doctrine-cache-bundle": "<1.3.1",
  2987. "doctrine/persistence": "<1.3"
  2988. },
  2989. "require-dev": {
  2990. "doctrine/dbal": "^2.10|^3.0",
  2991. "doctrine/doctrine-bundle": "^1.11|^2.0",
  2992. "doctrine/orm": "^2.5",
  2993. "nyholm/psr7": "^1.1",
  2994. "symfony/browser-kit": "^4.4|^5.0",
  2995. "symfony/doctrine-bridge": "^4.4|^5.0",
  2996. "symfony/dom-crawler": "^4.4|^5.0",
  2997. "symfony/expression-language": "^4.4|^5.0",
  2998. "symfony/finder": "^4.4|^5.0",
  2999. "symfony/monolog-bridge": "^4.0|^5.0",
  3000. "symfony/monolog-bundle": "^3.2",
  3001. "symfony/phpunit-bridge": "^4.4.9|^5.0.9",
  3002. "symfony/psr-http-message-bridge": "^1.1",
  3003. "symfony/security-bundle": "^4.4|^5.0",
  3004. "symfony/twig-bundle": "^4.4|^5.0",
  3005. "symfony/yaml": "^4.4|^5.0",
  3006. "twig/twig": "^1.34|^2.4|^3.0"
  3007. },
  3008. "type": "symfony-bundle",
  3009. "extra": {
  3010. "branch-alias": {
  3011. "dev-master": "5.6.x-dev"
  3012. }
  3013. },
  3014. "autoload": {
  3015. "psr-4": {
  3016. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  3017. },
  3018. "exclude-from-classmap": [
  3019. "/tests/"
  3020. ]
  3021. },
  3022. "notification-url": "https://packagist.org/downloads/",
  3023. "license": [
  3024. "MIT"
  3025. ],
  3026. "authors": [
  3027. {
  3028. "name": "Fabien Potencier",
  3029. "email": "fabien@symfony.com"
  3030. }
  3031. ],
  3032. "description": "This bundle provides a way to configure your controllers with annotations",
  3033. "keywords": [
  3034. "annotations",
  3035. "controllers"
  3036. ],
  3037. "time": "2020-08-25T19:10:18+00:00"
  3038. },
  3039. {
  3040. "name": "someonewithpc/memcached-polyfill",
  3041. "version": "1.0.1",
  3042. "source": {
  3043. "type": "git",
  3044. "url": "https://github.com/someonewithpc/memcached-polyfill.git",
  3045. "reference": "326a44a1ce5f936b25aa69b5c9b82a7cc8e565b4"
  3046. },
  3047. "dist": {
  3048. "type": "zip",
  3049. "url": "https://api.github.com/repos/someonewithpc/memcached-polyfill/zipball/326a44a1ce5f936b25aa69b5c9b82a7cc8e565b4",
  3050. "reference": "326a44a1ce5f936b25aa69b5c9b82a7cc8e565b4",
  3051. "shasum": ""
  3052. },
  3053. "type": "library",
  3054. "autoload": {
  3055. "psr-4": {
  3056. "": "src"
  3057. }
  3058. },
  3059. "notification-url": "https://packagist.org/downloads/",
  3060. "license": [
  3061. "GPL-3.0-or-later"
  3062. ],
  3063. "authors": [
  3064. {
  3065. "name": "Hugo Sales",
  3066. "email": "hugo@fc.up.pt"
  3067. }
  3068. ],
  3069. "description": "No-implementation memcached extension polyfill",
  3070. "keywords": [
  3071. "memcached",
  3072. "polyfill",
  3073. "symfony"
  3074. ],
  3075. "time": "2020-07-17T22:30:37+00:00"
  3076. },
  3077. {
  3078. "name": "someonewithpc/redis-polyfill",
  3079. "version": "1.0.1",
  3080. "source": {
  3081. "type": "git",
  3082. "url": "https://github.com/someonewithpc/php-redis-polyfill.git",
  3083. "reference": "db70a9df20bb2b82f594d84c4490b8edd20379a2"
  3084. },
  3085. "dist": {
  3086. "type": "zip",
  3087. "url": "https://api.github.com/repos/someonewithpc/php-redis-polyfill/zipball/db70a9df20bb2b82f594d84c4490b8edd20379a2",
  3088. "reference": "db70a9df20bb2b82f594d84c4490b8edd20379a2",
  3089. "shasum": ""
  3090. },
  3091. "type": "library",
  3092. "autoload": {
  3093. "psr-4": {
  3094. "": "src"
  3095. }
  3096. },
  3097. "notification-url": "https://packagist.org/downloads/",
  3098. "license": [
  3099. "GPL-3.0-or-later"
  3100. ],
  3101. "authors": [
  3102. {
  3103. "name": "Hugo Sales",
  3104. "email": "hugo@fc.up.pt"
  3105. }
  3106. ],
  3107. "description": "No-implementation redis extension polyfill",
  3108. "keywords": [
  3109. "polyfill",
  3110. "redis"
  3111. ],
  3112. "time": "2020-07-17T22:29:37+00:00"
  3113. },
  3114. {
  3115. "name": "symfony/amqp-messenger",
  3116. "version": "v5.1.7",
  3117. "source": {
  3118. "type": "git",
  3119. "url": "https://github.com/symfony/amqp-messenger.git",
  3120. "reference": "4cbeeb561be52763a814f4e886fde0ee115b82cd"
  3121. },
  3122. "dist": {
  3123. "type": "zip",
  3124. "url": "https://api.github.com/repos/symfony/amqp-messenger/zipball/4cbeeb561be52763a814f4e886fde0ee115b82cd",
  3125. "reference": "4cbeeb561be52763a814f4e886fde0ee115b82cd",
  3126. "shasum": ""
  3127. },
  3128. "require": {
  3129. "php": ">=7.2.5",
  3130. "symfony/messenger": "^5.1"
  3131. },
  3132. "require-dev": {
  3133. "symfony/event-dispatcher": "^4.4|^5.0",
  3134. "symfony/process": "^4.4|^5.0",
  3135. "symfony/property-access": "^4.4|^5.0",
  3136. "symfony/serializer": "^4.4|^5.0"
  3137. },
  3138. "type": "symfony-bridge",
  3139. "extra": {
  3140. "branch-alias": {
  3141. "dev-master": "5.1-dev"
  3142. }
  3143. },
  3144. "autoload": {
  3145. "psr-4": {
  3146. "Symfony\\Component\\Messenger\\Bridge\\Amqp\\": ""
  3147. },
  3148. "exclude-from-classmap": [
  3149. "/Tests/"
  3150. ]
  3151. },
  3152. "notification-url": "https://packagist.org/downloads/",
  3153. "license": [
  3154. "MIT"
  3155. ],
  3156. "authors": [
  3157. {
  3158. "name": "Fabien Potencier",
  3159. "email": "fabien@symfony.com"
  3160. },
  3161. {
  3162. "name": "Symfony Community",
  3163. "homepage": "https://symfony.com/contributors"
  3164. }
  3165. ],
  3166. "description": "Symfony AMQP extension Messenger Bridge",
  3167. "homepage": "https://symfony.com",
  3168. "funding": [
  3169. {
  3170. "url": "https://symfony.com/sponsor",
  3171. "type": "custom"
  3172. },
  3173. {
  3174. "url": "https://github.com/fabpot",
  3175. "type": "github"
  3176. },
  3177. {
  3178. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3179. "type": "tidelift"
  3180. }
  3181. ],
  3182. "time": "2020-09-14T15:02:15+00:00"
  3183. },
  3184. {
  3185. "name": "symfony/asset",
  3186. "version": "v5.1.7",
  3187. "source": {
  3188. "type": "git",
  3189. "url": "https://github.com/symfony/asset.git",
  3190. "reference": "ef0bcafce1c14bbf49838b01e990a8bfafd071eb"
  3191. },
  3192. "dist": {
  3193. "type": "zip",
  3194. "url": "https://api.github.com/repos/symfony/asset/zipball/ef0bcafce1c14bbf49838b01e990a8bfafd071eb",
  3195. "reference": "ef0bcafce1c14bbf49838b01e990a8bfafd071eb",
  3196. "shasum": ""
  3197. },
  3198. "require": {
  3199. "php": ">=7.2.5"
  3200. },
  3201. "require-dev": {
  3202. "symfony/http-client": "^4.4|^5.0",
  3203. "symfony/http-foundation": "^4.4|^5.0",
  3204. "symfony/http-kernel": "^4.4|^5.0"
  3205. },
  3206. "suggest": {
  3207. "symfony/http-foundation": ""
  3208. },
  3209. "type": "library",
  3210. "extra": {
  3211. "branch-alias": {
  3212. "dev-master": "5.1-dev"
  3213. }
  3214. },
  3215. "autoload": {
  3216. "psr-4": {
  3217. "Symfony\\Component\\Asset\\": ""
  3218. },
  3219. "exclude-from-classmap": [
  3220. "/Tests/"
  3221. ]
  3222. },
  3223. "notification-url": "https://packagist.org/downloads/",
  3224. "license": [
  3225. "MIT"
  3226. ],
  3227. "authors": [
  3228. {
  3229. "name": "Fabien Potencier",
  3230. "email": "fabien@symfony.com"
  3231. },
  3232. {
  3233. "name": "Symfony Community",
  3234. "homepage": "https://symfony.com/contributors"
  3235. }
  3236. ],
  3237. "description": "Symfony Asset Component",
  3238. "homepage": "https://symfony.com",
  3239. "funding": [
  3240. {
  3241. "url": "https://symfony.com/sponsor",
  3242. "type": "custom"
  3243. },
  3244. {
  3245. "url": "https://github.com/fabpot",
  3246. "type": "github"
  3247. },
  3248. {
  3249. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3250. "type": "tidelift"
  3251. }
  3252. ],
  3253. "time": "2020-09-02T16:23:27+00:00"
  3254. },
  3255. {
  3256. "name": "symfony/cache",
  3257. "version": "v5.1.7",
  3258. "source": {
  3259. "type": "git",
  3260. "url": "https://github.com/symfony/cache.git",
  3261. "reference": "292cd57b7c2e3c37aa2f0a2fa42dacae567dd5cd"
  3262. },
  3263. "dist": {
  3264. "type": "zip",
  3265. "url": "https://api.github.com/repos/symfony/cache/zipball/292cd57b7c2e3c37aa2f0a2fa42dacae567dd5cd",
  3266. "reference": "292cd57b7c2e3c37aa2f0a2fa42dacae567dd5cd",
  3267. "shasum": ""
  3268. },
  3269. "require": {
  3270. "php": ">=7.2.5",
  3271. "psr/cache": "~1.0",
  3272. "psr/log": "~1.0",
  3273. "symfony/cache-contracts": "^1.1.7|^2",
  3274. "symfony/polyfill-php80": "^1.15",
  3275. "symfony/service-contracts": "^1.1|^2",
  3276. "symfony/var-exporter": "^4.4|^5.0"
  3277. },
  3278. "conflict": {
  3279. "doctrine/dbal": "<2.5",
  3280. "symfony/dependency-injection": "<4.4",
  3281. "symfony/http-kernel": "<4.4",
  3282. "symfony/var-dumper": "<4.4"
  3283. },
  3284. "provide": {
  3285. "psr/cache-implementation": "1.0",
  3286. "psr/simple-cache-implementation": "1.0",
  3287. "symfony/cache-implementation": "1.0"
  3288. },
  3289. "require-dev": {
  3290. "cache/integration-tests": "dev-master",
  3291. "doctrine/cache": "^1.6",
  3292. "doctrine/dbal": "^2.5|^3.0",
  3293. "predis/predis": "^1.1",
  3294. "psr/simple-cache": "^1.0",
  3295. "symfony/config": "^4.4|^5.0",
  3296. "symfony/dependency-injection": "^4.4|^5.0",
  3297. "symfony/var-dumper": "^4.4|^5.0"
  3298. },
  3299. "type": "library",
  3300. "extra": {
  3301. "branch-alias": {
  3302. "dev-master": "5.1-dev"
  3303. }
  3304. },
  3305. "autoload": {
  3306. "psr-4": {
  3307. "Symfony\\Component\\Cache\\": ""
  3308. },
  3309. "exclude-from-classmap": [
  3310. "/Tests/"
  3311. ]
  3312. },
  3313. "notification-url": "https://packagist.org/downloads/",
  3314. "license": [
  3315. "MIT"
  3316. ],
  3317. "authors": [
  3318. {
  3319. "name": "Nicolas Grekas",
  3320. "email": "p@tchwork.com"
  3321. },
  3322. {
  3323. "name": "Symfony Community",
  3324. "homepage": "https://symfony.com/contributors"
  3325. }
  3326. ],
  3327. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  3328. "homepage": "https://symfony.com",
  3329. "keywords": [
  3330. "caching",
  3331. "psr6"
  3332. ],
  3333. "funding": [
  3334. {
  3335. "url": "https://symfony.com/sponsor",
  3336. "type": "custom"
  3337. },
  3338. {
  3339. "url": "https://github.com/fabpot",
  3340. "type": "github"
  3341. },
  3342. {
  3343. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3344. "type": "tidelift"
  3345. }
  3346. ],
  3347. "time": "2020-09-27T14:02:37+00:00"
  3348. },
  3349. {
  3350. "name": "symfony/cache-contracts",
  3351. "version": "v2.2.0",
  3352. "source": {
  3353. "type": "git",
  3354. "url": "https://github.com/symfony/cache-contracts.git",
  3355. "reference": "8034ca0b61d4dd967f3698aaa1da2507b631d0cb"
  3356. },
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/8034ca0b61d4dd967f3698aaa1da2507b631d0cb",
  3360. "reference": "8034ca0b61d4dd967f3698aaa1da2507b631d0cb",
  3361. "shasum": ""
  3362. },
  3363. "require": {
  3364. "php": ">=7.2.5",
  3365. "psr/cache": "^1.0"
  3366. },
  3367. "suggest": {
  3368. "symfony/cache-implementation": ""
  3369. },
  3370. "type": "library",
  3371. "extra": {
  3372. "branch-alias": {
  3373. "dev-master": "2.2-dev"
  3374. },
  3375. "thanks": {
  3376. "name": "symfony/contracts",
  3377. "url": "https://github.com/symfony/contracts"
  3378. }
  3379. },
  3380. "autoload": {
  3381. "psr-4": {
  3382. "Symfony\\Contracts\\Cache\\": ""
  3383. }
  3384. },
  3385. "notification-url": "https://packagist.org/downloads/",
  3386. "license": [
  3387. "MIT"
  3388. ],
  3389. "authors": [
  3390. {
  3391. "name": "Nicolas Grekas",
  3392. "email": "p@tchwork.com"
  3393. },
  3394. {
  3395. "name": "Symfony Community",
  3396. "homepage": "https://symfony.com/contributors"
  3397. }
  3398. ],
  3399. "description": "Generic abstractions related to caching",
  3400. "homepage": "https://symfony.com",
  3401. "keywords": [
  3402. "abstractions",
  3403. "contracts",
  3404. "decoupling",
  3405. "interfaces",
  3406. "interoperability",
  3407. "standards"
  3408. ],
  3409. "funding": [
  3410. {
  3411. "url": "https://symfony.com/sponsor",
  3412. "type": "custom"
  3413. },
  3414. {
  3415. "url": "https://github.com/fabpot",
  3416. "type": "github"
  3417. },
  3418. {
  3419. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3420. "type": "tidelift"
  3421. }
  3422. ],
  3423. "time": "2020-09-07T11:33:47+00:00"
  3424. },
  3425. {
  3426. "name": "symfony/config",
  3427. "version": "v5.1.7",
  3428. "source": {
  3429. "type": "git",
  3430. "url": "https://github.com/symfony/config.git",
  3431. "reference": "6ad8be6e1280f6734150d8a04a9160dd34ceb191"
  3432. },
  3433. "dist": {
  3434. "type": "zip",
  3435. "url": "https://api.github.com/repos/symfony/config/zipball/6ad8be6e1280f6734150d8a04a9160dd34ceb191",
  3436. "reference": "6ad8be6e1280f6734150d8a04a9160dd34ceb191",
  3437. "shasum": ""
  3438. },
  3439. "require": {
  3440. "php": ">=7.2.5",
  3441. "symfony/deprecation-contracts": "^2.1",
  3442. "symfony/filesystem": "^4.4|^5.0",
  3443. "symfony/polyfill-ctype": "~1.8",
  3444. "symfony/polyfill-php80": "^1.15"
  3445. },
  3446. "conflict": {
  3447. "symfony/finder": "<4.4"
  3448. },
  3449. "require-dev": {
  3450. "symfony/event-dispatcher": "^4.4|^5.0",
  3451. "symfony/finder": "^4.4|^5.0",
  3452. "symfony/messenger": "^4.4|^5.0",
  3453. "symfony/service-contracts": "^1.1|^2",
  3454. "symfony/yaml": "^4.4|^5.0"
  3455. },
  3456. "suggest": {
  3457. "symfony/yaml": "To use the yaml reference dumper"
  3458. },
  3459. "type": "library",
  3460. "extra": {
  3461. "branch-alias": {
  3462. "dev-master": "5.1-dev"
  3463. }
  3464. },
  3465. "autoload": {
  3466. "psr-4": {
  3467. "Symfony\\Component\\Config\\": ""
  3468. },
  3469. "exclude-from-classmap": [
  3470. "/Tests/"
  3471. ]
  3472. },
  3473. "notification-url": "https://packagist.org/downloads/",
  3474. "license": [
  3475. "MIT"
  3476. ],
  3477. "authors": [
  3478. {
  3479. "name": "Fabien Potencier",
  3480. "email": "fabien@symfony.com"
  3481. },
  3482. {
  3483. "name": "Symfony Community",
  3484. "homepage": "https://symfony.com/contributors"
  3485. }
  3486. ],
  3487. "description": "Symfony Config Component",
  3488. "homepage": "https://symfony.com",
  3489. "funding": [
  3490. {
  3491. "url": "https://symfony.com/sponsor",
  3492. "type": "custom"
  3493. },
  3494. {
  3495. "url": "https://github.com/fabpot",
  3496. "type": "github"
  3497. },
  3498. {
  3499. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3500. "type": "tidelift"
  3501. }
  3502. ],
  3503. "time": "2020-09-02T16:23:27+00:00"
  3504. },
  3505. {
  3506. "name": "symfony/console",
  3507. "version": "v5.1.7",
  3508. "source": {
  3509. "type": "git",
  3510. "url": "https://github.com/symfony/console.git",
  3511. "reference": "ae789a8a2ad189ce7e8216942cdb9b77319f5eb8"
  3512. },
  3513. "dist": {
  3514. "type": "zip",
  3515. "url": "https://api.github.com/repos/symfony/console/zipball/ae789a8a2ad189ce7e8216942cdb9b77319f5eb8",
  3516. "reference": "ae789a8a2ad189ce7e8216942cdb9b77319f5eb8",
  3517. "shasum": ""
  3518. },
  3519. "require": {
  3520. "php": ">=7.2.5",
  3521. "symfony/polyfill-mbstring": "~1.0",
  3522. "symfony/polyfill-php73": "^1.8",
  3523. "symfony/polyfill-php80": "^1.15",
  3524. "symfony/service-contracts": "^1.1|^2",
  3525. "symfony/string": "^5.1"
  3526. },
  3527. "conflict": {
  3528. "symfony/dependency-injection": "<4.4",
  3529. "symfony/dotenv": "<5.1",
  3530. "symfony/event-dispatcher": "<4.4",
  3531. "symfony/lock": "<4.4",
  3532. "symfony/process": "<4.4"
  3533. },
  3534. "provide": {
  3535. "psr/log-implementation": "1.0"
  3536. },
  3537. "require-dev": {
  3538. "psr/log": "~1.0",
  3539. "symfony/config": "^4.4|^5.0",
  3540. "symfony/dependency-injection": "^4.4|^5.0",
  3541. "symfony/event-dispatcher": "^4.4|^5.0",
  3542. "symfony/lock": "^4.4|^5.0",
  3543. "symfony/process": "^4.4|^5.0",
  3544. "symfony/var-dumper": "^4.4|^5.0"
  3545. },
  3546. "suggest": {
  3547. "psr/log": "For using the console logger",
  3548. "symfony/event-dispatcher": "",
  3549. "symfony/lock": "",
  3550. "symfony/process": ""
  3551. },
  3552. "type": "library",
  3553. "extra": {
  3554. "branch-alias": {
  3555. "dev-master": "5.1-dev"
  3556. }
  3557. },
  3558. "autoload": {
  3559. "psr-4": {
  3560. "Symfony\\Component\\Console\\": ""
  3561. },
  3562. "exclude-from-classmap": [
  3563. "/Tests/"
  3564. ]
  3565. },
  3566. "notification-url": "https://packagist.org/downloads/",
  3567. "license": [
  3568. "MIT"
  3569. ],
  3570. "authors": [
  3571. {
  3572. "name": "Fabien Potencier",
  3573. "email": "fabien@symfony.com"
  3574. },
  3575. {
  3576. "name": "Symfony Community",
  3577. "homepage": "https://symfony.com/contributors"
  3578. }
  3579. ],
  3580. "description": "Symfony Console Component",
  3581. "homepage": "https://symfony.com",
  3582. "funding": [
  3583. {
  3584. "url": "https://symfony.com/sponsor",
  3585. "type": "custom"
  3586. },
  3587. {
  3588. "url": "https://github.com/fabpot",
  3589. "type": "github"
  3590. },
  3591. {
  3592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3593. "type": "tidelift"
  3594. }
  3595. ],
  3596. "time": "2020-10-07T15:23:00+00:00"
  3597. },
  3598. {
  3599. "name": "symfony/dependency-injection",
  3600. "version": "v5.1.7",
  3601. "source": {
  3602. "type": "git",
  3603. "url": "https://github.com/symfony/dependency-injection.git",
  3604. "reference": "2dea4a3ef2eb79138354c1d49e9372cc921af20b"
  3605. },
  3606. "dist": {
  3607. "type": "zip",
  3608. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2dea4a3ef2eb79138354c1d49e9372cc921af20b",
  3609. "reference": "2dea4a3ef2eb79138354c1d49e9372cc921af20b",
  3610. "shasum": ""
  3611. },
  3612. "require": {
  3613. "php": ">=7.2.5",
  3614. "psr/container": "^1.0",
  3615. "symfony/deprecation-contracts": "^2.1",
  3616. "symfony/polyfill-php80": "^1.15",
  3617. "symfony/service-contracts": "^1.1.6|^2"
  3618. },
  3619. "conflict": {
  3620. "symfony/config": "<5.1",
  3621. "symfony/finder": "<4.4",
  3622. "symfony/proxy-manager-bridge": "<4.4",
  3623. "symfony/yaml": "<4.4"
  3624. },
  3625. "provide": {
  3626. "psr/container-implementation": "1.0",
  3627. "symfony/service-implementation": "1.0"
  3628. },
  3629. "require-dev": {
  3630. "symfony/config": "^5.1",
  3631. "symfony/expression-language": "^4.4|^5.0",
  3632. "symfony/yaml": "^4.4|^5.0"
  3633. },
  3634. "suggest": {
  3635. "symfony/config": "",
  3636. "symfony/expression-language": "For using expressions in service container configuration",
  3637. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3638. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  3639. "symfony/yaml": ""
  3640. },
  3641. "type": "library",
  3642. "extra": {
  3643. "branch-alias": {
  3644. "dev-master": "5.1-dev"
  3645. }
  3646. },
  3647. "autoload": {
  3648. "psr-4": {
  3649. "Symfony\\Component\\DependencyInjection\\": ""
  3650. },
  3651. "exclude-from-classmap": [
  3652. "/Tests/"
  3653. ]
  3654. },
  3655. "notification-url": "https://packagist.org/downloads/",
  3656. "license": [
  3657. "MIT"
  3658. ],
  3659. "authors": [
  3660. {
  3661. "name": "Fabien Potencier",
  3662. "email": "fabien@symfony.com"
  3663. },
  3664. {
  3665. "name": "Symfony Community",
  3666. "homepage": "https://symfony.com/contributors"
  3667. }
  3668. ],
  3669. "description": "Symfony DependencyInjection Component",
  3670. "homepage": "https://symfony.com",
  3671. "funding": [
  3672. {
  3673. "url": "https://symfony.com/sponsor",
  3674. "type": "custom"
  3675. },
  3676. {
  3677. "url": "https://github.com/fabpot",
  3678. "type": "github"
  3679. },
  3680. {
  3681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3682. "type": "tidelift"
  3683. }
  3684. ],
  3685. "time": "2020-10-01T12:14:45+00:00"
  3686. },
  3687. {
  3688. "name": "symfony/deprecation-contracts",
  3689. "version": "v2.2.0",
  3690. "source": {
  3691. "type": "git",
  3692. "url": "https://github.com/symfony/deprecation-contracts.git",
  3693. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  3694. },
  3695. "dist": {
  3696. "type": "zip",
  3697. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  3698. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  3699. "shasum": ""
  3700. },
  3701. "require": {
  3702. "php": ">=7.1"
  3703. },
  3704. "type": "library",
  3705. "extra": {
  3706. "branch-alias": {
  3707. "dev-master": "2.2-dev"
  3708. },
  3709. "thanks": {
  3710. "name": "symfony/contracts",
  3711. "url": "https://github.com/symfony/contracts"
  3712. }
  3713. },
  3714. "autoload": {
  3715. "files": [
  3716. "function.php"
  3717. ]
  3718. },
  3719. "notification-url": "https://packagist.org/downloads/",
  3720. "license": [
  3721. "MIT"
  3722. ],
  3723. "authors": [
  3724. {
  3725. "name": "Nicolas Grekas",
  3726. "email": "p@tchwork.com"
  3727. },
  3728. {
  3729. "name": "Symfony Community",
  3730. "homepage": "https://symfony.com/contributors"
  3731. }
  3732. ],
  3733. "description": "A generic function and convention to trigger deprecation notices",
  3734. "homepage": "https://symfony.com",
  3735. "funding": [
  3736. {
  3737. "url": "https://symfony.com/sponsor",
  3738. "type": "custom"
  3739. },
  3740. {
  3741. "url": "https://github.com/fabpot",
  3742. "type": "github"
  3743. },
  3744. {
  3745. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3746. "type": "tidelift"
  3747. }
  3748. ],
  3749. "time": "2020-09-07T11:33:47+00:00"
  3750. },
  3751. {
  3752. "name": "symfony/doctrine-bridge",
  3753. "version": "v5.1.7",
  3754. "source": {
  3755. "type": "git",
  3756. "url": "https://github.com/symfony/doctrine-bridge.git",
  3757. "reference": "b7369a435a64d06e9036e69ed1cd6ce240338583"
  3758. },
  3759. "dist": {
  3760. "type": "zip",
  3761. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/b7369a435a64d06e9036e69ed1cd6ce240338583",
  3762. "reference": "b7369a435a64d06e9036e69ed1cd6ce240338583",
  3763. "shasum": ""
  3764. },
  3765. "require": {
  3766. "doctrine/event-manager": "~1.0",
  3767. "doctrine/persistence": "^1.3|^2",
  3768. "php": ">=7.2.5",
  3769. "symfony/polyfill-ctype": "~1.8",
  3770. "symfony/polyfill-mbstring": "~1.0",
  3771. "symfony/polyfill-php80": "^1.15",
  3772. "symfony/service-contracts": "^1.1|^2"
  3773. },
  3774. "conflict": {
  3775. "phpunit/phpunit": "<5.4.3",
  3776. "symfony/dependency-injection": "<4.4",
  3777. "symfony/form": "<5.1",
  3778. "symfony/http-kernel": "<5",
  3779. "symfony/messenger": "<4.4",
  3780. "symfony/property-info": "<5",
  3781. "symfony/security-bundle": "<5",
  3782. "symfony/security-core": "<5",
  3783. "symfony/validator": "<5.0.2"
  3784. },
  3785. "require-dev": {
  3786. "composer/package-versions-deprecated": "^1.8",
  3787. "doctrine/annotations": "~1.7",
  3788. "doctrine/cache": "~1.6",
  3789. "doctrine/collections": "~1.0",
  3790. "doctrine/data-fixtures": "^1.1",
  3791. "doctrine/dbal": "~2.4|^3.0",
  3792. "doctrine/orm": "^2.6.3",
  3793. "doctrine/reflection": "~1.0",
  3794. "symfony/cache": "^5.1",
  3795. "symfony/config": "^4.4|^5.0",
  3796. "symfony/dependency-injection": "^4.4|^5.0",
  3797. "symfony/doctrine-messenger": "^5.1",
  3798. "symfony/expression-language": "^4.4|^5.0",
  3799. "symfony/form": "^5.1.3",
  3800. "symfony/http-kernel": "^5.0",
  3801. "symfony/messenger": "^4.4|^5.0",
  3802. "symfony/property-access": "^4.4|^5.0",
  3803. "symfony/property-info": "^5.0",
  3804. "symfony/proxy-manager-bridge": "^4.4|^5.0",
  3805. "symfony/security-core": "^5.0",
  3806. "symfony/stopwatch": "^4.4|^5.0",
  3807. "symfony/translation": "^4.4|^5.0",
  3808. "symfony/validator": "^5.0.2",
  3809. "symfony/var-dumper": "^4.4|^5.0"
  3810. },
  3811. "suggest": {
  3812. "doctrine/data-fixtures": "",
  3813. "doctrine/dbal": "",
  3814. "doctrine/orm": "",
  3815. "symfony/form": "",
  3816. "symfony/property-info": "",
  3817. "symfony/validator": ""
  3818. },
  3819. "type": "symfony-bridge",
  3820. "extra": {
  3821. "branch-alias": {
  3822. "dev-master": "5.1-dev"
  3823. }
  3824. },
  3825. "autoload": {
  3826. "psr-4": {
  3827. "Symfony\\Bridge\\Doctrine\\": ""
  3828. },
  3829. "exclude-from-classmap": [
  3830. "/Tests/"
  3831. ]
  3832. },
  3833. "notification-url": "https://packagist.org/downloads/",
  3834. "license": [
  3835. "MIT"
  3836. ],
  3837. "authors": [
  3838. {
  3839. "name": "Fabien Potencier",
  3840. "email": "fabien@symfony.com"
  3841. },
  3842. {
  3843. "name": "Symfony Community",
  3844. "homepage": "https://symfony.com/contributors"
  3845. }
  3846. ],
  3847. "description": "Symfony Doctrine Bridge",
  3848. "homepage": "https://symfony.com",
  3849. "funding": [
  3850. {
  3851. "url": "https://symfony.com/sponsor",
  3852. "type": "custom"
  3853. },
  3854. {
  3855. "url": "https://github.com/fabpot",
  3856. "type": "github"
  3857. },
  3858. {
  3859. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3860. "type": "tidelift"
  3861. }
  3862. ],
  3863. "time": "2020-09-27T14:14:57+00:00"
  3864. },
  3865. {
  3866. "name": "symfony/doctrine-messenger",
  3867. "version": "v5.1.7",
  3868. "source": {
  3869. "type": "git",
  3870. "url": "https://github.com/symfony/doctrine-messenger.git",
  3871. "reference": "d4299ea85c28ccf5ff773028523dc628071718b2"
  3872. },
  3873. "dist": {
  3874. "type": "zip",
  3875. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/d4299ea85c28ccf5ff773028523dc628071718b2",
  3876. "reference": "d4299ea85c28ccf5ff773028523dc628071718b2",
  3877. "shasum": ""
  3878. },
  3879. "require": {
  3880. "php": ">=7.2.5",
  3881. "symfony/messenger": "^5.1",
  3882. "symfony/service-contracts": "^1.1|^2"
  3883. },
  3884. "conflict": {
  3885. "doctrine/persistence": "<1.3"
  3886. },
  3887. "require-dev": {
  3888. "doctrine/dbal": "^2.6|^3.0",
  3889. "doctrine/persistence": "^1.3|^2",
  3890. "symfony/property-access": "^4.4|^5.0",
  3891. "symfony/serializer": "^4.4|^5.0"
  3892. },
  3893. "type": "symfony-bridge",
  3894. "extra": {
  3895. "branch-alias": {
  3896. "dev-master": "5.1-dev"
  3897. }
  3898. },
  3899. "autoload": {
  3900. "psr-4": {
  3901. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  3902. },
  3903. "exclude-from-classmap": [
  3904. "/Tests/"
  3905. ]
  3906. },
  3907. "notification-url": "https://packagist.org/downloads/",
  3908. "license": [
  3909. "MIT"
  3910. ],
  3911. "authors": [
  3912. {
  3913. "name": "Fabien Potencier",
  3914. "email": "fabien@symfony.com"
  3915. },
  3916. {
  3917. "name": "Symfony Community",
  3918. "homepage": "https://symfony.com/contributors"
  3919. }
  3920. ],
  3921. "description": "Symfony Doctrine Messenger Bridge",
  3922. "homepage": "https://symfony.com",
  3923. "funding": [
  3924. {
  3925. "url": "https://symfony.com/sponsor",
  3926. "type": "custom"
  3927. },
  3928. {
  3929. "url": "https://github.com/fabpot",
  3930. "type": "github"
  3931. },
  3932. {
  3933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3934. "type": "tidelift"
  3935. }
  3936. ],
  3937. "time": "2020-09-27T14:02:37+00:00"
  3938. },
  3939. {
  3940. "name": "symfony/dotenv",
  3941. "version": "v5.1.7",
  3942. "source": {
  3943. "type": "git",
  3944. "url": "https://github.com/symfony/dotenv.git",
  3945. "reference": "f406eaad1231415bf753fbef5aef267a787af4e5"
  3946. },
  3947. "dist": {
  3948. "type": "zip",
  3949. "url": "https://api.github.com/repos/symfony/dotenv/zipball/f406eaad1231415bf753fbef5aef267a787af4e5",
  3950. "reference": "f406eaad1231415bf753fbef5aef267a787af4e5",
  3951. "shasum": ""
  3952. },
  3953. "require": {
  3954. "php": ">=7.2.5",
  3955. "symfony/deprecation-contracts": "^2.1"
  3956. },
  3957. "require-dev": {
  3958. "symfony/process": "^4.4|^5.0"
  3959. },
  3960. "type": "library",
  3961. "extra": {
  3962. "branch-alias": {
  3963. "dev-master": "5.1-dev"
  3964. }
  3965. },
  3966. "autoload": {
  3967. "psr-4": {
  3968. "Symfony\\Component\\Dotenv\\": ""
  3969. },
  3970. "exclude-from-classmap": [
  3971. "/Tests/"
  3972. ]
  3973. },
  3974. "notification-url": "https://packagist.org/downloads/",
  3975. "license": [
  3976. "MIT"
  3977. ],
  3978. "authors": [
  3979. {
  3980. "name": "Fabien Potencier",
  3981. "email": "fabien@symfony.com"
  3982. },
  3983. {
  3984. "name": "Symfony Community",
  3985. "homepage": "https://symfony.com/contributors"
  3986. }
  3987. ],
  3988. "description": "Registers environment variables from a .env file",
  3989. "homepage": "https://symfony.com",
  3990. "keywords": [
  3991. "dotenv",
  3992. "env",
  3993. "environment"
  3994. ],
  3995. "funding": [
  3996. {
  3997. "url": "https://symfony.com/sponsor",
  3998. "type": "custom"
  3999. },
  4000. {
  4001. "url": "https://github.com/fabpot",
  4002. "type": "github"
  4003. },
  4004. {
  4005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4006. "type": "tidelift"
  4007. }
  4008. ],
  4009. "time": "2020-09-02T16:23:27+00:00"
  4010. },
  4011. {
  4012. "name": "symfony/error-handler",
  4013. "version": "v5.1.7",
  4014. "source": {
  4015. "type": "git",
  4016. "url": "https://github.com/symfony/error-handler.git",
  4017. "reference": "5e4d8ef8d71822922d1eebd130219ae3491a5ca9"
  4018. },
  4019. "dist": {
  4020. "type": "zip",
  4021. "url": "https://api.github.com/repos/symfony/error-handler/zipball/5e4d8ef8d71822922d1eebd130219ae3491a5ca9",
  4022. "reference": "5e4d8ef8d71822922d1eebd130219ae3491a5ca9",
  4023. "shasum": ""
  4024. },
  4025. "require": {
  4026. "php": ">=7.2.5",
  4027. "psr/log": "^1.0",
  4028. "symfony/polyfill-php80": "^1.15",
  4029. "symfony/var-dumper": "^4.4|^5.0"
  4030. },
  4031. "require-dev": {
  4032. "symfony/deprecation-contracts": "^2.1",
  4033. "symfony/http-kernel": "^4.4|^5.0",
  4034. "symfony/serializer": "^4.4|^5.0"
  4035. },
  4036. "type": "library",
  4037. "extra": {
  4038. "branch-alias": {
  4039. "dev-master": "5.1-dev"
  4040. }
  4041. },
  4042. "autoload": {
  4043. "psr-4": {
  4044. "Symfony\\Component\\ErrorHandler\\": ""
  4045. },
  4046. "exclude-from-classmap": [
  4047. "/Tests/"
  4048. ]
  4049. },
  4050. "notification-url": "https://packagist.org/downloads/",
  4051. "license": [
  4052. "MIT"
  4053. ],
  4054. "authors": [
  4055. {
  4056. "name": "Fabien Potencier",
  4057. "email": "fabien@symfony.com"
  4058. },
  4059. {
  4060. "name": "Symfony Community",
  4061. "homepage": "https://symfony.com/contributors"
  4062. }
  4063. ],
  4064. "description": "Symfony ErrorHandler Component",
  4065. "homepage": "https://symfony.com",
  4066. "funding": [
  4067. {
  4068. "url": "https://symfony.com/sponsor",
  4069. "type": "custom"
  4070. },
  4071. {
  4072. "url": "https://github.com/fabpot",
  4073. "type": "github"
  4074. },
  4075. {
  4076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4077. "type": "tidelift"
  4078. }
  4079. ],
  4080. "time": "2020-10-02T08:49:02+00:00"
  4081. },
  4082. {
  4083. "name": "symfony/event-dispatcher",
  4084. "version": "v5.1.7",
  4085. "source": {
  4086. "type": "git",
  4087. "url": "https://github.com/symfony/event-dispatcher.git",
  4088. "reference": "d5de97d6af175a9e8131c546db054ca32842dd0f"
  4089. },
  4090. "dist": {
  4091. "type": "zip",
  4092. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d5de97d6af175a9e8131c546db054ca32842dd0f",
  4093. "reference": "d5de97d6af175a9e8131c546db054ca32842dd0f",
  4094. "shasum": ""
  4095. },
  4096. "require": {
  4097. "php": ">=7.2.5",
  4098. "symfony/deprecation-contracts": "^2.1",
  4099. "symfony/event-dispatcher-contracts": "^2",
  4100. "symfony/polyfill-php80": "^1.15"
  4101. },
  4102. "conflict": {
  4103. "symfony/dependency-injection": "<4.4"
  4104. },
  4105. "provide": {
  4106. "psr/event-dispatcher-implementation": "1.0",
  4107. "symfony/event-dispatcher-implementation": "2.0"
  4108. },
  4109. "require-dev": {
  4110. "psr/log": "~1.0",
  4111. "symfony/config": "^4.4|^5.0",
  4112. "symfony/dependency-injection": "^4.4|^5.0",
  4113. "symfony/error-handler": "^4.4|^5.0",
  4114. "symfony/expression-language": "^4.4|^5.0",
  4115. "symfony/http-foundation": "^4.4|^5.0",
  4116. "symfony/service-contracts": "^1.1|^2",
  4117. "symfony/stopwatch": "^4.4|^5.0"
  4118. },
  4119. "suggest": {
  4120. "symfony/dependency-injection": "",
  4121. "symfony/http-kernel": ""
  4122. },
  4123. "type": "library",
  4124. "extra": {
  4125. "branch-alias": {
  4126. "dev-master": "5.1-dev"
  4127. }
  4128. },
  4129. "autoload": {
  4130. "psr-4": {
  4131. "Symfony\\Component\\EventDispatcher\\": ""
  4132. },
  4133. "exclude-from-classmap": [
  4134. "/Tests/"
  4135. ]
  4136. },
  4137. "notification-url": "https://packagist.org/downloads/",
  4138. "license": [
  4139. "MIT"
  4140. ],
  4141. "authors": [
  4142. {
  4143. "name": "Fabien Potencier",
  4144. "email": "fabien@symfony.com"
  4145. },
  4146. {
  4147. "name": "Symfony Community",
  4148. "homepage": "https://symfony.com/contributors"
  4149. }
  4150. ],
  4151. "description": "Symfony EventDispatcher Component",
  4152. "homepage": "https://symfony.com",
  4153. "funding": [
  4154. {
  4155. "url": "https://symfony.com/sponsor",
  4156. "type": "custom"
  4157. },
  4158. {
  4159. "url": "https://github.com/fabpot",
  4160. "type": "github"
  4161. },
  4162. {
  4163. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4164. "type": "tidelift"
  4165. }
  4166. ],
  4167. "time": "2020-09-18T14:27:32+00:00"
  4168. },
  4169. {
  4170. "name": "symfony/event-dispatcher-contracts",
  4171. "version": "v2.2.0",
  4172. "source": {
  4173. "type": "git",
  4174. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4175. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4176. },
  4177. "dist": {
  4178. "type": "zip",
  4179. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4180. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4181. "shasum": ""
  4182. },
  4183. "require": {
  4184. "php": ">=7.2.5",
  4185. "psr/event-dispatcher": "^1"
  4186. },
  4187. "suggest": {
  4188. "symfony/event-dispatcher-implementation": ""
  4189. },
  4190. "type": "library",
  4191. "extra": {
  4192. "branch-alias": {
  4193. "dev-master": "2.2-dev"
  4194. },
  4195. "thanks": {
  4196. "name": "symfony/contracts",
  4197. "url": "https://github.com/symfony/contracts"
  4198. }
  4199. },
  4200. "autoload": {
  4201. "psr-4": {
  4202. "Symfony\\Contracts\\EventDispatcher\\": ""
  4203. }
  4204. },
  4205. "notification-url": "https://packagist.org/downloads/",
  4206. "license": [
  4207. "MIT"
  4208. ],
  4209. "authors": [
  4210. {
  4211. "name": "Nicolas Grekas",
  4212. "email": "p@tchwork.com"
  4213. },
  4214. {
  4215. "name": "Symfony Community",
  4216. "homepage": "https://symfony.com/contributors"
  4217. }
  4218. ],
  4219. "description": "Generic abstractions related to dispatching event",
  4220. "homepage": "https://symfony.com",
  4221. "keywords": [
  4222. "abstractions",
  4223. "contracts",
  4224. "decoupling",
  4225. "interfaces",
  4226. "interoperability",
  4227. "standards"
  4228. ],
  4229. "funding": [
  4230. {
  4231. "url": "https://symfony.com/sponsor",
  4232. "type": "custom"
  4233. },
  4234. {
  4235. "url": "https://github.com/fabpot",
  4236. "type": "github"
  4237. },
  4238. {
  4239. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4240. "type": "tidelift"
  4241. }
  4242. ],
  4243. "time": "2020-09-07T11:33:47+00:00"
  4244. },
  4245. {
  4246. "name": "symfony/expression-language",
  4247. "version": "v5.1.7",
  4248. "source": {
  4249. "type": "git",
  4250. "url": "https://github.com/symfony/expression-language.git",
  4251. "reference": "e16e66c309214143cc01dae6d1ff1ee13e7be4fa"
  4252. },
  4253. "dist": {
  4254. "type": "zip",
  4255. "url": "https://api.github.com/repos/symfony/expression-language/zipball/e16e66c309214143cc01dae6d1ff1ee13e7be4fa",
  4256. "reference": "e16e66c309214143cc01dae6d1ff1ee13e7be4fa",
  4257. "shasum": ""
  4258. },
  4259. "require": {
  4260. "php": ">=7.2.5",
  4261. "symfony/cache": "^4.4|^5.0",
  4262. "symfony/polyfill-php80": "^1.15",
  4263. "symfony/service-contracts": "^1.1|^2"
  4264. },
  4265. "type": "library",
  4266. "extra": {
  4267. "branch-alias": {
  4268. "dev-master": "5.1-dev"
  4269. }
  4270. },
  4271. "autoload": {
  4272. "psr-4": {
  4273. "Symfony\\Component\\ExpressionLanguage\\": ""
  4274. },
  4275. "exclude-from-classmap": [
  4276. "/Tests/"
  4277. ]
  4278. },
  4279. "notification-url": "https://packagist.org/downloads/",
  4280. "license": [
  4281. "MIT"
  4282. ],
  4283. "authors": [
  4284. {
  4285. "name": "Fabien Potencier",
  4286. "email": "fabien@symfony.com"
  4287. },
  4288. {
  4289. "name": "Symfony Community",
  4290. "homepage": "https://symfony.com/contributors"
  4291. }
  4292. ],
  4293. "description": "Symfony ExpressionLanguage Component",
  4294. "homepage": "https://symfony.com",
  4295. "funding": [
  4296. {
  4297. "url": "https://symfony.com/sponsor",
  4298. "type": "custom"
  4299. },
  4300. {
  4301. "url": "https://github.com/fabpot",
  4302. "type": "github"
  4303. },
  4304. {
  4305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4306. "type": "tidelift"
  4307. }
  4308. ],
  4309. "time": "2020-09-02T16:23:27+00:00"
  4310. },
  4311. {
  4312. "name": "symfony/filesystem",
  4313. "version": "v5.1.7",
  4314. "source": {
  4315. "type": "git",
  4316. "url": "https://github.com/symfony/filesystem.git",
  4317. "reference": "1a8697545a8d87b9f2f6b1d32414199cc5e20aae"
  4318. },
  4319. "dist": {
  4320. "type": "zip",
  4321. "url": "https://api.github.com/repos/symfony/filesystem/zipball/1a8697545a8d87b9f2f6b1d32414199cc5e20aae",
  4322. "reference": "1a8697545a8d87b9f2f6b1d32414199cc5e20aae",
  4323. "shasum": ""
  4324. },
  4325. "require": {
  4326. "php": ">=7.2.5",
  4327. "symfony/polyfill-ctype": "~1.8"
  4328. },
  4329. "type": "library",
  4330. "extra": {
  4331. "branch-alias": {
  4332. "dev-master": "5.1-dev"
  4333. }
  4334. },
  4335. "autoload": {
  4336. "psr-4": {
  4337. "Symfony\\Component\\Filesystem\\": ""
  4338. },
  4339. "exclude-from-classmap": [
  4340. "/Tests/"
  4341. ]
  4342. },
  4343. "notification-url": "https://packagist.org/downloads/",
  4344. "license": [
  4345. "MIT"
  4346. ],
  4347. "authors": [
  4348. {
  4349. "name": "Fabien Potencier",
  4350. "email": "fabien@symfony.com"
  4351. },
  4352. {
  4353. "name": "Symfony Community",
  4354. "homepage": "https://symfony.com/contributors"
  4355. }
  4356. ],
  4357. "description": "Symfony Filesystem Component",
  4358. "homepage": "https://symfony.com",
  4359. "funding": [
  4360. {
  4361. "url": "https://symfony.com/sponsor",
  4362. "type": "custom"
  4363. },
  4364. {
  4365. "url": "https://github.com/fabpot",
  4366. "type": "github"
  4367. },
  4368. {
  4369. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4370. "type": "tidelift"
  4371. }
  4372. ],
  4373. "time": "2020-09-27T14:02:37+00:00"
  4374. },
  4375. {
  4376. "name": "symfony/finder",
  4377. "version": "v5.1.7",
  4378. "source": {
  4379. "type": "git",
  4380. "url": "https://github.com/symfony/finder.git",
  4381. "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8"
  4382. },
  4383. "dist": {
  4384. "type": "zip",
  4385. "url": "https://api.github.com/repos/symfony/finder/zipball/2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8",
  4386. "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8",
  4387. "shasum": ""
  4388. },
  4389. "require": {
  4390. "php": ">=7.2.5"
  4391. },
  4392. "type": "library",
  4393. "extra": {
  4394. "branch-alias": {
  4395. "dev-master": "5.1-dev"
  4396. }
  4397. },
  4398. "autoload": {
  4399. "psr-4": {
  4400. "Symfony\\Component\\Finder\\": ""
  4401. },
  4402. "exclude-from-classmap": [
  4403. "/Tests/"
  4404. ]
  4405. },
  4406. "notification-url": "https://packagist.org/downloads/",
  4407. "license": [
  4408. "MIT"
  4409. ],
  4410. "authors": [
  4411. {
  4412. "name": "Fabien Potencier",
  4413. "email": "fabien@symfony.com"
  4414. },
  4415. {
  4416. "name": "Symfony Community",
  4417. "homepage": "https://symfony.com/contributors"
  4418. }
  4419. ],
  4420. "description": "Symfony Finder Component",
  4421. "homepage": "https://symfony.com",
  4422. "funding": [
  4423. {
  4424. "url": "https://symfony.com/sponsor",
  4425. "type": "custom"
  4426. },
  4427. {
  4428. "url": "https://github.com/fabpot",
  4429. "type": "github"
  4430. },
  4431. {
  4432. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4433. "type": "tidelift"
  4434. }
  4435. ],
  4436. "time": "2020-09-02T16:23:27+00:00"
  4437. },
  4438. {
  4439. "name": "symfony/flex",
  4440. "version": "v1.9.10",
  4441. "source": {
  4442. "type": "git",
  4443. "url": "https://github.com/symfony/flex.git",
  4444. "reference": "7335ec033995aa34133e621627333368f260b626"
  4445. },
  4446. "dist": {
  4447. "type": "zip",
  4448. "url": "https://api.github.com/repos/symfony/flex/zipball/7335ec033995aa34133e621627333368f260b626",
  4449. "reference": "7335ec033995aa34133e621627333368f260b626",
  4450. "shasum": ""
  4451. },
  4452. "require": {
  4453. "composer-plugin-api": "^1.0|^2.0",
  4454. "php": ">=7.1"
  4455. },
  4456. "require-dev": {
  4457. "composer/composer": "^1.0.2|^2.0",
  4458. "symfony/dotenv": "^4.4|^5.0",
  4459. "symfony/phpunit-bridge": "^4.4|^5.0",
  4460. "symfony/process": "^3.4|^4.4|^5.0"
  4461. },
  4462. "type": "composer-plugin",
  4463. "extra": {
  4464. "branch-alias": {
  4465. "dev-main": "1.9-dev"
  4466. },
  4467. "class": "Symfony\\Flex\\Flex"
  4468. },
  4469. "autoload": {
  4470. "psr-4": {
  4471. "Symfony\\Flex\\": "src"
  4472. }
  4473. },
  4474. "notification-url": "https://packagist.org/downloads/",
  4475. "license": [
  4476. "MIT"
  4477. ],
  4478. "authors": [
  4479. {
  4480. "name": "Fabien Potencier",
  4481. "email": "fabien.potencier@gmail.com"
  4482. }
  4483. ],
  4484. "description": "Composer plugin for Symfony",
  4485. "funding": [
  4486. {
  4487. "url": "https://symfony.com/sponsor",
  4488. "type": "custom"
  4489. },
  4490. {
  4491. "url": "https://github.com/fabpot",
  4492. "type": "github"
  4493. },
  4494. {
  4495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4496. "type": "tidelift"
  4497. }
  4498. ],
  4499. "time": "2020-10-14T17:41:54+00:00"
  4500. },
  4501. {
  4502. "name": "symfony/form",
  4503. "version": "v5.1.7",
  4504. "source": {
  4505. "type": "git",
  4506. "url": "https://github.com/symfony/form.git",
  4507. "reference": "f3a49105e472fd168b743acdb5e0524c66aeb287"
  4508. },
  4509. "dist": {
  4510. "type": "zip",
  4511. "url": "https://api.github.com/repos/symfony/form/zipball/f3a49105e472fd168b743acdb5e0524c66aeb287",
  4512. "reference": "f3a49105e472fd168b743acdb5e0524c66aeb287",
  4513. "shasum": ""
  4514. },
  4515. "require": {
  4516. "php": ">=7.2.5",
  4517. "symfony/deprecation-contracts": "^2.1",
  4518. "symfony/event-dispatcher": "^4.4|^5.0",
  4519. "symfony/intl": "^4.4|^5.0",
  4520. "symfony/options-resolver": "^5.1",
  4521. "symfony/polyfill-ctype": "~1.8",
  4522. "symfony/polyfill-mbstring": "~1.0",
  4523. "symfony/polyfill-php80": "^1.15",
  4524. "symfony/property-access": "^5.0.8",
  4525. "symfony/service-contracts": "^1.1|^2"
  4526. },
  4527. "conflict": {
  4528. "phpunit/phpunit": "<5.4.3",
  4529. "symfony/console": "<4.4",
  4530. "symfony/dependency-injection": "<4.4",
  4531. "symfony/doctrine-bridge": "<4.4",
  4532. "symfony/error-handler": "<4.4.5",
  4533. "symfony/framework-bundle": "<4.4",
  4534. "symfony/http-kernel": "<4.4",
  4535. "symfony/intl": "<4.4",
  4536. "symfony/translation": "<4.4",
  4537. "symfony/translation-contracts": "<1.1.7",
  4538. "symfony/twig-bridge": "<4.4"
  4539. },
  4540. "require-dev": {
  4541. "doctrine/collections": "~1.0",
  4542. "symfony/config": "^4.4|^5.0",
  4543. "symfony/console": "^4.4|^5.0",
  4544. "symfony/dependency-injection": "^4.4|^5.0",
  4545. "symfony/expression-language": "^4.4|^5.0",
  4546. "symfony/http-foundation": "^4.4|^5.0",
  4547. "symfony/http-kernel": "^4.4|^5.0",
  4548. "symfony/security-csrf": "^4.4|^5.0",
  4549. "symfony/translation": "^4.4|^5.0",
  4550. "symfony/validator": "^4.4.12|^5.1.6",
  4551. "symfony/var-dumper": "^4.4|^5.0"
  4552. },
  4553. "suggest": {
  4554. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  4555. "symfony/twig-bridge": "For templating with Twig.",
  4556. "symfony/validator": "For form validation."
  4557. },
  4558. "type": "library",
  4559. "extra": {
  4560. "branch-alias": {
  4561. "dev-master": "5.1-dev"
  4562. }
  4563. },
  4564. "autoload": {
  4565. "psr-4": {
  4566. "Symfony\\Component\\Form\\": ""
  4567. },
  4568. "exclude-from-classmap": [
  4569. "/Tests/"
  4570. ]
  4571. },
  4572. "notification-url": "https://packagist.org/downloads/",
  4573. "license": [
  4574. "MIT"
  4575. ],
  4576. "authors": [
  4577. {
  4578. "name": "Fabien Potencier",
  4579. "email": "fabien@symfony.com"
  4580. },
  4581. {
  4582. "name": "Symfony Community",
  4583. "homepage": "https://symfony.com/contributors"
  4584. }
  4585. ],
  4586. "description": "Symfony Form Component",
  4587. "homepage": "https://symfony.com",
  4588. "funding": [
  4589. {
  4590. "url": "https://symfony.com/sponsor",
  4591. "type": "custom"
  4592. },
  4593. {
  4594. "url": "https://github.com/fabpot",
  4595. "type": "github"
  4596. },
  4597. {
  4598. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4599. "type": "tidelift"
  4600. }
  4601. ],
  4602. "time": "2020-10-02T12:58:01+00:00"
  4603. },
  4604. {
  4605. "name": "symfony/framework-bundle",
  4606. "version": "v5.1.7",
  4607. "source": {
  4608. "type": "git",
  4609. "url": "https://github.com/symfony/framework-bundle.git",
  4610. "reference": "023ca658526278c0e74542079f1984e042aa6c1d"
  4611. },
  4612. "dist": {
  4613. "type": "zip",
  4614. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/023ca658526278c0e74542079f1984e042aa6c1d",
  4615. "reference": "023ca658526278c0e74542079f1984e042aa6c1d",
  4616. "shasum": ""
  4617. },
  4618. "require": {
  4619. "ext-xml": "*",
  4620. "php": ">=7.2.5",
  4621. "symfony/cache": "^4.4|^5.0",
  4622. "symfony/config": "^5.0",
  4623. "symfony/dependency-injection": "^5.1",
  4624. "symfony/error-handler": "^4.4.1|^5.0.1",
  4625. "symfony/event-dispatcher": "^5.1",
  4626. "symfony/filesystem": "^4.4|^5.0",
  4627. "symfony/finder": "^4.4|^5.0",
  4628. "symfony/http-foundation": "^4.4|^5.0",
  4629. "symfony/http-kernel": "^5.0",
  4630. "symfony/polyfill-mbstring": "~1.0",
  4631. "symfony/polyfill-php80": "^1.15",
  4632. "symfony/routing": "^5.1"
  4633. },
  4634. "conflict": {
  4635. "doctrine/persistence": "<1.3",
  4636. "phpdocumentor/reflection-docblock": "<3.0",
  4637. "phpdocumentor/type-resolver": "<0.2.1",
  4638. "phpunit/phpunit": "<5.4.3",
  4639. "symfony/asset": "<5.1",
  4640. "symfony/browser-kit": "<4.4",
  4641. "symfony/console": "<4.4",
  4642. "symfony/dom-crawler": "<4.4",
  4643. "symfony/dotenv": "<5.1",
  4644. "symfony/form": "<4.4",
  4645. "symfony/http-client": "<4.4",
  4646. "symfony/lock": "<4.4",
  4647. "symfony/mailer": "<4.4",
  4648. "symfony/messenger": "<4.4",
  4649. "symfony/mime": "<4.4",
  4650. "symfony/property-info": "<4.4",
  4651. "symfony/serializer": "<4.4",
  4652. "symfony/stopwatch": "<4.4",
  4653. "symfony/translation": "<5.0",
  4654. "symfony/twig-bridge": "<4.4",
  4655. "symfony/twig-bundle": "<4.4",
  4656. "symfony/validator": "<4.4",
  4657. "symfony/web-profiler-bundle": "<4.4",
  4658. "symfony/workflow": "<4.4"
  4659. },
  4660. "require-dev": {
  4661. "doctrine/annotations": "~1.7",
  4662. "doctrine/cache": "~1.0",
  4663. "paragonie/sodium_compat": "^1.8",
  4664. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  4665. "symfony/asset": "^5.1",
  4666. "symfony/browser-kit": "^4.4|^5.0",
  4667. "symfony/console": "^4.4|^5.0",
  4668. "symfony/css-selector": "^4.4|^5.0",
  4669. "symfony/dom-crawler": "^4.4|^5.0",
  4670. "symfony/dotenv": "^5.1",
  4671. "symfony/expression-language": "^4.4|^5.0",
  4672. "symfony/form": "^4.4|^5.0",
  4673. "symfony/http-client": "^4.4|^5.0",
  4674. "symfony/lock": "^4.4|^5.0",
  4675. "symfony/mailer": "^4.4|^5.0",
  4676. "symfony/messenger": "^4.4|^5.0",
  4677. "symfony/mime": "^4.4|^5.0",
  4678. "symfony/polyfill-intl-icu": "~1.0",
  4679. "symfony/process": "^4.4|^5.0",
  4680. "symfony/property-info": "^4.4|^5.0",
  4681. "symfony/security-bundle": "^5.1",
  4682. "symfony/security-csrf": "^4.4|^5.0",
  4683. "symfony/security-http": "^4.4|^5.0",
  4684. "symfony/serializer": "^4.4|^5.0",
  4685. "symfony/stopwatch": "^4.4|^5.0",
  4686. "symfony/string": "^5.0",
  4687. "symfony/translation": "^5.0",
  4688. "symfony/twig-bundle": "^4.4|^5.0",
  4689. "symfony/validator": "^4.4|^5.0",
  4690. "symfony/web-link": "^4.4|^5.0",
  4691. "symfony/workflow": "^4.4|^5.0",
  4692. "symfony/yaml": "^4.4|^5.0",
  4693. "twig/twig": "^2.10|^3.0"
  4694. },
  4695. "suggest": {
  4696. "ext-apcu": "For best performance of the system caches",
  4697. "symfony/console": "For using the console commands",
  4698. "symfony/form": "For using forms",
  4699. "symfony/property-info": "For using the property_info service",
  4700. "symfony/serializer": "For using the serializer service",
  4701. "symfony/validator": "For using validation",
  4702. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  4703. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  4704. },
  4705. "type": "symfony-bundle",
  4706. "extra": {
  4707. "branch-alias": {
  4708. "dev-master": "5.1-dev"
  4709. }
  4710. },
  4711. "autoload": {
  4712. "psr-4": {
  4713. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4714. },
  4715. "exclude-from-classmap": [
  4716. "/Tests/"
  4717. ]
  4718. },
  4719. "notification-url": "https://packagist.org/downloads/",
  4720. "license": [
  4721. "MIT"
  4722. ],
  4723. "authors": [
  4724. {
  4725. "name": "Fabien Potencier",
  4726. "email": "fabien@symfony.com"
  4727. },
  4728. {
  4729. "name": "Symfony Community",
  4730. "homepage": "https://symfony.com/contributors"
  4731. }
  4732. ],
  4733. "description": "Symfony FrameworkBundle",
  4734. "homepage": "https://symfony.com",
  4735. "funding": [
  4736. {
  4737. "url": "https://symfony.com/sponsor",
  4738. "type": "custom"
  4739. },
  4740. {
  4741. "url": "https://github.com/fabpot",
  4742. "type": "github"
  4743. },
  4744. {
  4745. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4746. "type": "tidelift"
  4747. }
  4748. ],
  4749. "time": "2020-09-30T05:27:28+00:00"
  4750. },
  4751. {
  4752. "name": "symfony/http-client",
  4753. "version": "v5.1.7",
  4754. "source": {
  4755. "type": "git",
  4756. "url": "https://github.com/symfony/http-client.git",
  4757. "reference": "df757997ee95101c0ca94c7ea2b76e16a758e0ca"
  4758. },
  4759. "dist": {
  4760. "type": "zip",
  4761. "url": "https://api.github.com/repos/symfony/http-client/zipball/df757997ee95101c0ca94c7ea2b76e16a758e0ca",
  4762. "reference": "df757997ee95101c0ca94c7ea2b76e16a758e0ca",
  4763. "shasum": ""
  4764. },
  4765. "require": {
  4766. "php": ">=7.2.5",
  4767. "psr/log": "^1.0",
  4768. "symfony/http-client-contracts": "^2.2",
  4769. "symfony/polyfill-php73": "^1.11",
  4770. "symfony/polyfill-php80": "^1.15",
  4771. "symfony/service-contracts": "^1.0|^2"
  4772. },
  4773. "provide": {
  4774. "php-http/async-client-implementation": "*",
  4775. "php-http/client-implementation": "*",
  4776. "psr/http-client-implementation": "1.0",
  4777. "symfony/http-client-implementation": "1.1"
  4778. },
  4779. "require-dev": {
  4780. "amphp/http-client": "^4.2.1",
  4781. "amphp/http-tunnel": "^1.0",
  4782. "amphp/socket": "^1.1",
  4783. "guzzlehttp/promises": "^1.3.1",
  4784. "nyholm/psr7": "^1.0",
  4785. "php-http/httplug": "^1.0|^2.0",
  4786. "psr/http-client": "^1.0",
  4787. "symfony/dependency-injection": "^4.4|^5.0",
  4788. "symfony/http-kernel": "^4.4.13|^5.1.5",
  4789. "symfony/process": "^4.4|^5.0"
  4790. },
  4791. "type": "library",
  4792. "extra": {
  4793. "branch-alias": {
  4794. "dev-master": "5.1-dev"
  4795. }
  4796. },
  4797. "autoload": {
  4798. "psr-4": {
  4799. "Symfony\\Component\\HttpClient\\": ""
  4800. },
  4801. "exclude-from-classmap": [
  4802. "/Tests/"
  4803. ]
  4804. },
  4805. "notification-url": "https://packagist.org/downloads/",
  4806. "license": [
  4807. "MIT"
  4808. ],
  4809. "authors": [
  4810. {
  4811. "name": "Nicolas Grekas",
  4812. "email": "p@tchwork.com"
  4813. },
  4814. {
  4815. "name": "Symfony Community",
  4816. "homepage": "https://symfony.com/contributors"
  4817. }
  4818. ],
  4819. "description": "Symfony HttpClient component",
  4820. "homepage": "https://symfony.com",
  4821. "funding": [
  4822. {
  4823. "url": "https://symfony.com/sponsor",
  4824. "type": "custom"
  4825. },
  4826. {
  4827. "url": "https://github.com/fabpot",
  4828. "type": "github"
  4829. },
  4830. {
  4831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4832. "type": "tidelift"
  4833. }
  4834. ],
  4835. "time": "2020-10-02T14:24:03+00:00"
  4836. },
  4837. {
  4838. "name": "symfony/http-client-contracts",
  4839. "version": "v2.3.1",
  4840. "source": {
  4841. "type": "git",
  4842. "url": "https://github.com/symfony/http-client-contracts.git",
  4843. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  4844. },
  4845. "dist": {
  4846. "type": "zip",
  4847. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  4848. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  4849. "shasum": ""
  4850. },
  4851. "require": {
  4852. "php": ">=7.2.5"
  4853. },
  4854. "suggest": {
  4855. "symfony/http-client-implementation": ""
  4856. },
  4857. "type": "library",
  4858. "extra": {
  4859. "branch-version": "2.3",
  4860. "branch-alias": {
  4861. "dev-main": "2.3-dev"
  4862. },
  4863. "thanks": {
  4864. "name": "symfony/contracts",
  4865. "url": "https://github.com/symfony/contracts"
  4866. }
  4867. },
  4868. "autoload": {
  4869. "psr-4": {
  4870. "Symfony\\Contracts\\HttpClient\\": ""
  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": "Generic abstractions related to HTTP clients",
  4888. "homepage": "https://symfony.com",
  4889. "keywords": [
  4890. "abstractions",
  4891. "contracts",
  4892. "decoupling",
  4893. "interfaces",
  4894. "interoperability",
  4895. "standards"
  4896. ],
  4897. "funding": [
  4898. {
  4899. "url": "https://symfony.com/sponsor",
  4900. "type": "custom"
  4901. },
  4902. {
  4903. "url": "https://github.com/fabpot",
  4904. "type": "github"
  4905. },
  4906. {
  4907. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4908. "type": "tidelift"
  4909. }
  4910. ],
  4911. "time": "2020-10-14T17:08:19+00:00"
  4912. },
  4913. {
  4914. "name": "symfony/http-foundation",
  4915. "version": "v5.1.7",
  4916. "source": {
  4917. "type": "git",
  4918. "url": "https://github.com/symfony/http-foundation.git",
  4919. "reference": "353b42e7b4fd1c898aab09a059466c9cea74039b"
  4920. },
  4921. "dist": {
  4922. "type": "zip",
  4923. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/353b42e7b4fd1c898aab09a059466c9cea74039b",
  4924. "reference": "353b42e7b4fd1c898aab09a059466c9cea74039b",
  4925. "shasum": ""
  4926. },
  4927. "require": {
  4928. "php": ">=7.2.5",
  4929. "symfony/deprecation-contracts": "^2.1",
  4930. "symfony/polyfill-mbstring": "~1.1",
  4931. "symfony/polyfill-php80": "^1.15"
  4932. },
  4933. "require-dev": {
  4934. "predis/predis": "~1.0",
  4935. "symfony/cache": "^4.4|^5.0",
  4936. "symfony/expression-language": "^4.4|^5.0",
  4937. "symfony/mime": "^4.4|^5.0"
  4938. },
  4939. "suggest": {
  4940. "symfony/mime": "To use the file extension guesser"
  4941. },
  4942. "type": "library",
  4943. "extra": {
  4944. "branch-alias": {
  4945. "dev-master": "5.1-dev"
  4946. }
  4947. },
  4948. "autoload": {
  4949. "psr-4": {
  4950. "Symfony\\Component\\HttpFoundation\\": ""
  4951. },
  4952. "exclude-from-classmap": [
  4953. "/Tests/"
  4954. ]
  4955. },
  4956. "notification-url": "https://packagist.org/downloads/",
  4957. "license": [
  4958. "MIT"
  4959. ],
  4960. "authors": [
  4961. {
  4962. "name": "Fabien Potencier",
  4963. "email": "fabien@symfony.com"
  4964. },
  4965. {
  4966. "name": "Symfony Community",
  4967. "homepage": "https://symfony.com/contributors"
  4968. }
  4969. ],
  4970. "description": "Symfony HttpFoundation Component",
  4971. "homepage": "https://symfony.com",
  4972. "funding": [
  4973. {
  4974. "url": "https://symfony.com/sponsor",
  4975. "type": "custom"
  4976. },
  4977. {
  4978. "url": "https://github.com/fabpot",
  4979. "type": "github"
  4980. },
  4981. {
  4982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4983. "type": "tidelift"
  4984. }
  4985. ],
  4986. "time": "2020-09-27T14:14:57+00:00"
  4987. },
  4988. {
  4989. "name": "symfony/http-kernel",
  4990. "version": "v5.1.7",
  4991. "source": {
  4992. "type": "git",
  4993. "url": "https://github.com/symfony/http-kernel.git",
  4994. "reference": "1764b87d2f10d5c9ce6e4850fe27934116d89708"
  4995. },
  4996. "dist": {
  4997. "type": "zip",
  4998. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1764b87d2f10d5c9ce6e4850fe27934116d89708",
  4999. "reference": "1764b87d2f10d5c9ce6e4850fe27934116d89708",
  5000. "shasum": ""
  5001. },
  5002. "require": {
  5003. "php": ">=7.2.5",
  5004. "psr/log": "~1.0",
  5005. "symfony/deprecation-contracts": "^2.1",
  5006. "symfony/error-handler": "^4.4|^5.0",
  5007. "symfony/event-dispatcher": "^5.0",
  5008. "symfony/http-client-contracts": "^1.1|^2",
  5009. "symfony/http-foundation": "^4.4|^5.0",
  5010. "symfony/polyfill-ctype": "^1.8",
  5011. "symfony/polyfill-php73": "^1.9",
  5012. "symfony/polyfill-php80": "^1.15"
  5013. },
  5014. "conflict": {
  5015. "symfony/browser-kit": "<4.4",
  5016. "symfony/cache": "<5.0",
  5017. "symfony/config": "<5.0",
  5018. "symfony/console": "<4.4",
  5019. "symfony/dependency-injection": "<4.4",
  5020. "symfony/doctrine-bridge": "<5.0",
  5021. "symfony/form": "<5.0",
  5022. "symfony/http-client": "<5.0",
  5023. "symfony/mailer": "<5.0",
  5024. "symfony/messenger": "<5.0",
  5025. "symfony/translation": "<5.0",
  5026. "symfony/twig-bridge": "<5.0",
  5027. "symfony/validator": "<5.0",
  5028. "twig/twig": "<2.4"
  5029. },
  5030. "provide": {
  5031. "psr/log-implementation": "1.0"
  5032. },
  5033. "require-dev": {
  5034. "psr/cache": "~1.0",
  5035. "symfony/browser-kit": "^4.4|^5.0",
  5036. "symfony/config": "^5.0",
  5037. "symfony/console": "^4.4|^5.0",
  5038. "symfony/css-selector": "^4.4|^5.0",
  5039. "symfony/dependency-injection": "^4.4|^5.0",
  5040. "symfony/dom-crawler": "^4.4|^5.0",
  5041. "symfony/expression-language": "^4.4|^5.0",
  5042. "symfony/finder": "^4.4|^5.0",
  5043. "symfony/process": "^4.4|^5.0",
  5044. "symfony/routing": "^4.4|^5.0",
  5045. "symfony/stopwatch": "^4.4|^5.0",
  5046. "symfony/translation": "^4.4|^5.0",
  5047. "symfony/translation-contracts": "^1.1|^2",
  5048. "twig/twig": "^2.4|^3.0"
  5049. },
  5050. "suggest": {
  5051. "symfony/browser-kit": "",
  5052. "symfony/config": "",
  5053. "symfony/console": "",
  5054. "symfony/dependency-injection": ""
  5055. },
  5056. "type": "library",
  5057. "extra": {
  5058. "branch-alias": {
  5059. "dev-master": "5.1-dev"
  5060. }
  5061. },
  5062. "autoload": {
  5063. "psr-4": {
  5064. "Symfony\\Component\\HttpKernel\\": ""
  5065. },
  5066. "exclude-from-classmap": [
  5067. "/Tests/"
  5068. ]
  5069. },
  5070. "notification-url": "https://packagist.org/downloads/",
  5071. "license": [
  5072. "MIT"
  5073. ],
  5074. "authors": [
  5075. {
  5076. "name": "Fabien Potencier",
  5077. "email": "fabien@symfony.com"
  5078. },
  5079. {
  5080. "name": "Symfony Community",
  5081. "homepage": "https://symfony.com/contributors"
  5082. }
  5083. ],
  5084. "description": "Symfony HttpKernel Component",
  5085. "homepage": "https://symfony.com",
  5086. "funding": [
  5087. {
  5088. "url": "https://symfony.com/sponsor",
  5089. "type": "custom"
  5090. },
  5091. {
  5092. "url": "https://github.com/fabpot",
  5093. "type": "github"
  5094. },
  5095. {
  5096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5097. "type": "tidelift"
  5098. }
  5099. ],
  5100. "time": "2020-10-04T07:57:28+00:00"
  5101. },
  5102. {
  5103. "name": "symfony/intl",
  5104. "version": "v5.1.7",
  5105. "source": {
  5106. "type": "git",
  5107. "url": "https://github.com/symfony/intl.git",
  5108. "reference": "9381fd69ce6407041185aa6f1bafbf7d65f0e66a"
  5109. },
  5110. "dist": {
  5111. "type": "zip",
  5112. "url": "https://api.github.com/repos/symfony/intl/zipball/9381fd69ce6407041185aa6f1bafbf7d65f0e66a",
  5113. "reference": "9381fd69ce6407041185aa6f1bafbf7d65f0e66a",
  5114. "shasum": ""
  5115. },
  5116. "require": {
  5117. "php": ">=7.2.5",
  5118. "symfony/polyfill-intl-icu": "~1.0",
  5119. "symfony/polyfill-php80": "^1.15"
  5120. },
  5121. "require-dev": {
  5122. "symfony/filesystem": "^4.4|^5.0"
  5123. },
  5124. "suggest": {
  5125. "ext-intl": "to use the component with locales other than \"en\""
  5126. },
  5127. "type": "library",
  5128. "extra": {
  5129. "branch-alias": {
  5130. "dev-master": "5.1-dev"
  5131. }
  5132. },
  5133. "autoload": {
  5134. "psr-4": {
  5135. "Symfony\\Component\\Intl\\": ""
  5136. },
  5137. "classmap": [
  5138. "Resources/stubs"
  5139. ],
  5140. "exclude-from-classmap": [
  5141. "/Tests/"
  5142. ]
  5143. },
  5144. "notification-url": "https://packagist.org/downloads/",
  5145. "license": [
  5146. "MIT"
  5147. ],
  5148. "authors": [
  5149. {
  5150. "name": "Bernhard Schussek",
  5151. "email": "bschussek@gmail.com"
  5152. },
  5153. {
  5154. "name": "Eriksen Costa",
  5155. "email": "eriksen.costa@infranology.com.br"
  5156. },
  5157. {
  5158. "name": "Igor Wiedler",
  5159. "email": "igor@wiedler.ch"
  5160. },
  5161. {
  5162. "name": "Symfony Community",
  5163. "homepage": "https://symfony.com/contributors"
  5164. }
  5165. ],
  5166. "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.",
  5167. "homepage": "https://symfony.com",
  5168. "keywords": [
  5169. "i18n",
  5170. "icu",
  5171. "internationalization",
  5172. "intl",
  5173. "l10n",
  5174. "localization"
  5175. ],
  5176. "funding": [
  5177. {
  5178. "url": "https://symfony.com/sponsor",
  5179. "type": "custom"
  5180. },
  5181. {
  5182. "url": "https://github.com/fabpot",
  5183. "type": "github"
  5184. },
  5185. {
  5186. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5187. "type": "tidelift"
  5188. }
  5189. ],
  5190. "time": "2020-09-27T03:44:28+00:00"
  5191. },
  5192. {
  5193. "name": "symfony/mailer",
  5194. "version": "v5.1.7",
  5195. "source": {
  5196. "type": "git",
  5197. "url": "https://github.com/symfony/mailer.git",
  5198. "reference": "0c4f93173b7e315f4035c401b8ddfa9b149b389c"
  5199. },
  5200. "dist": {
  5201. "type": "zip",
  5202. "url": "https://api.github.com/repos/symfony/mailer/zipball/0c4f93173b7e315f4035c401b8ddfa9b149b389c",
  5203. "reference": "0c4f93173b7e315f4035c401b8ddfa9b149b389c",
  5204. "shasum": ""
  5205. },
  5206. "require": {
  5207. "egulias/email-validator": "^2.1.10",
  5208. "php": ">=7.2.5",
  5209. "psr/log": "~1.0",
  5210. "symfony/event-dispatcher": "^4.4|^5.0",
  5211. "symfony/mime": "^4.4|^5.0",
  5212. "symfony/polyfill-php80": "^1.15",
  5213. "symfony/service-contracts": "^1.1|^2"
  5214. },
  5215. "conflict": {
  5216. "symfony/http-kernel": "<4.4"
  5217. },
  5218. "require-dev": {
  5219. "symfony/amazon-mailer": "^4.4|^5.0",
  5220. "symfony/google-mailer": "^4.4|^5.0",
  5221. "symfony/http-client-contracts": "^1.1|^2",
  5222. "symfony/mailchimp-mailer": "^4.4|^5.0",
  5223. "symfony/mailgun-mailer": "^4.4|^5.0",
  5224. "symfony/messenger": "^4.4|^5.0",
  5225. "symfony/postmark-mailer": "^4.4|^5.0",
  5226. "symfony/sendgrid-mailer": "^4.4|^5.0"
  5227. },
  5228. "type": "library",
  5229. "extra": {
  5230. "branch-alias": {
  5231. "dev-master": "5.1-dev"
  5232. }
  5233. },
  5234. "autoload": {
  5235. "psr-4": {
  5236. "Symfony\\Component\\Mailer\\": ""
  5237. },
  5238. "exclude-from-classmap": [
  5239. "/Tests/"
  5240. ]
  5241. },
  5242. "notification-url": "https://packagist.org/downloads/",
  5243. "license": [
  5244. "MIT"
  5245. ],
  5246. "authors": [
  5247. {
  5248. "name": "Fabien Potencier",
  5249. "email": "fabien@symfony.com"
  5250. },
  5251. {
  5252. "name": "Symfony Community",
  5253. "homepage": "https://symfony.com/contributors"
  5254. }
  5255. ],
  5256. "description": "Symfony Mailer Component",
  5257. "homepage": "https://symfony.com",
  5258. "funding": [
  5259. {
  5260. "url": "https://symfony.com/sponsor",
  5261. "type": "custom"
  5262. },
  5263. {
  5264. "url": "https://github.com/fabpot",
  5265. "type": "github"
  5266. },
  5267. {
  5268. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5269. "type": "tidelift"
  5270. }
  5271. ],
  5272. "time": "2020-09-07T05:10:28+00:00"
  5273. },
  5274. {
  5275. "name": "symfony/messenger",
  5276. "version": "v5.1.7",
  5277. "source": {
  5278. "type": "git",
  5279. "url": "https://github.com/symfony/messenger.git",
  5280. "reference": "363f00e14f9111ccccc2c9dfa00b190cc5aad02f"
  5281. },
  5282. "dist": {
  5283. "type": "zip",
  5284. "url": "https://api.github.com/repos/symfony/messenger/zipball/363f00e14f9111ccccc2c9dfa00b190cc5aad02f",
  5285. "reference": "363f00e14f9111ccccc2c9dfa00b190cc5aad02f",
  5286. "shasum": ""
  5287. },
  5288. "require": {
  5289. "php": ">=7.2.5",
  5290. "psr/log": "~1.0",
  5291. "symfony/amqp-messenger": "^5.1",
  5292. "symfony/deprecation-contracts": "^2.1",
  5293. "symfony/doctrine-messenger": "^5.1",
  5294. "symfony/polyfill-php80": "^1.15",
  5295. "symfony/redis-messenger": "^5.1"
  5296. },
  5297. "conflict": {
  5298. "symfony/event-dispatcher": "<4.4",
  5299. "symfony/framework-bundle": "<4.4",
  5300. "symfony/http-kernel": "<4.4"
  5301. },
  5302. "require-dev": {
  5303. "psr/cache": "~1.0",
  5304. "symfony/console": "^4.4|^5.0",
  5305. "symfony/dependency-injection": "^4.4|^5.0",
  5306. "symfony/event-dispatcher": "^4.4|^5.0",
  5307. "symfony/http-kernel": "^4.4|^5.0",
  5308. "symfony/process": "^4.4|^5.0",
  5309. "symfony/property-access": "^4.4|^5.0",
  5310. "symfony/serializer": "^4.4|^5.0",
  5311. "symfony/service-contracts": "^1.1|^2",
  5312. "symfony/stopwatch": "^4.4|^5.0",
  5313. "symfony/validator": "^4.4|^5.0"
  5314. },
  5315. "suggest": {
  5316. "enqueue/messenger-adapter": "For using the php-enqueue library as a transport."
  5317. },
  5318. "type": "library",
  5319. "extra": {
  5320. "branch-alias": {
  5321. "dev-master": "5.1-dev"
  5322. }
  5323. },
  5324. "autoload": {
  5325. "psr-4": {
  5326. "Symfony\\Component\\Messenger\\": ""
  5327. },
  5328. "exclude-from-classmap": [
  5329. "/Tests/"
  5330. ]
  5331. },
  5332. "notification-url": "https://packagist.org/downloads/",
  5333. "license": [
  5334. "MIT"
  5335. ],
  5336. "authors": [
  5337. {
  5338. "name": "Samuel Roze",
  5339. "email": "samuel.roze@gmail.com"
  5340. },
  5341. {
  5342. "name": "Symfony Community",
  5343. "homepage": "https://symfony.com/contributors"
  5344. }
  5345. ],
  5346. "description": "Symfony Messenger Component",
  5347. "homepage": "https://symfony.com",
  5348. "funding": [
  5349. {
  5350. "url": "https://symfony.com/sponsor",
  5351. "type": "custom"
  5352. },
  5353. {
  5354. "url": "https://github.com/fabpot",
  5355. "type": "github"
  5356. },
  5357. {
  5358. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5359. "type": "tidelift"
  5360. }
  5361. ],
  5362. "time": "2020-09-11T11:43:06+00:00"
  5363. },
  5364. {
  5365. "name": "symfony/mime",
  5366. "version": "v5.1.7",
  5367. "source": {
  5368. "type": "git",
  5369. "url": "https://github.com/symfony/mime.git",
  5370. "reference": "4404d6545125863561721514ad9388db2661eec5"
  5371. },
  5372. "dist": {
  5373. "type": "zip",
  5374. "url": "https://api.github.com/repos/symfony/mime/zipball/4404d6545125863561721514ad9388db2661eec5",
  5375. "reference": "4404d6545125863561721514ad9388db2661eec5",
  5376. "shasum": ""
  5377. },
  5378. "require": {
  5379. "php": ">=7.2.5",
  5380. "symfony/polyfill-intl-idn": "^1.10",
  5381. "symfony/polyfill-mbstring": "^1.0",
  5382. "symfony/polyfill-php80": "^1.15"
  5383. },
  5384. "conflict": {
  5385. "symfony/mailer": "<4.4"
  5386. },
  5387. "require-dev": {
  5388. "egulias/email-validator": "^2.1.10",
  5389. "symfony/dependency-injection": "^4.4|^5.0"
  5390. },
  5391. "type": "library",
  5392. "extra": {
  5393. "branch-alias": {
  5394. "dev-master": "5.1-dev"
  5395. }
  5396. },
  5397. "autoload": {
  5398. "psr-4": {
  5399. "Symfony\\Component\\Mime\\": ""
  5400. },
  5401. "exclude-from-classmap": [
  5402. "/Tests/"
  5403. ]
  5404. },
  5405. "notification-url": "https://packagist.org/downloads/",
  5406. "license": [
  5407. "MIT"
  5408. ],
  5409. "authors": [
  5410. {
  5411. "name": "Fabien Potencier",
  5412. "email": "fabien@symfony.com"
  5413. },
  5414. {
  5415. "name": "Symfony Community",
  5416. "homepage": "https://symfony.com/contributors"
  5417. }
  5418. ],
  5419. "description": "A library to manipulate MIME messages",
  5420. "homepage": "https://symfony.com",
  5421. "keywords": [
  5422. "mime",
  5423. "mime-type"
  5424. ],
  5425. "funding": [
  5426. {
  5427. "url": "https://symfony.com/sponsor",
  5428. "type": "custom"
  5429. },
  5430. {
  5431. "url": "https://github.com/fabpot",
  5432. "type": "github"
  5433. },
  5434. {
  5435. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5436. "type": "tidelift"
  5437. }
  5438. ],
  5439. "time": "2020-09-02T16:23:27+00:00"
  5440. },
  5441. {
  5442. "name": "symfony/monolog-bridge",
  5443. "version": "v5.1.7",
  5444. "source": {
  5445. "type": "git",
  5446. "url": "https://github.com/symfony/monolog-bridge.git",
  5447. "reference": "37255bdafc2f94155a90154b1f9878eae020106d"
  5448. },
  5449. "dist": {
  5450. "type": "zip",
  5451. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/37255bdafc2f94155a90154b1f9878eae020106d",
  5452. "reference": "37255bdafc2f94155a90154b1f9878eae020106d",
  5453. "shasum": ""
  5454. },
  5455. "require": {
  5456. "monolog/monolog": "^1.25.1|^2",
  5457. "php": ">=7.2.5",
  5458. "symfony/http-kernel": "^4.4|^5.0",
  5459. "symfony/service-contracts": "^1.1|^2"
  5460. },
  5461. "conflict": {
  5462. "symfony/console": "<4.4",
  5463. "symfony/http-foundation": "<4.4"
  5464. },
  5465. "require-dev": {
  5466. "symfony/console": "^4.4|^5.0",
  5467. "symfony/http-client": "^4.4|^5.0",
  5468. "symfony/mailer": "^4.4|^5.0",
  5469. "symfony/mime": "^4.4|^5.0",
  5470. "symfony/security-core": "^4.4|^5.0",
  5471. "symfony/var-dumper": "^4.4|^5.0"
  5472. },
  5473. "suggest": {
  5474. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  5475. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  5476. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  5477. },
  5478. "type": "symfony-bridge",
  5479. "extra": {
  5480. "branch-alias": {
  5481. "dev-master": "5.1-dev"
  5482. }
  5483. },
  5484. "autoload": {
  5485. "psr-4": {
  5486. "Symfony\\Bridge\\Monolog\\": ""
  5487. },
  5488. "exclude-from-classmap": [
  5489. "/Tests/"
  5490. ]
  5491. },
  5492. "notification-url": "https://packagist.org/downloads/",
  5493. "license": [
  5494. "MIT"
  5495. ],
  5496. "authors": [
  5497. {
  5498. "name": "Fabien Potencier",
  5499. "email": "fabien@symfony.com"
  5500. },
  5501. {
  5502. "name": "Symfony Community",
  5503. "homepage": "https://symfony.com/contributors"
  5504. }
  5505. ],
  5506. "description": "Symfony Monolog Bridge",
  5507. "homepage": "https://symfony.com",
  5508. "funding": [
  5509. {
  5510. "url": "https://symfony.com/sponsor",
  5511. "type": "custom"
  5512. },
  5513. {
  5514. "url": "https://github.com/fabpot",
  5515. "type": "github"
  5516. },
  5517. {
  5518. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5519. "type": "tidelift"
  5520. }
  5521. ],
  5522. "time": "2020-09-02T16:23:27+00:00"
  5523. },
  5524. {
  5525. "name": "symfony/monolog-bundle",
  5526. "version": "v3.6.0",
  5527. "source": {
  5528. "type": "git",
  5529. "url": "https://github.com/symfony/monolog-bundle.git",
  5530. "reference": "e495f5c7e4e672ffef4357d4a4d85f010802f940"
  5531. },
  5532. "dist": {
  5533. "type": "zip",
  5534. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/e495f5c7e4e672ffef4357d4a4d85f010802f940",
  5535. "reference": "e495f5c7e4e672ffef4357d4a4d85f010802f940",
  5536. "shasum": ""
  5537. },
  5538. "require": {
  5539. "monolog/monolog": "~1.22 || ~2.0",
  5540. "php": ">=5.6",
  5541. "symfony/config": "~3.4 || ~4.0 || ^5.0",
  5542. "symfony/dependency-injection": "~3.4.10 || ^4.0.10 || ^5.0",
  5543. "symfony/http-kernel": "~3.4 || ~4.0 || ^5.0",
  5544. "symfony/monolog-bridge": "~3.4 || ~4.0 || ^5.0"
  5545. },
  5546. "require-dev": {
  5547. "symfony/console": "~3.4 || ~4.0 || ^5.0",
  5548. "symfony/phpunit-bridge": "^4.4 || ^5.0",
  5549. "symfony/yaml": "~3.4 || ~4.0 || ^5.0"
  5550. },
  5551. "type": "symfony-bundle",
  5552. "extra": {
  5553. "branch-alias": {
  5554. "dev-master": "3.x-dev"
  5555. }
  5556. },
  5557. "autoload": {
  5558. "psr-4": {
  5559. "Symfony\\Bundle\\MonologBundle\\": ""
  5560. },
  5561. "exclude-from-classmap": [
  5562. "/Tests/"
  5563. ]
  5564. },
  5565. "notification-url": "https://packagist.org/downloads/",
  5566. "license": [
  5567. "MIT"
  5568. ],
  5569. "authors": [
  5570. {
  5571. "name": "Fabien Potencier",
  5572. "email": "fabien@symfony.com"
  5573. },
  5574. {
  5575. "name": "Symfony Community",
  5576. "homepage": "http://symfony.com/contributors"
  5577. }
  5578. ],
  5579. "description": "Symfony MonologBundle",
  5580. "homepage": "http://symfony.com",
  5581. "keywords": [
  5582. "log",
  5583. "logging"
  5584. ],
  5585. "funding": [
  5586. {
  5587. "url": "https://symfony.com/sponsor",
  5588. "type": "custom"
  5589. },
  5590. {
  5591. "url": "https://github.com/fabpot",
  5592. "type": "github"
  5593. },
  5594. {
  5595. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5596. "type": "tidelift"
  5597. }
  5598. ],
  5599. "time": "2020-10-06T15:12:11+00:00"
  5600. },
  5601. {
  5602. "name": "symfony/notifier",
  5603. "version": "v5.1.7",
  5604. "source": {
  5605. "type": "git",
  5606. "url": "https://github.com/symfony/notifier.git",
  5607. "reference": "19699652eaa69b0389bc985853f29b8e9177b1cf"
  5608. },
  5609. "dist": {
  5610. "type": "zip",
  5611. "url": "https://api.github.com/repos/symfony/notifier/zipball/19699652eaa69b0389bc985853f29b8e9177b1cf",
  5612. "reference": "19699652eaa69b0389bc985853f29b8e9177b1cf",
  5613. "shasum": ""
  5614. },
  5615. "require": {
  5616. "php": ">=7.2.5",
  5617. "symfony/polyfill-php80": "^1.15"
  5618. },
  5619. "conflict": {
  5620. "symfony/http-kernel": "<4.4"
  5621. },
  5622. "type": "library",
  5623. "extra": {
  5624. "branch-alias": {
  5625. "dev-master": "5.1-dev"
  5626. }
  5627. },
  5628. "autoload": {
  5629. "psr-4": {
  5630. "Symfony\\Component\\Notifier\\": ""
  5631. },
  5632. "exclude-from-classmap": [
  5633. "/Tests/"
  5634. ]
  5635. },
  5636. "notification-url": "https://packagist.org/downloads/",
  5637. "license": [
  5638. "MIT"
  5639. ],
  5640. "authors": [
  5641. {
  5642. "name": "Fabien Potencier",
  5643. "email": "fabien@symfony.com"
  5644. },
  5645. {
  5646. "name": "Symfony Community",
  5647. "homepage": "https://symfony.com/contributors"
  5648. }
  5649. ],
  5650. "description": "A library to notify messages",
  5651. "homepage": "https://symfony.com",
  5652. "keywords": [
  5653. "notification",
  5654. "notifier"
  5655. ],
  5656. "funding": [
  5657. {
  5658. "url": "https://symfony.com/sponsor",
  5659. "type": "custom"
  5660. },
  5661. {
  5662. "url": "https://github.com/fabpot",
  5663. "type": "github"
  5664. },
  5665. {
  5666. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5667. "type": "tidelift"
  5668. }
  5669. ],
  5670. "time": "2020-06-16T17:25:20+00:00"
  5671. },
  5672. {
  5673. "name": "symfony/options-resolver",
  5674. "version": "v5.1.7",
  5675. "source": {
  5676. "type": "git",
  5677. "url": "https://github.com/symfony/options-resolver.git",
  5678. "reference": "4c7e155bf7d93ea4ba3824d5a14476694a5278dd"
  5679. },
  5680. "dist": {
  5681. "type": "zip",
  5682. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/4c7e155bf7d93ea4ba3824d5a14476694a5278dd",
  5683. "reference": "4c7e155bf7d93ea4ba3824d5a14476694a5278dd",
  5684. "shasum": ""
  5685. },
  5686. "require": {
  5687. "php": ">=7.2.5",
  5688. "symfony/deprecation-contracts": "^2.1",
  5689. "symfony/polyfill-php80": "^1.15"
  5690. },
  5691. "type": "library",
  5692. "extra": {
  5693. "branch-alias": {
  5694. "dev-master": "5.1-dev"
  5695. }
  5696. },
  5697. "autoload": {
  5698. "psr-4": {
  5699. "Symfony\\Component\\OptionsResolver\\": ""
  5700. },
  5701. "exclude-from-classmap": [
  5702. "/Tests/"
  5703. ]
  5704. },
  5705. "notification-url": "https://packagist.org/downloads/",
  5706. "license": [
  5707. "MIT"
  5708. ],
  5709. "authors": [
  5710. {
  5711. "name": "Fabien Potencier",
  5712. "email": "fabien@symfony.com"
  5713. },
  5714. {
  5715. "name": "Symfony Community",
  5716. "homepage": "https://symfony.com/contributors"
  5717. }
  5718. ],
  5719. "description": "Symfony OptionsResolver Component",
  5720. "homepage": "https://symfony.com",
  5721. "keywords": [
  5722. "config",
  5723. "configuration",
  5724. "options"
  5725. ],
  5726. "funding": [
  5727. {
  5728. "url": "https://symfony.com/sponsor",
  5729. "type": "custom"
  5730. },
  5731. {
  5732. "url": "https://github.com/fabpot",
  5733. "type": "github"
  5734. },
  5735. {
  5736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5737. "type": "tidelift"
  5738. }
  5739. ],
  5740. "time": "2020-09-27T03:44:28+00:00"
  5741. },
  5742. {
  5743. "name": "symfony/orm-pack",
  5744. "version": "v2.0.0",
  5745. "source": {
  5746. "type": "git",
  5747. "url": "https://github.com/symfony/orm-pack.git",
  5748. "reference": "46aa731f213140388ee11ff3d2b6776a3b4a0d90"
  5749. },
  5750. "dist": {
  5751. "type": "zip",
  5752. "url": "https://api.github.com/repos/symfony/orm-pack/zipball/46aa731f213140388ee11ff3d2b6776a3b4a0d90",
  5753. "reference": "46aa731f213140388ee11ff3d2b6776a3b4a0d90",
  5754. "shasum": ""
  5755. },
  5756. "require": {
  5757. "composer/package-versions-deprecated": "*",
  5758. "doctrine/doctrine-bundle": "*",
  5759. "doctrine/doctrine-migrations-bundle": "*",
  5760. "doctrine/orm": "*"
  5761. },
  5762. "type": "symfony-pack",
  5763. "notification-url": "https://packagist.org/downloads/",
  5764. "license": [
  5765. "MIT"
  5766. ],
  5767. "description": "A pack for the Doctrine ORM",
  5768. "funding": [
  5769. {
  5770. "url": "https://symfony.com/sponsor",
  5771. "type": "custom"
  5772. },
  5773. {
  5774. "url": "https://github.com/fabpot",
  5775. "type": "github"
  5776. },
  5777. {
  5778. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5779. "type": "tidelift"
  5780. }
  5781. ],
  5782. "time": "2020-07-14T14:34:28+00:00"
  5783. },
  5784. {
  5785. "name": "symfony/polyfill-intl-grapheme",
  5786. "version": "v1.18.1",
  5787. "source": {
  5788. "type": "git",
  5789. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5790. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5"
  5791. },
  5792. "dist": {
  5793. "type": "zip",
  5794. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  5795. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  5796. "shasum": ""
  5797. },
  5798. "require": {
  5799. "php": ">=5.3.3"
  5800. },
  5801. "suggest": {
  5802. "ext-intl": "For best performance"
  5803. },
  5804. "type": "library",
  5805. "extra": {
  5806. "branch-alias": {
  5807. "dev-master": "1.18-dev"
  5808. },
  5809. "thanks": {
  5810. "name": "symfony/polyfill",
  5811. "url": "https://github.com/symfony/polyfill"
  5812. }
  5813. },
  5814. "autoload": {
  5815. "psr-4": {
  5816. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5817. },
  5818. "files": [
  5819. "bootstrap.php"
  5820. ]
  5821. },
  5822. "notification-url": "https://packagist.org/downloads/",
  5823. "license": [
  5824. "MIT"
  5825. ],
  5826. "authors": [
  5827. {
  5828. "name": "Nicolas Grekas",
  5829. "email": "p@tchwork.com"
  5830. },
  5831. {
  5832. "name": "Symfony Community",
  5833. "homepage": "https://symfony.com/contributors"
  5834. }
  5835. ],
  5836. "description": "Symfony polyfill for intl's grapheme_* functions",
  5837. "homepage": "https://symfony.com",
  5838. "keywords": [
  5839. "compatibility",
  5840. "grapheme",
  5841. "intl",
  5842. "polyfill",
  5843. "portable",
  5844. "shim"
  5845. ],
  5846. "funding": [
  5847. {
  5848. "url": "https://symfony.com/sponsor",
  5849. "type": "custom"
  5850. },
  5851. {
  5852. "url": "https://github.com/fabpot",
  5853. "type": "github"
  5854. },
  5855. {
  5856. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5857. "type": "tidelift"
  5858. }
  5859. ],
  5860. "time": "2020-07-14T12:35:20+00:00"
  5861. },
  5862. {
  5863. "name": "symfony/polyfill-intl-icu",
  5864. "version": "v1.18.1",
  5865. "source": {
  5866. "type": "git",
  5867. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5868. "reference": "4e45a6e39041a9cc78835b11abc47874ae302a55"
  5869. },
  5870. "dist": {
  5871. "type": "zip",
  5872. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/4e45a6e39041a9cc78835b11abc47874ae302a55",
  5873. "reference": "4e45a6e39041a9cc78835b11abc47874ae302a55",
  5874. "shasum": ""
  5875. },
  5876. "require": {
  5877. "php": ">=5.3.3",
  5878. "symfony/intl": "~2.3|~3.0|~4.0|~5.0"
  5879. },
  5880. "suggest": {
  5881. "ext-intl": "For best performance"
  5882. },
  5883. "type": "library",
  5884. "extra": {
  5885. "branch-alias": {
  5886. "dev-master": "1.18-dev"
  5887. },
  5888. "thanks": {
  5889. "name": "symfony/polyfill",
  5890. "url": "https://github.com/symfony/polyfill"
  5891. }
  5892. },
  5893. "autoload": {
  5894. "files": [
  5895. "bootstrap.php"
  5896. ]
  5897. },
  5898. "notification-url": "https://packagist.org/downloads/",
  5899. "license": [
  5900. "MIT"
  5901. ],
  5902. "authors": [
  5903. {
  5904. "name": "Nicolas Grekas",
  5905. "email": "p@tchwork.com"
  5906. },
  5907. {
  5908. "name": "Symfony Community",
  5909. "homepage": "https://symfony.com/contributors"
  5910. }
  5911. ],
  5912. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5913. "homepage": "https://symfony.com",
  5914. "keywords": [
  5915. "compatibility",
  5916. "icu",
  5917. "intl",
  5918. "polyfill",
  5919. "portable",
  5920. "shim"
  5921. ],
  5922. "funding": [
  5923. {
  5924. "url": "https://symfony.com/sponsor",
  5925. "type": "custom"
  5926. },
  5927. {
  5928. "url": "https://github.com/fabpot",
  5929. "type": "github"
  5930. },
  5931. {
  5932. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5933. "type": "tidelift"
  5934. }
  5935. ],
  5936. "time": "2020-07-14T12:35:20+00:00"
  5937. },
  5938. {
  5939. "name": "symfony/polyfill-intl-idn",
  5940. "version": "v1.18.1",
  5941. "source": {
  5942. "type": "git",
  5943. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5944. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251"
  5945. },
  5946. "dist": {
  5947. "type": "zip",
  5948. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  5949. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  5950. "shasum": ""
  5951. },
  5952. "require": {
  5953. "php": ">=5.3.3",
  5954. "symfony/polyfill-intl-normalizer": "^1.10",
  5955. "symfony/polyfill-php70": "^1.10",
  5956. "symfony/polyfill-php72": "^1.10"
  5957. },
  5958. "suggest": {
  5959. "ext-intl": "For best performance"
  5960. },
  5961. "type": "library",
  5962. "extra": {
  5963. "branch-alias": {
  5964. "dev-master": "1.18-dev"
  5965. },
  5966. "thanks": {
  5967. "name": "symfony/polyfill",
  5968. "url": "https://github.com/symfony/polyfill"
  5969. }
  5970. },
  5971. "autoload": {
  5972. "psr-4": {
  5973. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5974. },
  5975. "files": [
  5976. "bootstrap.php"
  5977. ]
  5978. },
  5979. "notification-url": "https://packagist.org/downloads/",
  5980. "license": [
  5981. "MIT"
  5982. ],
  5983. "authors": [
  5984. {
  5985. "name": "Laurent Bassin",
  5986. "email": "laurent@bassin.info"
  5987. },
  5988. {
  5989. "name": "Trevor Rowbotham",
  5990. "email": "trevor.rowbotham@pm.me"
  5991. },
  5992. {
  5993. "name": "Symfony Community",
  5994. "homepage": "https://symfony.com/contributors"
  5995. }
  5996. ],
  5997. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5998. "homepage": "https://symfony.com",
  5999. "keywords": [
  6000. "compatibility",
  6001. "idn",
  6002. "intl",
  6003. "polyfill",
  6004. "portable",
  6005. "shim"
  6006. ],
  6007. "funding": [
  6008. {
  6009. "url": "https://symfony.com/sponsor",
  6010. "type": "custom"
  6011. },
  6012. {
  6013. "url": "https://github.com/fabpot",
  6014. "type": "github"
  6015. },
  6016. {
  6017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6018. "type": "tidelift"
  6019. }
  6020. ],
  6021. "time": "2020-08-04T06:02:08+00:00"
  6022. },
  6023. {
  6024. "name": "symfony/polyfill-intl-normalizer",
  6025. "version": "v1.18.1",
  6026. "source": {
  6027. "type": "git",
  6028. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6029. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"
  6030. },
  6031. "dist": {
  6032. "type": "zip",
  6033. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  6034. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  6035. "shasum": ""
  6036. },
  6037. "require": {
  6038. "php": ">=5.3.3"
  6039. },
  6040. "suggest": {
  6041. "ext-intl": "For best performance"
  6042. },
  6043. "type": "library",
  6044. "extra": {
  6045. "branch-alias": {
  6046. "dev-master": "1.18-dev"
  6047. },
  6048. "thanks": {
  6049. "name": "symfony/polyfill",
  6050. "url": "https://github.com/symfony/polyfill"
  6051. }
  6052. },
  6053. "autoload": {
  6054. "psr-4": {
  6055. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6056. },
  6057. "files": [
  6058. "bootstrap.php"
  6059. ],
  6060. "classmap": [
  6061. "Resources/stubs"
  6062. ]
  6063. },
  6064. "notification-url": "https://packagist.org/downloads/",
  6065. "license": [
  6066. "MIT"
  6067. ],
  6068. "authors": [
  6069. {
  6070. "name": "Nicolas Grekas",
  6071. "email": "p@tchwork.com"
  6072. },
  6073. {
  6074. "name": "Symfony Community",
  6075. "homepage": "https://symfony.com/contributors"
  6076. }
  6077. ],
  6078. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6079. "homepage": "https://symfony.com",
  6080. "keywords": [
  6081. "compatibility",
  6082. "intl",
  6083. "normalizer",
  6084. "polyfill",
  6085. "portable",
  6086. "shim"
  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": "2020-07-14T12:35:20+00:00"
  6103. },
  6104. {
  6105. "name": "symfony/polyfill-mbstring",
  6106. "version": "v1.18.1",
  6107. "source": {
  6108. "type": "git",
  6109. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6110. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
  6111. },
  6112. "dist": {
  6113. "type": "zip",
  6114. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
  6115. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
  6116. "shasum": ""
  6117. },
  6118. "require": {
  6119. "php": ">=5.3.3"
  6120. },
  6121. "suggest": {
  6122. "ext-mbstring": "For best performance"
  6123. },
  6124. "type": "library",
  6125. "extra": {
  6126. "branch-alias": {
  6127. "dev-master": "1.18-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\\Mbstring\\": ""
  6137. },
  6138. "files": [
  6139. "bootstrap.php"
  6140. ]
  6141. },
  6142. "notification-url": "https://packagist.org/downloads/",
  6143. "license": [
  6144. "MIT"
  6145. ],
  6146. "authors": [
  6147. {
  6148. "name": "Nicolas Grekas",
  6149. "email": "p@tchwork.com"
  6150. },
  6151. {
  6152. "name": "Symfony Community",
  6153. "homepage": "https://symfony.com/contributors"
  6154. }
  6155. ],
  6156. "description": "Symfony polyfill for the Mbstring extension",
  6157. "homepage": "https://symfony.com",
  6158. "keywords": [
  6159. "compatibility",
  6160. "mbstring",
  6161. "polyfill",
  6162. "portable",
  6163. "shim"
  6164. ],
  6165. "funding": [
  6166. {
  6167. "url": "https://symfony.com/sponsor",
  6168. "type": "custom"
  6169. },
  6170. {
  6171. "url": "https://github.com/fabpot",
  6172. "type": "github"
  6173. },
  6174. {
  6175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6176. "type": "tidelift"
  6177. }
  6178. ],
  6179. "time": "2020-07-14T12:35:20+00:00"
  6180. },
  6181. {
  6182. "name": "symfony/polyfill-php73",
  6183. "version": "v1.18.1",
  6184. "source": {
  6185. "type": "git",
  6186. "url": "https://github.com/symfony/polyfill-php73.git",
  6187. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca"
  6188. },
  6189. "dist": {
  6190. "type": "zip",
  6191. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  6192. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  6193. "shasum": ""
  6194. },
  6195. "require": {
  6196. "php": ">=5.3.3"
  6197. },
  6198. "type": "library",
  6199. "extra": {
  6200. "branch-alias": {
  6201. "dev-master": "1.18-dev"
  6202. },
  6203. "thanks": {
  6204. "name": "symfony/polyfill",
  6205. "url": "https://github.com/symfony/polyfill"
  6206. }
  6207. },
  6208. "autoload": {
  6209. "psr-4": {
  6210. "Symfony\\Polyfill\\Php73\\": ""
  6211. },
  6212. "files": [
  6213. "bootstrap.php"
  6214. ],
  6215. "classmap": [
  6216. "Resources/stubs"
  6217. ]
  6218. },
  6219. "notification-url": "https://packagist.org/downloads/",
  6220. "license": [
  6221. "MIT"
  6222. ],
  6223. "authors": [
  6224. {
  6225. "name": "Nicolas Grekas",
  6226. "email": "p@tchwork.com"
  6227. },
  6228. {
  6229. "name": "Symfony Community",
  6230. "homepage": "https://symfony.com/contributors"
  6231. }
  6232. ],
  6233. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6234. "homepage": "https://symfony.com",
  6235. "keywords": [
  6236. "compatibility",
  6237. "polyfill",
  6238. "portable",
  6239. "shim"
  6240. ],
  6241. "funding": [
  6242. {
  6243. "url": "https://symfony.com/sponsor",
  6244. "type": "custom"
  6245. },
  6246. {
  6247. "url": "https://github.com/fabpot",
  6248. "type": "github"
  6249. },
  6250. {
  6251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6252. "type": "tidelift"
  6253. }
  6254. ],
  6255. "time": "2020-07-14T12:35:20+00:00"
  6256. },
  6257. {
  6258. "name": "symfony/polyfill-php80",
  6259. "version": "v1.18.1",
  6260. "source": {
  6261. "type": "git",
  6262. "url": "https://github.com/symfony/polyfill-php80.git",
  6263. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981"
  6264. },
  6265. "dist": {
  6266. "type": "zip",
  6267. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  6268. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  6269. "shasum": ""
  6270. },
  6271. "require": {
  6272. "php": ">=7.0.8"
  6273. },
  6274. "type": "library",
  6275. "extra": {
  6276. "branch-alias": {
  6277. "dev-master": "1.18-dev"
  6278. },
  6279. "thanks": {
  6280. "name": "symfony/polyfill",
  6281. "url": "https://github.com/symfony/polyfill"
  6282. }
  6283. },
  6284. "autoload": {
  6285. "psr-4": {
  6286. "Symfony\\Polyfill\\Php80\\": ""
  6287. },
  6288. "files": [
  6289. "bootstrap.php"
  6290. ],
  6291. "classmap": [
  6292. "Resources/stubs"
  6293. ]
  6294. },
  6295. "notification-url": "https://packagist.org/downloads/",
  6296. "license": [
  6297. "MIT"
  6298. ],
  6299. "authors": [
  6300. {
  6301. "name": "Ion Bazan",
  6302. "email": "ion.bazan@gmail.com"
  6303. },
  6304. {
  6305. "name": "Nicolas Grekas",
  6306. "email": "p@tchwork.com"
  6307. },
  6308. {
  6309. "name": "Symfony Community",
  6310. "homepage": "https://symfony.com/contributors"
  6311. }
  6312. ],
  6313. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6314. "homepage": "https://symfony.com",
  6315. "keywords": [
  6316. "compatibility",
  6317. "polyfill",
  6318. "portable",
  6319. "shim"
  6320. ],
  6321. "funding": [
  6322. {
  6323. "url": "https://symfony.com/sponsor",
  6324. "type": "custom"
  6325. },
  6326. {
  6327. "url": "https://github.com/fabpot",
  6328. "type": "github"
  6329. },
  6330. {
  6331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6332. "type": "tidelift"
  6333. }
  6334. ],
  6335. "time": "2020-07-14T12:35:20+00:00"
  6336. },
  6337. {
  6338. "name": "symfony/process",
  6339. "version": "v5.1.7",
  6340. "source": {
  6341. "type": "git",
  6342. "url": "https://github.com/symfony/process.git",
  6343. "reference": "d3a2e64866169586502f0cd9cab69135ad12cee9"
  6344. },
  6345. "dist": {
  6346. "type": "zip",
  6347. "url": "https://api.github.com/repos/symfony/process/zipball/d3a2e64866169586502f0cd9cab69135ad12cee9",
  6348. "reference": "d3a2e64866169586502f0cd9cab69135ad12cee9",
  6349. "shasum": ""
  6350. },
  6351. "require": {
  6352. "php": ">=7.2.5",
  6353. "symfony/polyfill-php80": "^1.15"
  6354. },
  6355. "type": "library",
  6356. "extra": {
  6357. "branch-alias": {
  6358. "dev-master": "5.1-dev"
  6359. }
  6360. },
  6361. "autoload": {
  6362. "psr-4": {
  6363. "Symfony\\Component\\Process\\": ""
  6364. },
  6365. "exclude-from-classmap": [
  6366. "/Tests/"
  6367. ]
  6368. },
  6369. "notification-url": "https://packagist.org/downloads/",
  6370. "license": [
  6371. "MIT"
  6372. ],
  6373. "authors": [
  6374. {
  6375. "name": "Fabien Potencier",
  6376. "email": "fabien@symfony.com"
  6377. },
  6378. {
  6379. "name": "Symfony Community",
  6380. "homepage": "https://symfony.com/contributors"
  6381. }
  6382. ],
  6383. "description": "Symfony Process Component",
  6384. "homepage": "https://symfony.com",
  6385. "funding": [
  6386. {
  6387. "url": "https://symfony.com/sponsor",
  6388. "type": "custom"
  6389. },
  6390. {
  6391. "url": "https://github.com/fabpot",
  6392. "type": "github"
  6393. },
  6394. {
  6395. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6396. "type": "tidelift"
  6397. }
  6398. ],
  6399. "time": "2020-09-02T16:23:27+00:00"
  6400. },
  6401. {
  6402. "name": "symfony/property-access",
  6403. "version": "v5.1.7",
  6404. "source": {
  6405. "type": "git",
  6406. "url": "https://github.com/symfony/property-access.git",
  6407. "reference": "4c43f7ff784e1e3ee1c96e15f76b342af6617b39"
  6408. },
  6409. "dist": {
  6410. "type": "zip",
  6411. "url": "https://api.github.com/repos/symfony/property-access/zipball/4c43f7ff784e1e3ee1c96e15f76b342af6617b39",
  6412. "reference": "4c43f7ff784e1e3ee1c96e15f76b342af6617b39",
  6413. "shasum": ""
  6414. },
  6415. "require": {
  6416. "php": ">=7.2.5",
  6417. "symfony/polyfill-php80": "^1.15",
  6418. "symfony/property-info": "^5.1.1"
  6419. },
  6420. "require-dev": {
  6421. "symfony/cache": "^4.4|^5.0"
  6422. },
  6423. "suggest": {
  6424. "psr/cache-implementation": "To cache access methods."
  6425. },
  6426. "type": "library",
  6427. "extra": {
  6428. "branch-alias": {
  6429. "dev-master": "5.1-dev"
  6430. }
  6431. },
  6432. "autoload": {
  6433. "psr-4": {
  6434. "Symfony\\Component\\PropertyAccess\\": ""
  6435. },
  6436. "exclude-from-classmap": [
  6437. "/Tests/"
  6438. ]
  6439. },
  6440. "notification-url": "https://packagist.org/downloads/",
  6441. "license": [
  6442. "MIT"
  6443. ],
  6444. "authors": [
  6445. {
  6446. "name": "Fabien Potencier",
  6447. "email": "fabien@symfony.com"
  6448. },
  6449. {
  6450. "name": "Symfony Community",
  6451. "homepage": "https://symfony.com/contributors"
  6452. }
  6453. ],
  6454. "description": "Symfony PropertyAccess Component",
  6455. "homepage": "https://symfony.com",
  6456. "keywords": [
  6457. "access",
  6458. "array",
  6459. "extraction",
  6460. "index",
  6461. "injection",
  6462. "object",
  6463. "property",
  6464. "property path",
  6465. "reflection"
  6466. ],
  6467. "funding": [
  6468. {
  6469. "url": "https://symfony.com/sponsor",
  6470. "type": "custom"
  6471. },
  6472. {
  6473. "url": "https://github.com/fabpot",
  6474. "type": "github"
  6475. },
  6476. {
  6477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6478. "type": "tidelift"
  6479. }
  6480. ],
  6481. "time": "2020-09-02T16:23:27+00:00"
  6482. },
  6483. {
  6484. "name": "symfony/property-info",
  6485. "version": "v5.1.7",
  6486. "source": {
  6487. "type": "git",
  6488. "url": "https://github.com/symfony/property-info.git",
  6489. "reference": "22518930091e0bdb249694efc509e3697f7e325e"
  6490. },
  6491. "dist": {
  6492. "type": "zip",
  6493. "url": "https://api.github.com/repos/symfony/property-info/zipball/22518930091e0bdb249694efc509e3697f7e325e",
  6494. "reference": "22518930091e0bdb249694efc509e3697f7e325e",
  6495. "shasum": ""
  6496. },
  6497. "require": {
  6498. "php": ">=7.2.5",
  6499. "symfony/polyfill-php80": "^1.15",
  6500. "symfony/string": "^5.1"
  6501. },
  6502. "conflict": {
  6503. "phpdocumentor/reflection-docblock": "<3.2.2",
  6504. "phpdocumentor/type-resolver": "<0.3.0",
  6505. "symfony/dependency-injection": "<4.4"
  6506. },
  6507. "require-dev": {
  6508. "doctrine/annotations": "~1.7",
  6509. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6510. "symfony/cache": "^4.4|^5.0",
  6511. "symfony/dependency-injection": "^4.4|^5.0",
  6512. "symfony/serializer": "^4.4|^5.0"
  6513. },
  6514. "suggest": {
  6515. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6516. "psr/cache-implementation": "To cache results",
  6517. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6518. "symfony/serializer": "To use Serializer metadata"
  6519. },
  6520. "type": "library",
  6521. "extra": {
  6522. "branch-alias": {
  6523. "dev-master": "5.1-dev"
  6524. }
  6525. },
  6526. "autoload": {
  6527. "psr-4": {
  6528. "Symfony\\Component\\PropertyInfo\\": ""
  6529. },
  6530. "exclude-from-classmap": [
  6531. "/Tests/"
  6532. ]
  6533. },
  6534. "notification-url": "https://packagist.org/downloads/",
  6535. "license": [
  6536. "MIT"
  6537. ],
  6538. "authors": [
  6539. {
  6540. "name": "Kévin Dunglas",
  6541. "email": "dunglas@gmail.com"
  6542. },
  6543. {
  6544. "name": "Symfony Community",
  6545. "homepage": "https://symfony.com/contributors"
  6546. }
  6547. ],
  6548. "description": "Symfony Property Info Component",
  6549. "homepage": "https://symfony.com",
  6550. "keywords": [
  6551. "doctrine",
  6552. "phpdoc",
  6553. "property",
  6554. "symfony",
  6555. "type",
  6556. "validator"
  6557. ],
  6558. "funding": [
  6559. {
  6560. "url": "https://symfony.com/sponsor",
  6561. "type": "custom"
  6562. },
  6563. {
  6564. "url": "https://github.com/fabpot",
  6565. "type": "github"
  6566. },
  6567. {
  6568. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6569. "type": "tidelift"
  6570. }
  6571. ],
  6572. "time": "2020-09-07T05:10:28+00:00"
  6573. },
  6574. {
  6575. "name": "symfony/redis-messenger",
  6576. "version": "v5.1.7",
  6577. "source": {
  6578. "type": "git",
  6579. "url": "https://github.com/symfony/redis-messenger.git",
  6580. "reference": "c0b66a724dfa77d41adf54e70c49227071a38411"
  6581. },
  6582. "dist": {
  6583. "type": "zip",
  6584. "url": "https://api.github.com/repos/symfony/redis-messenger/zipball/c0b66a724dfa77d41adf54e70c49227071a38411",
  6585. "reference": "c0b66a724dfa77d41adf54e70c49227071a38411",
  6586. "shasum": ""
  6587. },
  6588. "require": {
  6589. "php": ">=7.2.5",
  6590. "symfony/messenger": "^5.1"
  6591. },
  6592. "require-dev": {
  6593. "symfony/property-access": "^4.4|^5.0",
  6594. "symfony/serializer": "^4.4|^5.0"
  6595. },
  6596. "type": "symfony-bridge",
  6597. "extra": {
  6598. "branch-alias": {
  6599. "dev-master": "5.1-dev"
  6600. }
  6601. },
  6602. "autoload": {
  6603. "psr-4": {
  6604. "Symfony\\Component\\Messenger\\Bridge\\Redis\\": ""
  6605. },
  6606. "exclude-from-classmap": [
  6607. "/Tests/"
  6608. ]
  6609. },
  6610. "notification-url": "https://packagist.org/downloads/",
  6611. "license": [
  6612. "MIT"
  6613. ],
  6614. "authors": [
  6615. {
  6616. "name": "Fabien Potencier",
  6617. "email": "fabien@symfony.com"
  6618. },
  6619. {
  6620. "name": "Symfony Community",
  6621. "homepage": "https://symfony.com/contributors"
  6622. }
  6623. ],
  6624. "description": "Symfony Redis extension Messenger Bridge",
  6625. "homepage": "https://symfony.com",
  6626. "funding": [
  6627. {
  6628. "url": "https://symfony.com/sponsor",
  6629. "type": "custom"
  6630. },
  6631. {
  6632. "url": "https://github.com/fabpot",
  6633. "type": "github"
  6634. },
  6635. {
  6636. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6637. "type": "tidelift"
  6638. }
  6639. ],
  6640. "time": "2020-10-02T08:49:02+00:00"
  6641. },
  6642. {
  6643. "name": "symfony/routing",
  6644. "version": "v5.1.7",
  6645. "source": {
  6646. "type": "git",
  6647. "url": "https://github.com/symfony/routing.git",
  6648. "reference": "720348c2ae011f8c56964c0fc3e992840cb60ccf"
  6649. },
  6650. "dist": {
  6651. "type": "zip",
  6652. "url": "https://api.github.com/repos/symfony/routing/zipball/720348c2ae011f8c56964c0fc3e992840cb60ccf",
  6653. "reference": "720348c2ae011f8c56964c0fc3e992840cb60ccf",
  6654. "shasum": ""
  6655. },
  6656. "require": {
  6657. "php": ">=7.2.5",
  6658. "symfony/deprecation-contracts": "^2.1",
  6659. "symfony/polyfill-php80": "^1.15"
  6660. },
  6661. "conflict": {
  6662. "symfony/config": "<5.0",
  6663. "symfony/dependency-injection": "<4.4",
  6664. "symfony/yaml": "<4.4"
  6665. },
  6666. "require-dev": {
  6667. "doctrine/annotations": "~1.2",
  6668. "psr/log": "~1.0",
  6669. "symfony/config": "^5.0",
  6670. "symfony/dependency-injection": "^4.4|^5.0",
  6671. "symfony/expression-language": "^4.4|^5.0",
  6672. "symfony/http-foundation": "^4.4|^5.0",
  6673. "symfony/yaml": "^4.4|^5.0"
  6674. },
  6675. "suggest": {
  6676. "doctrine/annotations": "For using the annotation loader",
  6677. "symfony/config": "For using the all-in-one router or any loader",
  6678. "symfony/expression-language": "For using expression matching",
  6679. "symfony/http-foundation": "For using a Symfony Request object",
  6680. "symfony/yaml": "For using the YAML loader"
  6681. },
  6682. "type": "library",
  6683. "extra": {
  6684. "branch-alias": {
  6685. "dev-master": "5.1-dev"
  6686. }
  6687. },
  6688. "autoload": {
  6689. "psr-4": {
  6690. "Symfony\\Component\\Routing\\": ""
  6691. },
  6692. "exclude-from-classmap": [
  6693. "/Tests/"
  6694. ]
  6695. },
  6696. "notification-url": "https://packagist.org/downloads/",
  6697. "license": [
  6698. "MIT"
  6699. ],
  6700. "authors": [
  6701. {
  6702. "name": "Fabien Potencier",
  6703. "email": "fabien@symfony.com"
  6704. },
  6705. {
  6706. "name": "Symfony Community",
  6707. "homepage": "https://symfony.com/contributors"
  6708. }
  6709. ],
  6710. "description": "Symfony Routing Component",
  6711. "homepage": "https://symfony.com",
  6712. "keywords": [
  6713. "router",
  6714. "routing",
  6715. "uri",
  6716. "url"
  6717. ],
  6718. "funding": [
  6719. {
  6720. "url": "https://symfony.com/sponsor",
  6721. "type": "custom"
  6722. },
  6723. {
  6724. "url": "https://github.com/fabpot",
  6725. "type": "github"
  6726. },
  6727. {
  6728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6729. "type": "tidelift"
  6730. }
  6731. ],
  6732. "time": "2020-10-02T13:05:43+00:00"
  6733. },
  6734. {
  6735. "name": "symfony/security-bundle",
  6736. "version": "v5.1.7",
  6737. "source": {
  6738. "type": "git",
  6739. "url": "https://github.com/symfony/security-bundle.git",
  6740. "reference": "c9cbe7d78d734062365e2af6d8d475d8888a7bcc"
  6741. },
  6742. "dist": {
  6743. "type": "zip",
  6744. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/c9cbe7d78d734062365e2af6d8d475d8888a7bcc",
  6745. "reference": "c9cbe7d78d734062365e2af6d8d475d8888a7bcc",
  6746. "shasum": ""
  6747. },
  6748. "require": {
  6749. "ext-xml": "*",
  6750. "php": ">=7.2.5",
  6751. "symfony/config": "^4.4|^5.0",
  6752. "symfony/dependency-injection": "^5.1",
  6753. "symfony/event-dispatcher": "^5.1",
  6754. "symfony/http-kernel": "^5.0",
  6755. "symfony/polyfill-php80": "^1.15",
  6756. "symfony/security-core": "^5.1",
  6757. "symfony/security-csrf": "^4.4|^5.0",
  6758. "symfony/security-guard": "^5.1",
  6759. "symfony/security-http": "^5.1,>=5.1.2"
  6760. },
  6761. "conflict": {
  6762. "symfony/browser-kit": "<4.4",
  6763. "symfony/console": "<4.4",
  6764. "symfony/framework-bundle": "<4.4",
  6765. "symfony/ldap": "<4.4",
  6766. "symfony/twig-bundle": "<4.4"
  6767. },
  6768. "require-dev": {
  6769. "doctrine/doctrine-bundle": "^2.0",
  6770. "symfony/asset": "^4.4|^5.0",
  6771. "symfony/browser-kit": "^4.4|^5.0",
  6772. "symfony/console": "^4.4|^5.0",
  6773. "symfony/css-selector": "^4.4|^5.0",
  6774. "symfony/dom-crawler": "^4.4|^5.0",
  6775. "symfony/expression-language": "^4.4|^5.0",
  6776. "symfony/form": "^4.4|^5.0",
  6777. "symfony/framework-bundle": "^4.4|^5.0",
  6778. "symfony/process": "^4.4|^5.0",
  6779. "symfony/serializer": "^4.4|^5.0",
  6780. "symfony/translation": "^4.4|^5.0",
  6781. "symfony/twig-bridge": "^4.4|^5.0",
  6782. "symfony/twig-bundle": "^4.4|^5.0",
  6783. "symfony/validator": "^4.4|^5.0",
  6784. "symfony/yaml": "^4.4|^5.0",
  6785. "twig/twig": "^2.10|^3.0"
  6786. },
  6787. "type": "symfony-bundle",
  6788. "extra": {
  6789. "branch-alias": {
  6790. "dev-master": "5.1-dev"
  6791. }
  6792. },
  6793. "autoload": {
  6794. "psr-4": {
  6795. "Symfony\\Bundle\\SecurityBundle\\": ""
  6796. },
  6797. "exclude-from-classmap": [
  6798. "/Tests/"
  6799. ]
  6800. },
  6801. "notification-url": "https://packagist.org/downloads/",
  6802. "license": [
  6803. "MIT"
  6804. ],
  6805. "authors": [
  6806. {
  6807. "name": "Fabien Potencier",
  6808. "email": "fabien@symfony.com"
  6809. },
  6810. {
  6811. "name": "Symfony Community",
  6812. "homepage": "https://symfony.com/contributors"
  6813. }
  6814. ],
  6815. "description": "Symfony SecurityBundle",
  6816. "homepage": "https://symfony.com",
  6817. "funding": [
  6818. {
  6819. "url": "https://symfony.com/sponsor",
  6820. "type": "custom"
  6821. },
  6822. {
  6823. "url": "https://github.com/fabpot",
  6824. "type": "github"
  6825. },
  6826. {
  6827. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6828. "type": "tidelift"
  6829. }
  6830. ],
  6831. "time": "2020-09-20T07:33:50+00:00"
  6832. },
  6833. {
  6834. "name": "symfony/security-core",
  6835. "version": "v5.1.7",
  6836. "source": {
  6837. "type": "git",
  6838. "url": "https://github.com/symfony/security-core.git",
  6839. "reference": "6c5d337d9549c1ab4c2edcee50bbb0bc509ebb17"
  6840. },
  6841. "dist": {
  6842. "type": "zip",
  6843. "url": "https://api.github.com/repos/symfony/security-core/zipball/6c5d337d9549c1ab4c2edcee50bbb0bc509ebb17",
  6844. "reference": "6c5d337d9549c1ab4c2edcee50bbb0bc509ebb17",
  6845. "shasum": ""
  6846. },
  6847. "require": {
  6848. "php": ">=7.2.5",
  6849. "symfony/deprecation-contracts": "^2.1",
  6850. "symfony/event-dispatcher-contracts": "^1.1|^2",
  6851. "symfony/polyfill-php80": "^1.15",
  6852. "symfony/service-contracts": "^1.1.6|^2"
  6853. },
  6854. "conflict": {
  6855. "symfony/event-dispatcher": "<4.4",
  6856. "symfony/ldap": "<4.4",
  6857. "symfony/security-guard": "<4.4"
  6858. },
  6859. "require-dev": {
  6860. "psr/container": "^1.0",
  6861. "psr/log": "~1.0",
  6862. "symfony/event-dispatcher": "^4.4|^5.0",
  6863. "symfony/expression-language": "^4.4|^5.0",
  6864. "symfony/http-foundation": "^4.4|^5.0",
  6865. "symfony/ldap": "^4.4|^5.0",
  6866. "symfony/validator": "^4.4|^5.0"
  6867. },
  6868. "suggest": {
  6869. "psr/container-implementation": "To instantiate the Security class",
  6870. "symfony/event-dispatcher": "",
  6871. "symfony/expression-language": "For using the expression voter",
  6872. "symfony/http-foundation": "",
  6873. "symfony/ldap": "For using LDAP integration",
  6874. "symfony/validator": "For using the user password constraint"
  6875. },
  6876. "type": "library",
  6877. "extra": {
  6878. "branch-alias": {
  6879. "dev-master": "5.1-dev"
  6880. }
  6881. },
  6882. "autoload": {
  6883. "psr-4": {
  6884. "Symfony\\Component\\Security\\Core\\": ""
  6885. },
  6886. "exclude-from-classmap": [
  6887. "/Tests/"
  6888. ]
  6889. },
  6890. "notification-url": "https://packagist.org/downloads/",
  6891. "license": [
  6892. "MIT"
  6893. ],
  6894. "authors": [
  6895. {
  6896. "name": "Fabien Potencier",
  6897. "email": "fabien@symfony.com"
  6898. },
  6899. {
  6900. "name": "Symfony Community",
  6901. "homepage": "https://symfony.com/contributors"
  6902. }
  6903. ],
  6904. "description": "Symfony Security Component - Core Library",
  6905. "homepage": "https://symfony.com",
  6906. "funding": [
  6907. {
  6908. "url": "https://symfony.com/sponsor",
  6909. "type": "custom"
  6910. },
  6911. {
  6912. "url": "https://github.com/fabpot",
  6913. "type": "github"
  6914. },
  6915. {
  6916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6917. "type": "tidelift"
  6918. }
  6919. ],
  6920. "time": "2020-10-04T07:09:21+00:00"
  6921. },
  6922. {
  6923. "name": "symfony/security-csrf",
  6924. "version": "v5.1.7",
  6925. "source": {
  6926. "type": "git",
  6927. "url": "https://github.com/symfony/security-csrf.git",
  6928. "reference": "f1659a16028a50766dbffa73160fb94599131014"
  6929. },
  6930. "dist": {
  6931. "type": "zip",
  6932. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/f1659a16028a50766dbffa73160fb94599131014",
  6933. "reference": "f1659a16028a50766dbffa73160fb94599131014",
  6934. "shasum": ""
  6935. },
  6936. "require": {
  6937. "php": ">=7.2.5",
  6938. "symfony/security-core": "^4.4|^5.0"
  6939. },
  6940. "conflict": {
  6941. "symfony/http-foundation": "<4.4"
  6942. },
  6943. "require-dev": {
  6944. "symfony/http-foundation": "^4.4|^5.0"
  6945. },
  6946. "suggest": {
  6947. "symfony/http-foundation": "For using the class SessionTokenStorage."
  6948. },
  6949. "type": "library",
  6950. "extra": {
  6951. "branch-alias": {
  6952. "dev-master": "5.1-dev"
  6953. }
  6954. },
  6955. "autoload": {
  6956. "psr-4": {
  6957. "Symfony\\Component\\Security\\Csrf\\": ""
  6958. },
  6959. "exclude-from-classmap": [
  6960. "/Tests/"
  6961. ]
  6962. },
  6963. "notification-url": "https://packagist.org/downloads/",
  6964. "license": [
  6965. "MIT"
  6966. ],
  6967. "authors": [
  6968. {
  6969. "name": "Fabien Potencier",
  6970. "email": "fabien@symfony.com"
  6971. },
  6972. {
  6973. "name": "Symfony Community",
  6974. "homepage": "https://symfony.com/contributors"
  6975. }
  6976. ],
  6977. "description": "Symfony Security Component - CSRF Library",
  6978. "homepage": "https://symfony.com",
  6979. "funding": [
  6980. {
  6981. "url": "https://symfony.com/sponsor",
  6982. "type": "custom"
  6983. },
  6984. {
  6985. "url": "https://github.com/fabpot",
  6986. "type": "github"
  6987. },
  6988. {
  6989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6990. "type": "tidelift"
  6991. }
  6992. ],
  6993. "time": "2020-09-02T16:23:27+00:00"
  6994. },
  6995. {
  6996. "name": "symfony/security-guard",
  6997. "version": "v5.1.7",
  6998. "source": {
  6999. "type": "git",
  7000. "url": "https://github.com/symfony/security-guard.git",
  7001. "reference": "85c368be963e9f0df9e93d830f966fc0af531703"
  7002. },
  7003. "dist": {
  7004. "type": "zip",
  7005. "url": "https://api.github.com/repos/symfony/security-guard/zipball/85c368be963e9f0df9e93d830f966fc0af531703",
  7006. "reference": "85c368be963e9f0df9e93d830f966fc0af531703",
  7007. "shasum": ""
  7008. },
  7009. "require": {
  7010. "php": ">=7.2.5",
  7011. "symfony/polyfill-php80": "^1.15",
  7012. "symfony/security-core": "^5.0",
  7013. "symfony/security-http": "^4.4.1|^5.0.1"
  7014. },
  7015. "require-dev": {
  7016. "psr/log": "~1.0"
  7017. },
  7018. "type": "library",
  7019. "extra": {
  7020. "branch-alias": {
  7021. "dev-master": "5.1-dev"
  7022. }
  7023. },
  7024. "autoload": {
  7025. "psr-4": {
  7026. "Symfony\\Component\\Security\\Guard\\": ""
  7027. },
  7028. "exclude-from-classmap": [
  7029. "/Tests/"
  7030. ]
  7031. },
  7032. "notification-url": "https://packagist.org/downloads/",
  7033. "license": [
  7034. "MIT"
  7035. ],
  7036. "authors": [
  7037. {
  7038. "name": "Fabien Potencier",
  7039. "email": "fabien@symfony.com"
  7040. },
  7041. {
  7042. "name": "Symfony Community",
  7043. "homepage": "https://symfony.com/contributors"
  7044. }
  7045. ],
  7046. "description": "Symfony Security Component - Guard",
  7047. "homepage": "https://symfony.com",
  7048. "funding": [
  7049. {
  7050. "url": "https://symfony.com/sponsor",
  7051. "type": "custom"
  7052. },
  7053. {
  7054. "url": "https://github.com/fabpot",
  7055. "type": "github"
  7056. },
  7057. {
  7058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7059. "type": "tidelift"
  7060. }
  7061. ],
  7062. "time": "2020-05-20T17:43:50+00:00"
  7063. },
  7064. {
  7065. "name": "symfony/security-http",
  7066. "version": "v5.1.7",
  7067. "source": {
  7068. "type": "git",
  7069. "url": "https://github.com/symfony/security-http.git",
  7070. "reference": "22d653f2b407794f6a81cc1a76aa617e65ad6d86"
  7071. },
  7072. "dist": {
  7073. "type": "zip",
  7074. "url": "https://api.github.com/repos/symfony/security-http/zipball/22d653f2b407794f6a81cc1a76aa617e65ad6d86",
  7075. "reference": "22d653f2b407794f6a81cc1a76aa617e65ad6d86",
  7076. "shasum": ""
  7077. },
  7078. "require": {
  7079. "php": ">=7.2.5",
  7080. "symfony/deprecation-contracts": "^2.1",
  7081. "symfony/http-foundation": "^4.4.7|^5.0.7",
  7082. "symfony/http-kernel": "^4.4|^5.0",
  7083. "symfony/polyfill-php80": "^1.15",
  7084. "symfony/property-access": "^4.4|^5.0",
  7085. "symfony/security-core": "^5.1"
  7086. },
  7087. "conflict": {
  7088. "symfony/event-dispatcher": "<4.3",
  7089. "symfony/security-csrf": "<4.4"
  7090. },
  7091. "require-dev": {
  7092. "psr/log": "~1.0",
  7093. "symfony/routing": "^4.4|^5.0",
  7094. "symfony/security-csrf": "^4.4|^5.0"
  7095. },
  7096. "suggest": {
  7097. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  7098. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  7099. },
  7100. "type": "library",
  7101. "extra": {
  7102. "branch-alias": {
  7103. "dev-master": "5.1-dev"
  7104. }
  7105. },
  7106. "autoload": {
  7107. "psr-4": {
  7108. "Symfony\\Component\\Security\\Http\\": ""
  7109. },
  7110. "exclude-from-classmap": [
  7111. "/Tests/"
  7112. ]
  7113. },
  7114. "notification-url": "https://packagist.org/downloads/",
  7115. "license": [
  7116. "MIT"
  7117. ],
  7118. "authors": [
  7119. {
  7120. "name": "Fabien Potencier",
  7121. "email": "fabien@symfony.com"
  7122. },
  7123. {
  7124. "name": "Symfony Community",
  7125. "homepage": "https://symfony.com/contributors"
  7126. }
  7127. ],
  7128. "description": "Symfony Security Component - HTTP Integration",
  7129. "homepage": "https://symfony.com",
  7130. "funding": [
  7131. {
  7132. "url": "https://symfony.com/sponsor",
  7133. "type": "custom"
  7134. },
  7135. {
  7136. "url": "https://github.com/fabpot",
  7137. "type": "github"
  7138. },
  7139. {
  7140. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7141. "type": "tidelift"
  7142. }
  7143. ],
  7144. "time": "2020-10-03T13:02:03+00:00"
  7145. },
  7146. {
  7147. "name": "symfony/serializer",
  7148. "version": "v5.1.7",
  7149. "source": {
  7150. "type": "git",
  7151. "url": "https://github.com/symfony/serializer.git",
  7152. "reference": "6b673b802dabd2bcf7cab05d04d2d8ef8891b952"
  7153. },
  7154. "dist": {
  7155. "type": "zip",
  7156. "url": "https://api.github.com/repos/symfony/serializer/zipball/6b673b802dabd2bcf7cab05d04d2d8ef8891b952",
  7157. "reference": "6b673b802dabd2bcf7cab05d04d2d8ef8891b952",
  7158. "shasum": ""
  7159. },
  7160. "require": {
  7161. "php": ">=7.2.5",
  7162. "symfony/polyfill-ctype": "~1.8",
  7163. "symfony/polyfill-php80": "^1.15"
  7164. },
  7165. "conflict": {
  7166. "phpdocumentor/type-resolver": "<0.2.1",
  7167. "symfony/dependency-injection": "<4.4",
  7168. "symfony/property-access": "<4.4",
  7169. "symfony/property-info": "<4.4",
  7170. "symfony/yaml": "<4.4"
  7171. },
  7172. "require-dev": {
  7173. "doctrine/annotations": "~1.0",
  7174. "doctrine/cache": "~1.0",
  7175. "phpdocumentor/reflection-docblock": "^3.2|^4.0",
  7176. "symfony/cache": "^4.4|^5.0",
  7177. "symfony/config": "^4.4|^5.0",
  7178. "symfony/dependency-injection": "^4.4|^5.0",
  7179. "symfony/error-handler": "^4.4|^5.0",
  7180. "symfony/http-foundation": "^4.4|^5.0",
  7181. "symfony/mime": "^4.4|^5.0",
  7182. "symfony/property-access": "^4.4|^5.0",
  7183. "symfony/property-info": "^4.4|^5.0",
  7184. "symfony/validator": "^4.4|^5.0",
  7185. "symfony/yaml": "^4.4|^5.0"
  7186. },
  7187. "suggest": {
  7188. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  7189. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  7190. "psr/cache-implementation": "For using the metadata cache.",
  7191. "symfony/config": "For using the XML mapping loader.",
  7192. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  7193. "symfony/property-access": "For using the ObjectNormalizer.",
  7194. "symfony/property-info": "To deserialize relations.",
  7195. "symfony/yaml": "For using the default YAML mapping loader."
  7196. },
  7197. "type": "library",
  7198. "extra": {
  7199. "branch-alias": {
  7200. "dev-master": "5.1-dev"
  7201. }
  7202. },
  7203. "autoload": {
  7204. "psr-4": {
  7205. "Symfony\\Component\\Serializer\\": ""
  7206. },
  7207. "exclude-from-classmap": [
  7208. "/Tests/"
  7209. ]
  7210. },
  7211. "notification-url": "https://packagist.org/downloads/",
  7212. "license": [
  7213. "MIT"
  7214. ],
  7215. "authors": [
  7216. {
  7217. "name": "Fabien Potencier",
  7218. "email": "fabien@symfony.com"
  7219. },
  7220. {
  7221. "name": "Symfony Community",
  7222. "homepage": "https://symfony.com/contributors"
  7223. }
  7224. ],
  7225. "description": "Symfony Serializer Component",
  7226. "homepage": "https://symfony.com",
  7227. "funding": [
  7228. {
  7229. "url": "https://symfony.com/sponsor",
  7230. "type": "custom"
  7231. },
  7232. {
  7233. "url": "https://github.com/fabpot",
  7234. "type": "github"
  7235. },
  7236. {
  7237. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7238. "type": "tidelift"
  7239. }
  7240. ],
  7241. "time": "2020-10-03T13:58:17+00:00"
  7242. },
  7243. {
  7244. "name": "symfony/serializer-pack",
  7245. "version": "v1.0.4",
  7246. "source": {
  7247. "type": "git",
  7248. "url": "https://github.com/symfony/serializer-pack.git",
  7249. "reference": "61173947057d5e1bf1c79e2a6ab6a8430be0602e"
  7250. },
  7251. "dist": {
  7252. "type": "zip",
  7253. "url": "https://api.github.com/repos/symfony/serializer-pack/zipball/61173947057d5e1bf1c79e2a6ab6a8430be0602e",
  7254. "reference": "61173947057d5e1bf1c79e2a6ab6a8430be0602e",
  7255. "shasum": ""
  7256. },
  7257. "require": {
  7258. "doctrine/annotations": "^1.0",
  7259. "phpdocumentor/reflection-docblock": "*",
  7260. "symfony/property-access": "*",
  7261. "symfony/property-info": "*",
  7262. "symfony/serializer": "*"
  7263. },
  7264. "type": "symfony-pack",
  7265. "notification-url": "https://packagist.org/downloads/",
  7266. "license": [
  7267. "MIT"
  7268. ],
  7269. "description": "A pack for the Symfony serializer",
  7270. "funding": [
  7271. {
  7272. "url": "https://symfony.com/sponsor",
  7273. "type": "custom"
  7274. },
  7275. {
  7276. "url": "https://github.com/fabpot",
  7277. "type": "github"
  7278. },
  7279. {
  7280. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7281. "type": "tidelift"
  7282. }
  7283. ],
  7284. "time": "2020-10-19T08:52:16+00:00"
  7285. },
  7286. {
  7287. "name": "symfony/service-contracts",
  7288. "version": "v2.2.0",
  7289. "source": {
  7290. "type": "git",
  7291. "url": "https://github.com/symfony/service-contracts.git",
  7292. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  7293. },
  7294. "dist": {
  7295. "type": "zip",
  7296. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  7297. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  7298. "shasum": ""
  7299. },
  7300. "require": {
  7301. "php": ">=7.2.5",
  7302. "psr/container": "^1.0"
  7303. },
  7304. "suggest": {
  7305. "symfony/service-implementation": ""
  7306. },
  7307. "type": "library",
  7308. "extra": {
  7309. "branch-alias": {
  7310. "dev-master": "2.2-dev"
  7311. },
  7312. "thanks": {
  7313. "name": "symfony/contracts",
  7314. "url": "https://github.com/symfony/contracts"
  7315. }
  7316. },
  7317. "autoload": {
  7318. "psr-4": {
  7319. "Symfony\\Contracts\\Service\\": ""
  7320. }
  7321. },
  7322. "notification-url": "https://packagist.org/downloads/",
  7323. "license": [
  7324. "MIT"
  7325. ],
  7326. "authors": [
  7327. {
  7328. "name": "Nicolas Grekas",
  7329. "email": "p@tchwork.com"
  7330. },
  7331. {
  7332. "name": "Symfony Community",
  7333. "homepage": "https://symfony.com/contributors"
  7334. }
  7335. ],
  7336. "description": "Generic abstractions related to writing services",
  7337. "homepage": "https://symfony.com",
  7338. "keywords": [
  7339. "abstractions",
  7340. "contracts",
  7341. "decoupling",
  7342. "interfaces",
  7343. "interoperability",
  7344. "standards"
  7345. ],
  7346. "funding": [
  7347. {
  7348. "url": "https://symfony.com/sponsor",
  7349. "type": "custom"
  7350. },
  7351. {
  7352. "url": "https://github.com/fabpot",
  7353. "type": "github"
  7354. },
  7355. {
  7356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7357. "type": "tidelift"
  7358. }
  7359. ],
  7360. "time": "2020-09-07T11:33:47+00:00"
  7361. },
  7362. {
  7363. "name": "symfony/stopwatch",
  7364. "version": "v5.1.7",
  7365. "source": {
  7366. "type": "git",
  7367. "url": "https://github.com/symfony/stopwatch.git",
  7368. "reference": "0f7c58cf81dbb5dd67d423a89d577524a2ec0323"
  7369. },
  7370. "dist": {
  7371. "type": "zip",
  7372. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/0f7c58cf81dbb5dd67d423a89d577524a2ec0323",
  7373. "reference": "0f7c58cf81dbb5dd67d423a89d577524a2ec0323",
  7374. "shasum": ""
  7375. },
  7376. "require": {
  7377. "php": ">=7.2.5",
  7378. "symfony/service-contracts": "^1.0|^2"
  7379. },
  7380. "type": "library",
  7381. "extra": {
  7382. "branch-alias": {
  7383. "dev-master": "5.1-dev"
  7384. }
  7385. },
  7386. "autoload": {
  7387. "psr-4": {
  7388. "Symfony\\Component\\Stopwatch\\": ""
  7389. },
  7390. "exclude-from-classmap": [
  7391. "/Tests/"
  7392. ]
  7393. },
  7394. "notification-url": "https://packagist.org/downloads/",
  7395. "license": [
  7396. "MIT"
  7397. ],
  7398. "authors": [
  7399. {
  7400. "name": "Fabien Potencier",
  7401. "email": "fabien@symfony.com"
  7402. },
  7403. {
  7404. "name": "Symfony Community",
  7405. "homepage": "https://symfony.com/contributors"
  7406. }
  7407. ],
  7408. "description": "Symfony Stopwatch Component",
  7409. "homepage": "https://symfony.com",
  7410. "funding": [
  7411. {
  7412. "url": "https://symfony.com/sponsor",
  7413. "type": "custom"
  7414. },
  7415. {
  7416. "url": "https://github.com/fabpot",
  7417. "type": "github"
  7418. },
  7419. {
  7420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7421. "type": "tidelift"
  7422. }
  7423. ],
  7424. "time": "2020-05-20T17:43:50+00:00"
  7425. },
  7426. {
  7427. "name": "symfony/string",
  7428. "version": "v5.1.7",
  7429. "source": {
  7430. "type": "git",
  7431. "url": "https://github.com/symfony/string.git",
  7432. "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e"
  7433. },
  7434. "dist": {
  7435. "type": "zip",
  7436. "url": "https://api.github.com/repos/symfony/string/zipball/4a9afe9d07bac506f75bcee8ed3ce76da5a9343e",
  7437. "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e",
  7438. "shasum": ""
  7439. },
  7440. "require": {
  7441. "php": ">=7.2.5",
  7442. "symfony/polyfill-ctype": "~1.8",
  7443. "symfony/polyfill-intl-grapheme": "~1.0",
  7444. "symfony/polyfill-intl-normalizer": "~1.0",
  7445. "symfony/polyfill-mbstring": "~1.0",
  7446. "symfony/polyfill-php80": "~1.15"
  7447. },
  7448. "require-dev": {
  7449. "symfony/error-handler": "^4.4|^5.0",
  7450. "symfony/http-client": "^4.4|^5.0",
  7451. "symfony/translation-contracts": "^1.1|^2",
  7452. "symfony/var-exporter": "^4.4|^5.0"
  7453. },
  7454. "type": "library",
  7455. "extra": {
  7456. "branch-alias": {
  7457. "dev-master": "5.1-dev"
  7458. }
  7459. },
  7460. "autoload": {
  7461. "psr-4": {
  7462. "Symfony\\Component\\String\\": ""
  7463. },
  7464. "files": [
  7465. "Resources/functions.php"
  7466. ],
  7467. "exclude-from-classmap": [
  7468. "/Tests/"
  7469. ]
  7470. },
  7471. "notification-url": "https://packagist.org/downloads/",
  7472. "license": [
  7473. "MIT"
  7474. ],
  7475. "authors": [
  7476. {
  7477. "name": "Nicolas Grekas",
  7478. "email": "p@tchwork.com"
  7479. },
  7480. {
  7481. "name": "Symfony Community",
  7482. "homepage": "https://symfony.com/contributors"
  7483. }
  7484. ],
  7485. "description": "Symfony String component",
  7486. "homepage": "https://symfony.com",
  7487. "keywords": [
  7488. "grapheme",
  7489. "i18n",
  7490. "string",
  7491. "unicode",
  7492. "utf-8",
  7493. "utf8"
  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-15T12:23:47+00:00"
  7510. },
  7511. {
  7512. "name": "symfony/translation",
  7513. "version": "v5.1.7",
  7514. "source": {
  7515. "type": "git",
  7516. "url": "https://github.com/symfony/translation.git",
  7517. "reference": "e3cdd5119b1b5bf0698c351b8ee20fb5a4ea248b"
  7518. },
  7519. "dist": {
  7520. "type": "zip",
  7521. "url": "https://api.github.com/repos/symfony/translation/zipball/e3cdd5119b1b5bf0698c351b8ee20fb5a4ea248b",
  7522. "reference": "e3cdd5119b1b5bf0698c351b8ee20fb5a4ea248b",
  7523. "shasum": ""
  7524. },
  7525. "require": {
  7526. "php": ">=7.2.5",
  7527. "symfony/polyfill-mbstring": "~1.0",
  7528. "symfony/polyfill-php80": "^1.15",
  7529. "symfony/translation-contracts": "^2"
  7530. },
  7531. "conflict": {
  7532. "symfony/config": "<4.4",
  7533. "symfony/dependency-injection": "<5.0",
  7534. "symfony/http-kernel": "<5.0",
  7535. "symfony/twig-bundle": "<5.0",
  7536. "symfony/yaml": "<4.4"
  7537. },
  7538. "provide": {
  7539. "symfony/translation-implementation": "2.0"
  7540. },
  7541. "require-dev": {
  7542. "psr/log": "~1.0",
  7543. "symfony/config": "^4.4|^5.0",
  7544. "symfony/console": "^4.4|^5.0",
  7545. "symfony/dependency-injection": "^5.0",
  7546. "symfony/finder": "^4.4|^5.0",
  7547. "symfony/http-kernel": "^5.0",
  7548. "symfony/intl": "^4.4|^5.0",
  7549. "symfony/service-contracts": "^1.1.2|^2",
  7550. "symfony/yaml": "^4.4|^5.0"
  7551. },
  7552. "suggest": {
  7553. "psr/log-implementation": "To use logging capability in translator",
  7554. "symfony/config": "",
  7555. "symfony/yaml": ""
  7556. },
  7557. "type": "library",
  7558. "extra": {
  7559. "branch-alias": {
  7560. "dev-master": "5.1-dev"
  7561. }
  7562. },
  7563. "autoload": {
  7564. "psr-4": {
  7565. "Symfony\\Component\\Translation\\": ""
  7566. },
  7567. "exclude-from-classmap": [
  7568. "/Tests/"
  7569. ]
  7570. },
  7571. "notification-url": "https://packagist.org/downloads/",
  7572. "license": [
  7573. "MIT"
  7574. ],
  7575. "authors": [
  7576. {
  7577. "name": "Fabien Potencier",
  7578. "email": "fabien@symfony.com"
  7579. },
  7580. {
  7581. "name": "Symfony Community",
  7582. "homepage": "https://symfony.com/contributors"
  7583. }
  7584. ],
  7585. "description": "Symfony Translation Component",
  7586. "homepage": "https://symfony.com",
  7587. "funding": [
  7588. {
  7589. "url": "https://symfony.com/sponsor",
  7590. "type": "custom"
  7591. },
  7592. {
  7593. "url": "https://github.com/fabpot",
  7594. "type": "github"
  7595. },
  7596. {
  7597. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7598. "type": "tidelift"
  7599. }
  7600. ],
  7601. "time": "2020-09-27T03:44:28+00:00"
  7602. },
  7603. {
  7604. "name": "symfony/translation-contracts",
  7605. "version": "v2.3.0",
  7606. "source": {
  7607. "type": "git",
  7608. "url": "https://github.com/symfony/translation-contracts.git",
  7609. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  7610. },
  7611. "dist": {
  7612. "type": "zip",
  7613. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  7614. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  7615. "shasum": ""
  7616. },
  7617. "require": {
  7618. "php": ">=7.2.5"
  7619. },
  7620. "suggest": {
  7621. "symfony/translation-implementation": ""
  7622. },
  7623. "type": "library",
  7624. "extra": {
  7625. "branch-alias": {
  7626. "dev-master": "2.3-dev"
  7627. },
  7628. "thanks": {
  7629. "name": "symfony/contracts",
  7630. "url": "https://github.com/symfony/contracts"
  7631. }
  7632. },
  7633. "autoload": {
  7634. "psr-4": {
  7635. "Symfony\\Contracts\\Translation\\": ""
  7636. }
  7637. },
  7638. "notification-url": "https://packagist.org/downloads/",
  7639. "license": [
  7640. "MIT"
  7641. ],
  7642. "authors": [
  7643. {
  7644. "name": "Nicolas Grekas",
  7645. "email": "p@tchwork.com"
  7646. },
  7647. {
  7648. "name": "Symfony Community",
  7649. "homepage": "https://symfony.com/contributors"
  7650. }
  7651. ],
  7652. "description": "Generic abstractions related to translation",
  7653. "homepage": "https://symfony.com",
  7654. "keywords": [
  7655. "abstractions",
  7656. "contracts",
  7657. "decoupling",
  7658. "interfaces",
  7659. "interoperability",
  7660. "standards"
  7661. ],
  7662. "funding": [
  7663. {
  7664. "url": "https://symfony.com/sponsor",
  7665. "type": "custom"
  7666. },
  7667. {
  7668. "url": "https://github.com/fabpot",
  7669. "type": "github"
  7670. },
  7671. {
  7672. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7673. "type": "tidelift"
  7674. }
  7675. ],
  7676. "time": "2020-09-28T13:05:58+00:00"
  7677. },
  7678. {
  7679. "name": "symfony/twig-bridge",
  7680. "version": "v5.1.7",
  7681. "source": {
  7682. "type": "git",
  7683. "url": "https://github.com/symfony/twig-bridge.git",
  7684. "reference": "ad3c3e89353749dcead9ee25388177ebbb4569a1"
  7685. },
  7686. "dist": {
  7687. "type": "zip",
  7688. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/ad3c3e89353749dcead9ee25388177ebbb4569a1",
  7689. "reference": "ad3c3e89353749dcead9ee25388177ebbb4569a1",
  7690. "shasum": ""
  7691. },
  7692. "require": {
  7693. "php": ">=7.2.5",
  7694. "symfony/polyfill-php80": "^1.15",
  7695. "symfony/translation-contracts": "^1.1|^2",
  7696. "twig/twig": "^2.10|^3.0"
  7697. },
  7698. "conflict": {
  7699. "symfony/console": "<4.4",
  7700. "symfony/form": "<5.1",
  7701. "symfony/http-foundation": "<4.4",
  7702. "symfony/http-kernel": "<4.4",
  7703. "symfony/translation": "<5.0",
  7704. "symfony/workflow": "<4.4"
  7705. },
  7706. "require-dev": {
  7707. "egulias/email-validator": "^2.1.10",
  7708. "symfony/asset": "^4.4|^5.0",
  7709. "symfony/console": "^4.4|^5.0",
  7710. "symfony/dependency-injection": "^4.4|^5.0",
  7711. "symfony/expression-language": "^4.4|^5.0",
  7712. "symfony/finder": "^4.4|^5.0",
  7713. "symfony/form": "^5.1",
  7714. "symfony/http-foundation": "^4.4|^5.0",
  7715. "symfony/http-kernel": "^4.4|^5.0",
  7716. "symfony/mime": "^4.4|^5.0",
  7717. "symfony/polyfill-intl-icu": "~1.0",
  7718. "symfony/routing": "^4.4|^5.0",
  7719. "symfony/security-acl": "^2.8|^3.0",
  7720. "symfony/security-core": "^4.4|^5.0",
  7721. "symfony/security-csrf": "^4.4|^5.0",
  7722. "symfony/security-http": "^4.4|^5.0",
  7723. "symfony/stopwatch": "^4.4|^5.0",
  7724. "symfony/translation": "^5.0",
  7725. "symfony/web-link": "^4.4|^5.0",
  7726. "symfony/workflow": "^4.4|^5.0",
  7727. "symfony/yaml": "^4.4|^5.0",
  7728. "twig/cssinliner-extra": "^2.12",
  7729. "twig/inky-extra": "^2.12",
  7730. "twig/markdown-extra": "^2.12"
  7731. },
  7732. "suggest": {
  7733. "symfony/asset": "For using the AssetExtension",
  7734. "symfony/expression-language": "For using the ExpressionExtension",
  7735. "symfony/finder": "",
  7736. "symfony/form": "For using the FormExtension",
  7737. "symfony/http-kernel": "For using the HttpKernelExtension",
  7738. "symfony/routing": "For using the RoutingExtension",
  7739. "symfony/security-core": "For using the SecurityExtension",
  7740. "symfony/security-csrf": "For using the CsrfExtension",
  7741. "symfony/security-http": "For using the LogoutUrlExtension",
  7742. "symfony/stopwatch": "For using the StopwatchExtension",
  7743. "symfony/translation": "For using the TranslationExtension",
  7744. "symfony/var-dumper": "For using the DumpExtension",
  7745. "symfony/web-link": "For using the WebLinkExtension",
  7746. "symfony/yaml": "For using the YamlExtension"
  7747. },
  7748. "type": "symfony-bridge",
  7749. "extra": {
  7750. "branch-alias": {
  7751. "dev-master": "5.1-dev"
  7752. }
  7753. },
  7754. "autoload": {
  7755. "psr-4": {
  7756. "Symfony\\Bridge\\Twig\\": ""
  7757. },
  7758. "exclude-from-classmap": [
  7759. "/Tests/"
  7760. ]
  7761. },
  7762. "notification-url": "https://packagist.org/downloads/",
  7763. "license": [
  7764. "MIT"
  7765. ],
  7766. "authors": [
  7767. {
  7768. "name": "Fabien Potencier",
  7769. "email": "fabien@symfony.com"
  7770. },
  7771. {
  7772. "name": "Symfony Community",
  7773. "homepage": "https://symfony.com/contributors"
  7774. }
  7775. ],
  7776. "description": "Symfony Twig Bridge",
  7777. "homepage": "https://symfony.com",
  7778. "funding": [
  7779. {
  7780. "url": "https://symfony.com/sponsor",
  7781. "type": "custom"
  7782. },
  7783. {
  7784. "url": "https://github.com/fabpot",
  7785. "type": "github"
  7786. },
  7787. {
  7788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7789. "type": "tidelift"
  7790. }
  7791. ],
  7792. "time": "2020-09-02T16:23:27+00:00"
  7793. },
  7794. {
  7795. "name": "symfony/twig-bundle",
  7796. "version": "v5.1.7",
  7797. "source": {
  7798. "type": "git",
  7799. "url": "https://github.com/symfony/twig-bundle.git",
  7800. "reference": "8898ef8aea8fa48638e15ce00c7c6318ce570ce1"
  7801. },
  7802. "dist": {
  7803. "type": "zip",
  7804. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/8898ef8aea8fa48638e15ce00c7c6318ce570ce1",
  7805. "reference": "8898ef8aea8fa48638e15ce00c7c6318ce570ce1",
  7806. "shasum": ""
  7807. },
  7808. "require": {
  7809. "php": ">=7.2.5",
  7810. "symfony/config": "^4.4|^5.0",
  7811. "symfony/http-foundation": "^4.4|^5.0",
  7812. "symfony/http-kernel": "^5.0",
  7813. "symfony/polyfill-ctype": "~1.8",
  7814. "symfony/twig-bridge": "^5.0",
  7815. "twig/twig": "^2.10|^3.0"
  7816. },
  7817. "conflict": {
  7818. "symfony/dependency-injection": "<4.4",
  7819. "symfony/framework-bundle": "<5.0",
  7820. "symfony/translation": "<5.0"
  7821. },
  7822. "require-dev": {
  7823. "doctrine/annotations": "~1.7",
  7824. "doctrine/cache": "~1.0",
  7825. "symfony/asset": "^4.4|^5.0",
  7826. "symfony/dependency-injection": "^4.4|^5.0",
  7827. "symfony/expression-language": "^4.4|^5.0",
  7828. "symfony/finder": "^4.4|^5.0",
  7829. "symfony/form": "^4.4|^5.0",
  7830. "symfony/framework-bundle": "^5.0",
  7831. "symfony/routing": "^4.4|^5.0",
  7832. "symfony/stopwatch": "^4.4|^5.0",
  7833. "symfony/translation": "^5.0",
  7834. "symfony/web-link": "^4.4|^5.0",
  7835. "symfony/yaml": "^4.4|^5.0"
  7836. },
  7837. "type": "symfony-bundle",
  7838. "extra": {
  7839. "branch-alias": {
  7840. "dev-master": "5.1-dev"
  7841. }
  7842. },
  7843. "autoload": {
  7844. "psr-4": {
  7845. "Symfony\\Bundle\\TwigBundle\\": ""
  7846. },
  7847. "exclude-from-classmap": [
  7848. "/Tests/"
  7849. ]
  7850. },
  7851. "notification-url": "https://packagist.org/downloads/",
  7852. "license": [
  7853. "MIT"
  7854. ],
  7855. "authors": [
  7856. {
  7857. "name": "Fabien Potencier",
  7858. "email": "fabien@symfony.com"
  7859. },
  7860. {
  7861. "name": "Symfony Community",
  7862. "homepage": "https://symfony.com/contributors"
  7863. }
  7864. ],
  7865. "description": "Symfony TwigBundle",
  7866. "homepage": "https://symfony.com",
  7867. "funding": [
  7868. {
  7869. "url": "https://symfony.com/sponsor",
  7870. "type": "custom"
  7871. },
  7872. {
  7873. "url": "https://github.com/fabpot",
  7874. "type": "github"
  7875. },
  7876. {
  7877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7878. "type": "tidelift"
  7879. }
  7880. ],
  7881. "time": "2020-05-20T17:43:50+00:00"
  7882. },
  7883. {
  7884. "name": "symfony/twig-pack",
  7885. "version": "v1.0.2",
  7886. "source": {
  7887. "type": "git",
  7888. "url": "https://github.com/symfony/twig-pack.git",
  7889. "reference": "08a73e833e07921c464336deb7630f93e85ef930"
  7890. },
  7891. "dist": {
  7892. "type": "zip",
  7893. "url": "https://api.github.com/repos/symfony/twig-pack/zipball/08a73e833e07921c464336deb7630f93e85ef930",
  7894. "reference": "08a73e833e07921c464336deb7630f93e85ef930",
  7895. "shasum": ""
  7896. },
  7897. "require": {
  7898. "symfony/twig-bundle": "*",
  7899. "twig/extra-bundle": "^2.12|^3.0",
  7900. "twig/twig": "^2.12|^3.0"
  7901. },
  7902. "type": "symfony-pack",
  7903. "notification-url": "https://packagist.org/downloads/",
  7904. "license": [
  7905. "MIT"
  7906. ],
  7907. "description": "A Twig pack for Symfony projects",
  7908. "funding": [
  7909. {
  7910. "url": "https://symfony.com/sponsor",
  7911. "type": "custom"
  7912. },
  7913. {
  7914. "url": "https://github.com/fabpot",
  7915. "type": "github"
  7916. },
  7917. {
  7918. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7919. "type": "tidelift"
  7920. }
  7921. ],
  7922. "time": "2020-10-19T08:46:41+00:00"
  7923. },
  7924. {
  7925. "name": "symfony/validator",
  7926. "version": "v5.1.7",
  7927. "source": {
  7928. "type": "git",
  7929. "url": "https://github.com/symfony/validator.git",
  7930. "reference": "30f946a6d12518b806a785a4ba83c820f6f807ec"
  7931. },
  7932. "dist": {
  7933. "type": "zip",
  7934. "url": "https://api.github.com/repos/symfony/validator/zipball/30f946a6d12518b806a785a4ba83c820f6f807ec",
  7935. "reference": "30f946a6d12518b806a785a4ba83c820f6f807ec",
  7936. "shasum": ""
  7937. },
  7938. "require": {
  7939. "php": ">=7.2.5",
  7940. "symfony/deprecation-contracts": "^2.0",
  7941. "symfony/polyfill-ctype": "~1.8",
  7942. "symfony/polyfill-mbstring": "~1.0",
  7943. "symfony/polyfill-php80": "^1.15",
  7944. "symfony/translation-contracts": "^1.1|^2"
  7945. },
  7946. "conflict": {
  7947. "doctrine/lexer": "<1.0.2",
  7948. "phpunit/phpunit": "<5.4.3",
  7949. "symfony/dependency-injection": "<4.4",
  7950. "symfony/expression-language": "<5.1",
  7951. "symfony/http-kernel": "<4.4",
  7952. "symfony/intl": "<4.4",
  7953. "symfony/translation": "<4.4",
  7954. "symfony/yaml": "<4.4"
  7955. },
  7956. "require-dev": {
  7957. "doctrine/annotations": "~1.7",
  7958. "doctrine/cache": "~1.0",
  7959. "egulias/email-validator": "^2.1.10",
  7960. "symfony/cache": "^4.4|^5.0",
  7961. "symfony/config": "^4.4|^5.0",
  7962. "symfony/dependency-injection": "^4.4|^5.0",
  7963. "symfony/expression-language": "^5.1",
  7964. "symfony/http-client": "^4.4|^5.0",
  7965. "symfony/http-foundation": "^4.4|^5.0",
  7966. "symfony/http-kernel": "^4.4|^5.0",
  7967. "symfony/intl": "^4.4|^5.0",
  7968. "symfony/mime": "^4.4|^5.0",
  7969. "symfony/phpunit-bridge": "^5.1.1",
  7970. "symfony/property-access": "^4.4|^5.0",
  7971. "symfony/property-info": "^4.4|^5.0",
  7972. "symfony/translation": "^4.4|^5.0",
  7973. "symfony/yaml": "^4.4|^5.0"
  7974. },
  7975. "suggest": {
  7976. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  7977. "doctrine/cache": "For using the default cached annotation reader.",
  7978. "egulias/email-validator": "Strict (RFC compliant) email validation",
  7979. "psr/cache-implementation": "For using the mapping cache.",
  7980. "symfony/config": "",
  7981. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  7982. "symfony/http-foundation": "",
  7983. "symfony/intl": "",
  7984. "symfony/property-access": "For accessing properties within comparison constraints",
  7985. "symfony/property-info": "To automatically add NotNull and Type constraints",
  7986. "symfony/translation": "For translating validation errors.",
  7987. "symfony/yaml": ""
  7988. },
  7989. "type": "library",
  7990. "extra": {
  7991. "branch-alias": {
  7992. "dev-master": "5.1-dev"
  7993. }
  7994. },
  7995. "autoload": {
  7996. "psr-4": {
  7997. "Symfony\\Component\\Validator\\": ""
  7998. },
  7999. "exclude-from-classmap": [
  8000. "/Tests/"
  8001. ]
  8002. },
  8003. "notification-url": "https://packagist.org/downloads/",
  8004. "license": [
  8005. "MIT"
  8006. ],
  8007. "authors": [
  8008. {
  8009. "name": "Fabien Potencier",
  8010. "email": "fabien@symfony.com"
  8011. },
  8012. {
  8013. "name": "Symfony Community",
  8014. "homepage": "https://symfony.com/contributors"
  8015. }
  8016. ],
  8017. "description": "Symfony Validator Component",
  8018. "homepage": "https://symfony.com",
  8019. "funding": [
  8020. {
  8021. "url": "https://symfony.com/sponsor",
  8022. "type": "custom"
  8023. },
  8024. {
  8025. "url": "https://github.com/fabpot",
  8026. "type": "github"
  8027. },
  8028. {
  8029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8030. "type": "tidelift"
  8031. }
  8032. ],
  8033. "time": "2020-09-27T03:44:28+00:00"
  8034. },
  8035. {
  8036. "name": "symfony/var-dumper",
  8037. "version": "v5.1.7",
  8038. "source": {
  8039. "type": "git",
  8040. "url": "https://github.com/symfony/var-dumper.git",
  8041. "reference": "c976c115a0d788808f7e71834c8eb0844f678d02"
  8042. },
  8043. "dist": {
  8044. "type": "zip",
  8045. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c976c115a0d788808f7e71834c8eb0844f678d02",
  8046. "reference": "c976c115a0d788808f7e71834c8eb0844f678d02",
  8047. "shasum": ""
  8048. },
  8049. "require": {
  8050. "php": ">=7.2.5",
  8051. "symfony/polyfill-mbstring": "~1.0",
  8052. "symfony/polyfill-php80": "^1.15"
  8053. },
  8054. "conflict": {
  8055. "phpunit/phpunit": "<5.4.3",
  8056. "symfony/console": "<4.4"
  8057. },
  8058. "require-dev": {
  8059. "ext-iconv": "*",
  8060. "symfony/console": "^4.4|^5.0",
  8061. "symfony/process": "^4.4|^5.0",
  8062. "twig/twig": "^2.4|^3.0"
  8063. },
  8064. "suggest": {
  8065. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8066. "ext-intl": "To show region name in time zone dump",
  8067. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8068. },
  8069. "bin": [
  8070. "Resources/bin/var-dump-server"
  8071. ],
  8072. "type": "library",
  8073. "extra": {
  8074. "branch-alias": {
  8075. "dev-master": "5.1-dev"
  8076. }
  8077. },
  8078. "autoload": {
  8079. "files": [
  8080. "Resources/functions/dump.php"
  8081. ],
  8082. "psr-4": {
  8083. "Symfony\\Component\\VarDumper\\": ""
  8084. },
  8085. "exclude-from-classmap": [
  8086. "/Tests/"
  8087. ]
  8088. },
  8089. "notification-url": "https://packagist.org/downloads/",
  8090. "license": [
  8091. "MIT"
  8092. ],
  8093. "authors": [
  8094. {
  8095. "name": "Nicolas Grekas",
  8096. "email": "p@tchwork.com"
  8097. },
  8098. {
  8099. "name": "Symfony Community",
  8100. "homepage": "https://symfony.com/contributors"
  8101. }
  8102. ],
  8103. "description": "Symfony mechanism for exploring and dumping PHP variables",
  8104. "homepage": "https://symfony.com",
  8105. "keywords": [
  8106. "debug",
  8107. "dump"
  8108. ],
  8109. "funding": [
  8110. {
  8111. "url": "https://symfony.com/sponsor",
  8112. "type": "custom"
  8113. },
  8114. {
  8115. "url": "https://github.com/fabpot",
  8116. "type": "github"
  8117. },
  8118. {
  8119. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8120. "type": "tidelift"
  8121. }
  8122. ],
  8123. "time": "2020-09-18T14:27:32+00:00"
  8124. },
  8125. {
  8126. "name": "symfony/var-exporter",
  8127. "version": "v5.1.7",
  8128. "source": {
  8129. "type": "git",
  8130. "url": "https://github.com/symfony/var-exporter.git",
  8131. "reference": "8b858508e49beb257fd635104c3d449a8113e8fe"
  8132. },
  8133. "dist": {
  8134. "type": "zip",
  8135. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/8b858508e49beb257fd635104c3d449a8113e8fe",
  8136. "reference": "8b858508e49beb257fd635104c3d449a8113e8fe",
  8137. "shasum": ""
  8138. },
  8139. "require": {
  8140. "php": ">=7.2.5",
  8141. "symfony/polyfill-php80": "^1.15"
  8142. },
  8143. "require-dev": {
  8144. "symfony/var-dumper": "^4.4.9|^5.0.9"
  8145. },
  8146. "type": "library",
  8147. "extra": {
  8148. "branch-alias": {
  8149. "dev-master": "5.1-dev"
  8150. }
  8151. },
  8152. "autoload": {
  8153. "psr-4": {
  8154. "Symfony\\Component\\VarExporter\\": ""
  8155. },
  8156. "exclude-from-classmap": [
  8157. "/Tests/"
  8158. ]
  8159. },
  8160. "notification-url": "https://packagist.org/downloads/",
  8161. "license": [
  8162. "MIT"
  8163. ],
  8164. "authors": [
  8165. {
  8166. "name": "Nicolas Grekas",
  8167. "email": "p@tchwork.com"
  8168. },
  8169. {
  8170. "name": "Symfony Community",
  8171. "homepage": "https://symfony.com/contributors"
  8172. }
  8173. ],
  8174. "description": "A blend of var_export() + serialize() to turn any serializable data structure to plain PHP code",
  8175. "homepage": "https://symfony.com",
  8176. "keywords": [
  8177. "clone",
  8178. "construct",
  8179. "export",
  8180. "hydrate",
  8181. "instantiate",
  8182. "serialize"
  8183. ],
  8184. "funding": [
  8185. {
  8186. "url": "https://symfony.com/sponsor",
  8187. "type": "custom"
  8188. },
  8189. {
  8190. "url": "https://github.com/fabpot",
  8191. "type": "github"
  8192. },
  8193. {
  8194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8195. "type": "tidelift"
  8196. }
  8197. ],
  8198. "time": "2020-09-08T14:19:54+00:00"
  8199. },
  8200. {
  8201. "name": "symfony/web-link",
  8202. "version": "v5.1.7",
  8203. "source": {
  8204. "type": "git",
  8205. "url": "https://github.com/symfony/web-link.git",
  8206. "reference": "ba2554887e34e693e3888f23f83c72d5ce04bfb2"
  8207. },
  8208. "dist": {
  8209. "type": "zip",
  8210. "url": "https://api.github.com/repos/symfony/web-link/zipball/ba2554887e34e693e3888f23f83c72d5ce04bfb2",
  8211. "reference": "ba2554887e34e693e3888f23f83c72d5ce04bfb2",
  8212. "shasum": ""
  8213. },
  8214. "require": {
  8215. "php": ">=7.2.5",
  8216. "psr/link": "^1.0"
  8217. },
  8218. "conflict": {
  8219. "symfony/http-kernel": "<4.4"
  8220. },
  8221. "provide": {
  8222. "psr/link-implementation": "1.0"
  8223. },
  8224. "require-dev": {
  8225. "symfony/http-foundation": "^4.4|^5.0",
  8226. "symfony/http-kernel": "^4.4|^5.0"
  8227. },
  8228. "suggest": {
  8229. "symfony/http-kernel": ""
  8230. },
  8231. "type": "library",
  8232. "extra": {
  8233. "branch-alias": {
  8234. "dev-master": "5.1-dev"
  8235. }
  8236. },
  8237. "autoload": {
  8238. "psr-4": {
  8239. "Symfony\\Component\\WebLink\\": ""
  8240. },
  8241. "exclude-from-classmap": [
  8242. "/Tests/"
  8243. ]
  8244. },
  8245. "notification-url": "https://packagist.org/downloads/",
  8246. "license": [
  8247. "MIT"
  8248. ],
  8249. "authors": [
  8250. {
  8251. "name": "Kévin Dunglas",
  8252. "email": "dunglas@gmail.com"
  8253. },
  8254. {
  8255. "name": "Symfony Community",
  8256. "homepage": "https://symfony.com/contributors"
  8257. }
  8258. ],
  8259. "description": "Symfony WebLink Component",
  8260. "homepage": "https://symfony.com",
  8261. "keywords": [
  8262. "dns-prefetch",
  8263. "http",
  8264. "http2",
  8265. "link",
  8266. "performance",
  8267. "prefetch",
  8268. "preload",
  8269. "prerender",
  8270. "psr13",
  8271. "push"
  8272. ],
  8273. "funding": [
  8274. {
  8275. "url": "https://symfony.com/sponsor",
  8276. "type": "custom"
  8277. },
  8278. {
  8279. "url": "https://github.com/fabpot",
  8280. "type": "github"
  8281. },
  8282. {
  8283. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8284. "type": "tidelift"
  8285. }
  8286. ],
  8287. "time": "2020-05-28T08:20:44+00:00"
  8288. },
  8289. {
  8290. "name": "symfony/yaml",
  8291. "version": "v5.1.7",
  8292. "source": {
  8293. "type": "git",
  8294. "url": "https://github.com/symfony/yaml.git",
  8295. "reference": "e147a68cb66a8b510f4b7481fe4da5b2ab65ec6a"
  8296. },
  8297. "dist": {
  8298. "type": "zip",
  8299. "url": "https://api.github.com/repos/symfony/yaml/zipball/e147a68cb66a8b510f4b7481fe4da5b2ab65ec6a",
  8300. "reference": "e147a68cb66a8b510f4b7481fe4da5b2ab65ec6a",
  8301. "shasum": ""
  8302. },
  8303. "require": {
  8304. "php": ">=7.2.5",
  8305. "symfony/deprecation-contracts": "^2.1",
  8306. "symfony/polyfill-ctype": "~1.8"
  8307. },
  8308. "conflict": {
  8309. "symfony/console": "<4.4"
  8310. },
  8311. "require-dev": {
  8312. "symfony/console": "^4.4|^5.0"
  8313. },
  8314. "suggest": {
  8315. "symfony/console": "For validating YAML files using the lint command"
  8316. },
  8317. "bin": [
  8318. "Resources/bin/yaml-lint"
  8319. ],
  8320. "type": "library",
  8321. "extra": {
  8322. "branch-alias": {
  8323. "dev-master": "5.1-dev"
  8324. }
  8325. },
  8326. "autoload": {
  8327. "psr-4": {
  8328. "Symfony\\Component\\Yaml\\": ""
  8329. },
  8330. "exclude-from-classmap": [
  8331. "/Tests/"
  8332. ]
  8333. },
  8334. "notification-url": "https://packagist.org/downloads/",
  8335. "license": [
  8336. "MIT"
  8337. ],
  8338. "authors": [
  8339. {
  8340. "name": "Fabien Potencier",
  8341. "email": "fabien@symfony.com"
  8342. },
  8343. {
  8344. "name": "Symfony Community",
  8345. "homepage": "https://symfony.com/contributors"
  8346. }
  8347. ],
  8348. "description": "Symfony Yaml Component",
  8349. "homepage": "https://symfony.com",
  8350. "funding": [
  8351. {
  8352. "url": "https://symfony.com/sponsor",
  8353. "type": "custom"
  8354. },
  8355. {
  8356. "url": "https://github.com/fabpot",
  8357. "type": "github"
  8358. },
  8359. {
  8360. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8361. "type": "tidelift"
  8362. }
  8363. ],
  8364. "time": "2020-09-27T03:44:28+00:00"
  8365. },
  8366. {
  8367. "name": "symfonycasts/verify-email-bundle",
  8368. "version": "v1.0.0",
  8369. "source": {
  8370. "type": "git",
  8371. "url": "https://github.com/SymfonyCasts/verify-email-bundle.git",
  8372. "reference": "501e503f6a8ae282ffb3fff167e0740dae56b1ae"
  8373. },
  8374. "dist": {
  8375. "type": "zip",
  8376. "url": "https://api.github.com/repos/SymfonyCasts/verify-email-bundle/zipball/501e503f6a8ae282ffb3fff167e0740dae56b1ae",
  8377. "reference": "501e503f6a8ae282ffb3fff167e0740dae56b1ae",
  8378. "shasum": ""
  8379. },
  8380. "require": {
  8381. "php": "^7.2.5",
  8382. "symfony/config": "^4.4 | ^5.0",
  8383. "symfony/dependency-injection": "^4.4 | ^5.0",
  8384. "symfony/http-kernel": "^4.4 | ^5.0",
  8385. "symfony/routing": "^4.4 | ^5.0"
  8386. },
  8387. "conflict": {
  8388. "symfony/framework-bundle": "<4.4"
  8389. },
  8390. "require-dev": {
  8391. "doctrine/orm": "^2.7",
  8392. "doctrine/persistence": "^1.3",
  8393. "friendsofphp/php-cs-fixer": "^2.16",
  8394. "symfony/framework-bundle": "^4.4 | ^5.0",
  8395. "symfony/phpunit-bridge": "^5.0",
  8396. "vimeo/psalm": "^3.8"
  8397. },
  8398. "type": "symfony-bundle",
  8399. "autoload": {
  8400. "psr-4": {
  8401. "SymfonyCasts\\Bundle\\VerifyEmail\\": "src/"
  8402. }
  8403. },
  8404. "notification-url": "https://packagist.org/downloads/",
  8405. "license": [
  8406. "MIT"
  8407. ],
  8408. "description": "Simple, stylish Email Verification for Symfony",
  8409. "time": "2020-05-24T11:04:34+00:00"
  8410. },
  8411. {
  8412. "name": "tgalopin/html-sanitizer",
  8413. "version": "1.4.0",
  8414. "source": {
  8415. "type": "git",
  8416. "url": "https://github.com/tgalopin/html-sanitizer.git",
  8417. "reference": "56cca6b48de4e50d16a4f549e3e677ae0d561e91"
  8418. },
  8419. "dist": {
  8420. "type": "zip",
  8421. "url": "https://api.github.com/repos/tgalopin/html-sanitizer/zipball/56cca6b48de4e50d16a4f549e3e677ae0d561e91",
  8422. "reference": "56cca6b48de4e50d16a4f549e3e677ae0d561e91",
  8423. "shasum": ""
  8424. },
  8425. "require": {
  8426. "ext-dom": "*",
  8427. "league/uri-parser": "^1.4.1",
  8428. "masterminds/html5": "^2.4",
  8429. "php": ">=7.1",
  8430. "psr/log": "^1.0"
  8431. },
  8432. "require-dev": {
  8433. "phpunit/phpunit": "^7.4",
  8434. "symfony/var-dumper": "^4.1"
  8435. },
  8436. "type": "library",
  8437. "autoload": {
  8438. "psr-4": {
  8439. "HtmlSanitizer\\": "src"
  8440. }
  8441. },
  8442. "notification-url": "https://packagist.org/downloads/",
  8443. "license": [
  8444. "MIT"
  8445. ],
  8446. "authors": [
  8447. {
  8448. "name": "Titouan Galopin",
  8449. "email": "galopintitouan@gmail.com"
  8450. }
  8451. ],
  8452. "description": "Sanitize untrustworthy HTML user input",
  8453. "time": "2020-02-03T16:51:08+00:00"
  8454. },
  8455. {
  8456. "name": "tgalopin/html-sanitizer-bundle",
  8457. "version": "1.2.0",
  8458. "source": {
  8459. "type": "git",
  8460. "url": "https://github.com/tgalopin/html-sanitizer-bundle.git",
  8461. "reference": "df42087a1b1660eea37032f9ce3dc0997452d3e2"
  8462. },
  8463. "dist": {
  8464. "type": "zip",
  8465. "url": "https://api.github.com/repos/tgalopin/html-sanitizer-bundle/zipball/df42087a1b1660eea37032f9ce3dc0997452d3e2",
  8466. "reference": "df42087a1b1660eea37032f9ce3dc0997452d3e2",
  8467. "shasum": ""
  8468. },
  8469. "require": {
  8470. "php": ">=7.1",
  8471. "symfony/framework-bundle": "^3.4|^4.0|^5.0",
  8472. "tgalopin/html-sanitizer": "^1.1"
  8473. },
  8474. "require-dev": {
  8475. "phpunit/phpunit": "^7.4",
  8476. "symfony/form": "^4.1|^5.0",
  8477. "symfony/twig-bundle": "^4.1|^5.0",
  8478. "symfony/var-dumper": "^4.1|^5.0"
  8479. },
  8480. "type": "symfony-bundle",
  8481. "autoload": {
  8482. "psr-4": {
  8483. "HtmlSanitizer\\Bundle\\": "src"
  8484. }
  8485. },
  8486. "notification-url": "https://packagist.org/downloads/",
  8487. "license": [
  8488. "MIT"
  8489. ],
  8490. "authors": [
  8491. {
  8492. "name": "Titouan Galopin",
  8493. "email": "galopintitouan@gmail.com"
  8494. }
  8495. ],
  8496. "description": "Symfony Bundle for https://github.com/tgalopin/html-sanitizer",
  8497. "time": "2019-11-23T09:46:29+00:00"
  8498. },
  8499. {
  8500. "name": "twig/extra-bundle",
  8501. "version": "v3.0.5",
  8502. "source": {
  8503. "type": "git",
  8504. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8505. "reference": "a7c5799cf742ab0827f5d32df37528ee8bf5a233"
  8506. },
  8507. "dist": {
  8508. "type": "zip",
  8509. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/a7c5799cf742ab0827f5d32df37528ee8bf5a233",
  8510. "reference": "a7c5799cf742ab0827f5d32df37528ee8bf5a233",
  8511. "shasum": ""
  8512. },
  8513. "require": {
  8514. "php": "^7.1.3|^8.0",
  8515. "symfony/framework-bundle": "^4.3|^5.0",
  8516. "symfony/twig-bundle": "^4.3|^5.0",
  8517. "twig/twig": "^2.4|^3.0"
  8518. },
  8519. "require-dev": {
  8520. "twig/cssinliner-extra": "^2.12|^3.0",
  8521. "twig/html-extra": "^2.12|^3.0",
  8522. "twig/inky-extra": "^2.12|^3.0",
  8523. "twig/intl-extra": "^2.12|^3.0",
  8524. "twig/markdown-extra": "^2.12|^3.0"
  8525. },
  8526. "type": "symfony-bundle",
  8527. "extra": {
  8528. "branch-alias": {
  8529. "dev-master": "3.0-dev"
  8530. }
  8531. },
  8532. "autoload": {
  8533. "psr-4": {
  8534. "Twig\\Extra\\TwigExtraBundle\\": "src/"
  8535. }
  8536. },
  8537. "notification-url": "https://packagist.org/downloads/",
  8538. "license": [
  8539. "MIT"
  8540. ],
  8541. "authors": [
  8542. {
  8543. "name": "Fabien Potencier",
  8544. "email": "fabien@symfony.com",
  8545. "homepage": "http://fabien.potencier.org",
  8546. "role": "Lead Developer"
  8547. }
  8548. ],
  8549. "description": "A Symfony bundle for extra Twig extensions",
  8550. "homepage": "https://twig.symfony.com",
  8551. "keywords": [
  8552. "bundle",
  8553. "extra",
  8554. "twig"
  8555. ],
  8556. "funding": [
  8557. {
  8558. "url": "https://certification.symfony.com/",
  8559. "type": "custom"
  8560. },
  8561. {
  8562. "url": "https://live.symfony.com/",
  8563. "type": "custom"
  8564. },
  8565. {
  8566. "url": "https://symfony.com/cloud/",
  8567. "type": "custom"
  8568. },
  8569. {
  8570. "url": "https://github.com/fabpot",
  8571. "type": "github"
  8572. },
  8573. {
  8574. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8575. "type": "tidelift"
  8576. }
  8577. ],
  8578. "time": "2020-05-21T09:56:39+00:00"
  8579. },
  8580. {
  8581. "name": "twig/markdown-extra",
  8582. "version": "v3.0.5",
  8583. "source": {
  8584. "type": "git",
  8585. "url": "https://github.com/twigphp/markdown-extra.git",
  8586. "reference": "1fe798d559665b64bda4b08eda10793427d7e3bc"
  8587. },
  8588. "dist": {
  8589. "type": "zip",
  8590. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/1fe798d559665b64bda4b08eda10793427d7e3bc",
  8591. "reference": "1fe798d559665b64bda4b08eda10793427d7e3bc",
  8592. "shasum": ""
  8593. },
  8594. "require": {
  8595. "php": ">=7.1.3",
  8596. "twig/twig": "^2.4|^3.0"
  8597. },
  8598. "require-dev": {
  8599. "erusev/parsedown": "^1.7",
  8600. "league/commonmark": "^1.0",
  8601. "league/html-to-markdown": "^4.8",
  8602. "michelf/php-markdown": "^1.8",
  8603. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  8604. },
  8605. "type": "library",
  8606. "extra": {
  8607. "branch-alias": {
  8608. "dev-master": "3.0-dev"
  8609. }
  8610. },
  8611. "autoload": {
  8612. "psr-4": {
  8613. "Twig\\Extra\\Markdown\\": "src/"
  8614. }
  8615. },
  8616. "notification-url": "https://packagist.org/downloads/",
  8617. "license": [
  8618. "MIT"
  8619. ],
  8620. "authors": [
  8621. {
  8622. "name": "Fabien Potencier",
  8623. "email": "fabien@symfony.com",
  8624. "homepage": "http://fabien.potencier.org",
  8625. "role": "Lead Developer"
  8626. }
  8627. ],
  8628. "description": "A Twig extension for Markdown",
  8629. "homepage": "https://twig.symfony.com",
  8630. "keywords": [
  8631. "html",
  8632. "markdown",
  8633. "twig"
  8634. ],
  8635. "funding": [
  8636. {
  8637. "url": "https://github.com/fabpot",
  8638. "type": "github"
  8639. },
  8640. {
  8641. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8642. "type": "tidelift"
  8643. }
  8644. ],
  8645. "time": "2020-08-05T14:54:08+00:00"
  8646. },
  8647. {
  8648. "name": "twig/twig",
  8649. "version": "v3.0.5",
  8650. "source": {
  8651. "type": "git",
  8652. "url": "https://github.com/twigphp/Twig.git",
  8653. "reference": "9b76b1535483cdf4edf01bb787b0217b62bd68a5"
  8654. },
  8655. "dist": {
  8656. "type": "zip",
  8657. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9b76b1535483cdf4edf01bb787b0217b62bd68a5",
  8658. "reference": "9b76b1535483cdf4edf01bb787b0217b62bd68a5",
  8659. "shasum": ""
  8660. },
  8661. "require": {
  8662. "php": ">=7.2.5",
  8663. "symfony/polyfill-ctype": "^1.8",
  8664. "symfony/polyfill-mbstring": "^1.3"
  8665. },
  8666. "require-dev": {
  8667. "psr/container": "^1.0",
  8668. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  8669. },
  8670. "type": "library",
  8671. "extra": {
  8672. "branch-alias": {
  8673. "dev-master": "3.0-dev"
  8674. }
  8675. },
  8676. "autoload": {
  8677. "psr-4": {
  8678. "Twig\\": "src/"
  8679. }
  8680. },
  8681. "notification-url": "https://packagist.org/downloads/",
  8682. "license": [
  8683. "BSD-3-Clause"
  8684. ],
  8685. "authors": [
  8686. {
  8687. "name": "Fabien Potencier",
  8688. "email": "fabien@symfony.com",
  8689. "homepage": "http://fabien.potencier.org",
  8690. "role": "Lead Developer"
  8691. },
  8692. {
  8693. "name": "Twig Team",
  8694. "role": "Contributors"
  8695. },
  8696. {
  8697. "name": "Armin Ronacher",
  8698. "email": "armin.ronacher@active-4.com",
  8699. "role": "Project Founder"
  8700. }
  8701. ],
  8702. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8703. "homepage": "https://twig.symfony.com",
  8704. "keywords": [
  8705. "templating"
  8706. ],
  8707. "funding": [
  8708. {
  8709. "url": "https://github.com/fabpot",
  8710. "type": "github"
  8711. },
  8712. {
  8713. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8714. "type": "tidelift"
  8715. }
  8716. ],
  8717. "time": "2020-08-05T15:13:19+00:00"
  8718. },
  8719. {
  8720. "name": "webimpress/safe-writer",
  8721. "version": "2.1.0",
  8722. "source": {
  8723. "type": "git",
  8724. "url": "https://github.com/webimpress/safe-writer.git",
  8725. "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd"
  8726. },
  8727. "dist": {
  8728. "type": "zip",
  8729. "url": "https://api.github.com/repos/webimpress/safe-writer/zipball/5cfafdec5873c389036f14bf832a5efc9390dcdd",
  8730. "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd",
  8731. "shasum": ""
  8732. },
  8733. "require": {
  8734. "php": "^7.2 || ^8.0"
  8735. },
  8736. "require-dev": {
  8737. "phpunit/phpunit": "^8.5.8 || ^9.3.7",
  8738. "vimeo/psalm": "^3.14.2",
  8739. "webimpress/coding-standard": "^1.1.5"
  8740. },
  8741. "type": "library",
  8742. "extra": {
  8743. "branch-alias": {
  8744. "dev-master": "2.1.x-dev",
  8745. "dev-develop": "2.2.x-dev",
  8746. "dev-release-1.0": "1.0.x-dev"
  8747. }
  8748. },
  8749. "autoload": {
  8750. "psr-4": {
  8751. "Webimpress\\SafeWriter\\": "src/"
  8752. }
  8753. },
  8754. "notification-url": "https://packagist.org/downloads/",
  8755. "license": [
  8756. "BSD-2-Clause"
  8757. ],
  8758. "description": "Tool to write files safely, to avoid race conditions",
  8759. "keywords": [
  8760. "concurrent write",
  8761. "file writer",
  8762. "race condition",
  8763. "safe writer",
  8764. "webimpress"
  8765. ],
  8766. "funding": [
  8767. {
  8768. "url": "https://github.com/michalbundyra",
  8769. "type": "github"
  8770. }
  8771. ],
  8772. "time": "2020-08-25T07:21:11+00:00"
  8773. },
  8774. {
  8775. "name": "webmozart/assert",
  8776. "version": "1.9.1",
  8777. "source": {
  8778. "type": "git",
  8779. "url": "https://github.com/webmozart/assert.git",
  8780. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  8781. },
  8782. "dist": {
  8783. "type": "zip",
  8784. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8785. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8786. "shasum": ""
  8787. },
  8788. "require": {
  8789. "php": "^5.3.3 || ^7.0 || ^8.0",
  8790. "symfony/polyfill-ctype": "^1.8"
  8791. },
  8792. "conflict": {
  8793. "phpstan/phpstan": "<0.12.20",
  8794. "vimeo/psalm": "<3.9.1"
  8795. },
  8796. "require-dev": {
  8797. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  8798. },
  8799. "type": "library",
  8800. "autoload": {
  8801. "psr-4": {
  8802. "Webmozart\\Assert\\": "src/"
  8803. }
  8804. },
  8805. "notification-url": "https://packagist.org/downloads/",
  8806. "license": [
  8807. "MIT"
  8808. ],
  8809. "authors": [
  8810. {
  8811. "name": "Bernhard Schussek",
  8812. "email": "bschussek@gmail.com"
  8813. }
  8814. ],
  8815. "description": "Assertions to validate method input/output with nice error messages.",
  8816. "keywords": [
  8817. "assert",
  8818. "check",
  8819. "validate"
  8820. ],
  8821. "time": "2020-07-08T17:02:28+00:00"
  8822. },
  8823. {
  8824. "name": "wikimedia/composer-merge-plugin",
  8825. "version": "v1.4.1",
  8826. "source": {
  8827. "type": "git",
  8828. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  8829. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  8830. },
  8831. "dist": {
  8832. "type": "zip",
  8833. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  8834. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  8835. "shasum": ""
  8836. },
  8837. "require": {
  8838. "composer-plugin-api": "^1.0",
  8839. "php": ">=5.3.2"
  8840. },
  8841. "require-dev": {
  8842. "composer/composer": "~1.0.0",
  8843. "jakub-onderka/php-parallel-lint": "~0.8",
  8844. "phpunit/phpunit": "~4.8|~5.0",
  8845. "squizlabs/php_codesniffer": "~2.1.0"
  8846. },
  8847. "type": "composer-plugin",
  8848. "extra": {
  8849. "branch-alias": {
  8850. "dev-master": "1.3.x-dev"
  8851. },
  8852. "class": "Wikimedia\\Composer\\MergePlugin"
  8853. },
  8854. "autoload": {
  8855. "psr-4": {
  8856. "Wikimedia\\Composer\\": "src/"
  8857. }
  8858. },
  8859. "notification-url": "https://packagist.org/downloads/",
  8860. "license": [
  8861. "MIT"
  8862. ],
  8863. "authors": [
  8864. {
  8865. "name": "Bryan Davis",
  8866. "email": "bd808@wikimedia.org"
  8867. }
  8868. ],
  8869. "description": "Composer plugin to merge multiple composer.json files",
  8870. "time": "2017-04-25T02:31:25+00:00"
  8871. }
  8872. ],
  8873. "packages-dev": [
  8874. {
  8875. "name": "composer/semver",
  8876. "version": "1.7.1",
  8877. "source": {
  8878. "type": "git",
  8879. "url": "https://github.com/composer/semver.git",
  8880. "reference": "38276325bd896f90dfcfe30029aa5db40df387a7"
  8881. },
  8882. "dist": {
  8883. "type": "zip",
  8884. "url": "https://api.github.com/repos/composer/semver/zipball/38276325bd896f90dfcfe30029aa5db40df387a7",
  8885. "reference": "38276325bd896f90dfcfe30029aa5db40df387a7",
  8886. "shasum": ""
  8887. },
  8888. "require": {
  8889. "php": "^5.3.2 || ^7.0"
  8890. },
  8891. "require-dev": {
  8892. "phpunit/phpunit": "^4.5 || ^5.0.5"
  8893. },
  8894. "type": "library",
  8895. "extra": {
  8896. "branch-alias": {
  8897. "dev-master": "1.x-dev"
  8898. }
  8899. },
  8900. "autoload": {
  8901. "psr-4": {
  8902. "Composer\\Semver\\": "src"
  8903. }
  8904. },
  8905. "notification-url": "https://packagist.org/downloads/",
  8906. "license": [
  8907. "MIT"
  8908. ],
  8909. "authors": [
  8910. {
  8911. "name": "Nils Adermann",
  8912. "email": "naderman@naderman.de",
  8913. "homepage": "http://www.naderman.de"
  8914. },
  8915. {
  8916. "name": "Jordi Boggiano",
  8917. "email": "j.boggiano@seld.be",
  8918. "homepage": "http://seld.be"
  8919. },
  8920. {
  8921. "name": "Rob Bast",
  8922. "email": "rob.bast@gmail.com",
  8923. "homepage": "http://robbast.nl"
  8924. }
  8925. ],
  8926. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8927. "keywords": [
  8928. "semantic",
  8929. "semver",
  8930. "validation",
  8931. "versioning"
  8932. ],
  8933. "funding": [
  8934. {
  8935. "url": "https://packagist.com",
  8936. "type": "custom"
  8937. },
  8938. {
  8939. "url": "https://github.com/composer",
  8940. "type": "github"
  8941. },
  8942. {
  8943. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8944. "type": "tidelift"
  8945. }
  8946. ],
  8947. "time": "2020-09-27T13:13:07+00:00"
  8948. },
  8949. {
  8950. "name": "composer/xdebug-handler",
  8951. "version": "1.4.3",
  8952. "source": {
  8953. "type": "git",
  8954. "url": "https://github.com/composer/xdebug-handler.git",
  8955. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5"
  8956. },
  8957. "dist": {
  8958. "type": "zip",
  8959. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5",
  8960. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5",
  8961. "shasum": ""
  8962. },
  8963. "require": {
  8964. "php": "^5.3.2 || ^7.0 || ^8.0",
  8965. "psr/log": "^1.0"
  8966. },
  8967. "require-dev": {
  8968. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  8969. },
  8970. "type": "library",
  8971. "autoload": {
  8972. "psr-4": {
  8973. "Composer\\XdebugHandler\\": "src"
  8974. }
  8975. },
  8976. "notification-url": "https://packagist.org/downloads/",
  8977. "license": [
  8978. "MIT"
  8979. ],
  8980. "authors": [
  8981. {
  8982. "name": "John Stevenson",
  8983. "email": "john-stevenson@blueyonder.co.uk"
  8984. }
  8985. ],
  8986. "description": "Restarts a process without Xdebug.",
  8987. "keywords": [
  8988. "Xdebug",
  8989. "performance"
  8990. ],
  8991. "funding": [
  8992. {
  8993. "url": "https://packagist.com",
  8994. "type": "custom"
  8995. },
  8996. {
  8997. "url": "https://github.com/composer",
  8998. "type": "github"
  8999. },
  9000. {
  9001. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9002. "type": "tidelift"
  9003. }
  9004. ],
  9005. "time": "2020-08-19T10:27:58+00:00"
  9006. },
  9007. {
  9008. "name": "friendsofphp/php-cs-fixer",
  9009. "version": "v2.16.4",
  9010. "source": {
  9011. "type": "git",
  9012. "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
  9013. "reference": "1023c3458137ab052f6ff1e09621a721bfdeca13"
  9014. },
  9015. "dist": {
  9016. "type": "zip",
  9017. "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/1023c3458137ab052f6ff1e09621a721bfdeca13",
  9018. "reference": "1023c3458137ab052f6ff1e09621a721bfdeca13",
  9019. "shasum": ""
  9020. },
  9021. "require": {
  9022. "composer/semver": "^1.4",
  9023. "composer/xdebug-handler": "^1.2",
  9024. "doctrine/annotations": "^1.2",
  9025. "ext-json": "*",
  9026. "ext-tokenizer": "*",
  9027. "php": "^5.6 || ^7.0",
  9028. "php-cs-fixer/diff": "^1.3",
  9029. "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0",
  9030. "symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0",
  9031. "symfony/filesystem": "^3.0 || ^4.0 || ^5.0",
  9032. "symfony/finder": "^3.0 || ^4.0 || ^5.0",
  9033. "symfony/options-resolver": "^3.0 || ^4.0 || ^5.0",
  9034. "symfony/polyfill-php70": "^1.0",
  9035. "symfony/polyfill-php72": "^1.4",
  9036. "symfony/process": "^3.0 || ^4.0 || ^5.0",
  9037. "symfony/stopwatch": "^3.0 || ^4.0 || ^5.0"
  9038. },
  9039. "require-dev": {
  9040. "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0",
  9041. "justinrainbow/json-schema": "^5.0",
  9042. "keradus/cli-executor": "^1.2",
  9043. "mikey179/vfsstream": "^1.6",
  9044. "php-coveralls/php-coveralls": "^2.1",
  9045. "php-cs-fixer/accessible-object": "^1.0",
  9046. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.1",
  9047. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.1",
  9048. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.1",
  9049. "phpunitgoodpractices/traits": "^1.8",
  9050. "symfony/phpunit-bridge": "^5.1",
  9051. "symfony/yaml": "^3.0 || ^4.0 || ^5.0"
  9052. },
  9053. "suggest": {
  9054. "ext-dom": "For handling output formats in XML",
  9055. "ext-mbstring": "For handling non-UTF8 characters.",
  9056. "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
  9057. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
  9058. "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
  9059. },
  9060. "bin": [
  9061. "php-cs-fixer"
  9062. ],
  9063. "type": "application",
  9064. "autoload": {
  9065. "psr-4": {
  9066. "PhpCsFixer\\": "src/"
  9067. },
  9068. "classmap": [
  9069. "tests/Test/AbstractFixerTestCase.php",
  9070. "tests/Test/AbstractIntegrationCaseFactory.php",
  9071. "tests/Test/AbstractIntegrationTestCase.php",
  9072. "tests/Test/Assert/AssertTokensTrait.php",
  9073. "tests/Test/IntegrationCase.php",
  9074. "tests/Test/IntegrationCaseFactory.php",
  9075. "tests/Test/IntegrationCaseFactoryInterface.php",
  9076. "tests/Test/InternalIntegrationCaseFactory.php",
  9077. "tests/Test/IsIdenticalConstraint.php",
  9078. "tests/TestCase.php"
  9079. ]
  9080. },
  9081. "notification-url": "https://packagist.org/downloads/",
  9082. "license": [
  9083. "MIT"
  9084. ],
  9085. "authors": [
  9086. {
  9087. "name": "Fabien Potencier",
  9088. "email": "fabien@symfony.com"
  9089. },
  9090. {
  9091. "name": "Dariusz Rumiński",
  9092. "email": "dariusz.ruminski@gmail.com"
  9093. }
  9094. ],
  9095. "description": "A tool to automatically fix PHP code style",
  9096. "funding": [
  9097. {
  9098. "url": "https://github.com/keradus",
  9099. "type": "github"
  9100. }
  9101. ],
  9102. "time": "2020-06-27T23:57:46+00:00"
  9103. },
  9104. {
  9105. "name": "nikic/php-parser",
  9106. "version": "v4.10.2",
  9107. "source": {
  9108. "type": "git",
  9109. "url": "https://github.com/nikic/PHP-Parser.git",
  9110. "reference": "658f1be311a230e0907f5dfe0213742aff0596de"
  9111. },
  9112. "dist": {
  9113. "type": "zip",
  9114. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/658f1be311a230e0907f5dfe0213742aff0596de",
  9115. "reference": "658f1be311a230e0907f5dfe0213742aff0596de",
  9116. "shasum": ""
  9117. },
  9118. "require": {
  9119. "ext-tokenizer": "*",
  9120. "php": ">=7.0"
  9121. },
  9122. "require-dev": {
  9123. "ircmaxell/php-yacc": "^0.0.7",
  9124. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  9125. },
  9126. "bin": [
  9127. "bin/php-parse"
  9128. ],
  9129. "type": "library",
  9130. "extra": {
  9131. "branch-alias": {
  9132. "dev-master": "4.9-dev"
  9133. }
  9134. },
  9135. "autoload": {
  9136. "psr-4": {
  9137. "PhpParser\\": "lib/PhpParser"
  9138. }
  9139. },
  9140. "notification-url": "https://packagist.org/downloads/",
  9141. "license": [
  9142. "BSD-3-Clause"
  9143. ],
  9144. "authors": [
  9145. {
  9146. "name": "Nikita Popov"
  9147. }
  9148. ],
  9149. "description": "A PHP parser written in PHP",
  9150. "keywords": [
  9151. "parser",
  9152. "php"
  9153. ],
  9154. "time": "2020-09-26T10:30:38+00:00"
  9155. },
  9156. {
  9157. "name": "php-cs-fixer/diff",
  9158. "version": "v1.3.1",
  9159. "source": {
  9160. "type": "git",
  9161. "url": "https://github.com/PHP-CS-Fixer/diff.git",
  9162. "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759"
  9163. },
  9164. "dist": {
  9165. "type": "zip",
  9166. "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/dbd31aeb251639ac0b9e7e29405c1441907f5759",
  9167. "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759",
  9168. "shasum": ""
  9169. },
  9170. "require": {
  9171. "php": "^5.6 || ^7.0 || ^8.0"
  9172. },
  9173. "require-dev": {
  9174. "phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0",
  9175. "symfony/process": "^3.3"
  9176. },
  9177. "type": "library",
  9178. "autoload": {
  9179. "classmap": [
  9180. "src/"
  9181. ]
  9182. },
  9183. "notification-url": "https://packagist.org/downloads/",
  9184. "license": [
  9185. "BSD-3-Clause"
  9186. ],
  9187. "authors": [
  9188. {
  9189. "name": "Sebastian Bergmann",
  9190. "email": "sebastian@phpunit.de"
  9191. },
  9192. {
  9193. "name": "Kore Nordmann",
  9194. "email": "mail@kore-nordmann.de"
  9195. },
  9196. {
  9197. "name": "SpacePossum"
  9198. }
  9199. ],
  9200. "description": "sebastian/diff v2 backport support for PHP5.6",
  9201. "homepage": "https://github.com/PHP-CS-Fixer",
  9202. "keywords": [
  9203. "diff"
  9204. ],
  9205. "time": "2020-10-14T08:39:05+00:00"
  9206. },
  9207. {
  9208. "name": "symfony/browser-kit",
  9209. "version": "v5.1.7",
  9210. "source": {
  9211. "type": "git",
  9212. "url": "https://github.com/symfony/browser-kit.git",
  9213. "reference": "8944cc83bb18f83f577225c695d999044e7c62b0"
  9214. },
  9215. "dist": {
  9216. "type": "zip",
  9217. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/8944cc83bb18f83f577225c695d999044e7c62b0",
  9218. "reference": "8944cc83bb18f83f577225c695d999044e7c62b0",
  9219. "shasum": ""
  9220. },
  9221. "require": {
  9222. "php": ">=7.2.5",
  9223. "symfony/dom-crawler": "^4.4|^5.0"
  9224. },
  9225. "require-dev": {
  9226. "symfony/css-selector": "^4.4|^5.0",
  9227. "symfony/http-client": "^4.4|^5.0",
  9228. "symfony/mime": "^4.4|^5.0",
  9229. "symfony/process": "^4.4|^5.0"
  9230. },
  9231. "suggest": {
  9232. "symfony/process": ""
  9233. },
  9234. "type": "library",
  9235. "extra": {
  9236. "branch-alias": {
  9237. "dev-master": "5.1-dev"
  9238. }
  9239. },
  9240. "autoload": {
  9241. "psr-4": {
  9242. "Symfony\\Component\\BrowserKit\\": ""
  9243. },
  9244. "exclude-from-classmap": [
  9245. "/Tests/"
  9246. ]
  9247. },
  9248. "notification-url": "https://packagist.org/downloads/",
  9249. "license": [
  9250. "MIT"
  9251. ],
  9252. "authors": [
  9253. {
  9254. "name": "Fabien Potencier",
  9255. "email": "fabien@symfony.com"
  9256. },
  9257. {
  9258. "name": "Symfony Community",
  9259. "homepage": "https://symfony.com/contributors"
  9260. }
  9261. ],
  9262. "description": "Symfony BrowserKit Component",
  9263. "homepage": "https://symfony.com",
  9264. "funding": [
  9265. {
  9266. "url": "https://symfony.com/sponsor",
  9267. "type": "custom"
  9268. },
  9269. {
  9270. "url": "https://github.com/fabpot",
  9271. "type": "github"
  9272. },
  9273. {
  9274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9275. "type": "tidelift"
  9276. }
  9277. ],
  9278. "time": "2020-10-02T08:49:02+00:00"
  9279. },
  9280. {
  9281. "name": "symfony/css-selector",
  9282. "version": "v5.1.7",
  9283. "source": {
  9284. "type": "git",
  9285. "url": "https://github.com/symfony/css-selector.git",
  9286. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9"
  9287. },
  9288. "dist": {
  9289. "type": "zip",
  9290. "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9",
  9291. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9",
  9292. "shasum": ""
  9293. },
  9294. "require": {
  9295. "php": ">=7.2.5"
  9296. },
  9297. "type": "library",
  9298. "extra": {
  9299. "branch-alias": {
  9300. "dev-master": "5.1-dev"
  9301. }
  9302. },
  9303. "autoload": {
  9304. "psr-4": {
  9305. "Symfony\\Component\\CssSelector\\": ""
  9306. },
  9307. "exclude-from-classmap": [
  9308. "/Tests/"
  9309. ]
  9310. },
  9311. "notification-url": "https://packagist.org/downloads/",
  9312. "license": [
  9313. "MIT"
  9314. ],
  9315. "authors": [
  9316. {
  9317. "name": "Fabien Potencier",
  9318. "email": "fabien@symfony.com"
  9319. },
  9320. {
  9321. "name": "Jean-François Simon",
  9322. "email": "jeanfrancois.simon@sensiolabs.com"
  9323. },
  9324. {
  9325. "name": "Symfony Community",
  9326. "homepage": "https://symfony.com/contributors"
  9327. }
  9328. ],
  9329. "description": "Symfony CssSelector Component",
  9330. "homepage": "https://symfony.com",
  9331. "funding": [
  9332. {
  9333. "url": "https://symfony.com/sponsor",
  9334. "type": "custom"
  9335. },
  9336. {
  9337. "url": "https://github.com/fabpot",
  9338. "type": "github"
  9339. },
  9340. {
  9341. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9342. "type": "tidelift"
  9343. }
  9344. ],
  9345. "time": "2020-05-20T17:43:50+00:00"
  9346. },
  9347. {
  9348. "name": "symfony/debug-bundle",
  9349. "version": "v5.1.7",
  9350. "source": {
  9351. "type": "git",
  9352. "url": "https://github.com/symfony/debug-bundle.git",
  9353. "reference": "3f4bcea52678eedf19260973217f5ae7b835edf5"
  9354. },
  9355. "dist": {
  9356. "type": "zip",
  9357. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/3f4bcea52678eedf19260973217f5ae7b835edf5",
  9358. "reference": "3f4bcea52678eedf19260973217f5ae7b835edf5",
  9359. "shasum": ""
  9360. },
  9361. "require": {
  9362. "ext-xml": "*",
  9363. "php": ">=7.2.5",
  9364. "symfony/http-kernel": "^4.4|^5.0",
  9365. "symfony/twig-bridge": "^4.4|^5.0",
  9366. "symfony/var-dumper": "^4.4|^5.0"
  9367. },
  9368. "conflict": {
  9369. "symfony/config": "<4.4",
  9370. "symfony/dependency-injection": "<4.4"
  9371. },
  9372. "require-dev": {
  9373. "symfony/config": "^4.4|^5.0",
  9374. "symfony/dependency-injection": "^4.4|^5.0",
  9375. "symfony/web-profiler-bundle": "^4.4|^5.0"
  9376. },
  9377. "suggest": {
  9378. "symfony/config": "For service container configuration",
  9379. "symfony/dependency-injection": "For using as a service from the container"
  9380. },
  9381. "type": "symfony-bundle",
  9382. "extra": {
  9383. "branch-alias": {
  9384. "dev-master": "5.1-dev"
  9385. }
  9386. },
  9387. "autoload": {
  9388. "psr-4": {
  9389. "Symfony\\Bundle\\DebugBundle\\": ""
  9390. },
  9391. "exclude-from-classmap": [
  9392. "/Tests/"
  9393. ]
  9394. },
  9395. "notification-url": "https://packagist.org/downloads/",
  9396. "license": [
  9397. "MIT"
  9398. ],
  9399. "authors": [
  9400. {
  9401. "name": "Fabien Potencier",
  9402. "email": "fabien@symfony.com"
  9403. },
  9404. {
  9405. "name": "Symfony Community",
  9406. "homepage": "https://symfony.com/contributors"
  9407. }
  9408. ],
  9409. "description": "Symfony DebugBundle",
  9410. "homepage": "https://symfony.com",
  9411. "funding": [
  9412. {
  9413. "url": "https://symfony.com/sponsor",
  9414. "type": "custom"
  9415. },
  9416. {
  9417. "url": "https://github.com/fabpot",
  9418. "type": "github"
  9419. },
  9420. {
  9421. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9422. "type": "tidelift"
  9423. }
  9424. ],
  9425. "time": "2020-05-20T17:43:50+00:00"
  9426. },
  9427. {
  9428. "name": "symfony/debug-pack",
  9429. "version": "v1.0.8",
  9430. "source": {
  9431. "type": "git",
  9432. "url": "https://github.com/symfony/debug-pack.git",
  9433. "reference": "7310a66f9f81c9f292ff9089f0b0062386cb83fb"
  9434. },
  9435. "dist": {
  9436. "type": "zip",
  9437. "url": "https://api.github.com/repos/symfony/debug-pack/zipball/7310a66f9f81c9f292ff9089f0b0062386cb83fb",
  9438. "reference": "7310a66f9f81c9f292ff9089f0b0062386cb83fb",
  9439. "shasum": ""
  9440. },
  9441. "require": {
  9442. "php": "^7.0",
  9443. "symfony/debug-bundle": "*",
  9444. "symfony/monolog-bundle": "^3.0",
  9445. "symfony/profiler-pack": "*",
  9446. "symfony/var-dumper": "*"
  9447. },
  9448. "type": "symfony-pack",
  9449. "notification-url": "https://packagist.org/downloads/",
  9450. "license": [
  9451. "MIT"
  9452. ],
  9453. "description": "A debug pack for Symfony projects",
  9454. "funding": [
  9455. {
  9456. "url": "https://symfony.com/sponsor",
  9457. "type": "custom"
  9458. },
  9459. {
  9460. "url": "https://github.com/fabpot",
  9461. "type": "github"
  9462. },
  9463. {
  9464. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9465. "type": "tidelift"
  9466. }
  9467. ],
  9468. "time": "2020-04-07T10:08:51+00:00"
  9469. },
  9470. {
  9471. "name": "symfony/dom-crawler",
  9472. "version": "v5.1.7",
  9473. "source": {
  9474. "type": "git",
  9475. "url": "https://github.com/symfony/dom-crawler.git",
  9476. "reference": "6d6885e167aad0af4128b392f22d8f2a33dd88ec"
  9477. },
  9478. "dist": {
  9479. "type": "zip",
  9480. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/6d6885e167aad0af4128b392f22d8f2a33dd88ec",
  9481. "reference": "6d6885e167aad0af4128b392f22d8f2a33dd88ec",
  9482. "shasum": ""
  9483. },
  9484. "require": {
  9485. "php": ">=7.2.5",
  9486. "symfony/polyfill-ctype": "~1.8",
  9487. "symfony/polyfill-mbstring": "~1.0",
  9488. "symfony/polyfill-php80": "^1.15"
  9489. },
  9490. "conflict": {
  9491. "masterminds/html5": "<2.6"
  9492. },
  9493. "require-dev": {
  9494. "masterminds/html5": "^2.6",
  9495. "symfony/css-selector": "^4.4|^5.0"
  9496. },
  9497. "suggest": {
  9498. "symfony/css-selector": ""
  9499. },
  9500. "type": "library",
  9501. "extra": {
  9502. "branch-alias": {
  9503. "dev-master": "5.1-dev"
  9504. }
  9505. },
  9506. "autoload": {
  9507. "psr-4": {
  9508. "Symfony\\Component\\DomCrawler\\": ""
  9509. },
  9510. "exclude-from-classmap": [
  9511. "/Tests/"
  9512. ]
  9513. },
  9514. "notification-url": "https://packagist.org/downloads/",
  9515. "license": [
  9516. "MIT"
  9517. ],
  9518. "authors": [
  9519. {
  9520. "name": "Fabien Potencier",
  9521. "email": "fabien@symfony.com"
  9522. },
  9523. {
  9524. "name": "Symfony Community",
  9525. "homepage": "https://symfony.com/contributors"
  9526. }
  9527. ],
  9528. "description": "Symfony DomCrawler Component",
  9529. "homepage": "https://symfony.com",
  9530. "funding": [
  9531. {
  9532. "url": "https://symfony.com/sponsor",
  9533. "type": "custom"
  9534. },
  9535. {
  9536. "url": "https://github.com/fabpot",
  9537. "type": "github"
  9538. },
  9539. {
  9540. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9541. "type": "tidelift"
  9542. }
  9543. ],
  9544. "time": "2020-09-02T16:23:27+00:00"
  9545. },
  9546. {
  9547. "name": "symfony/maker-bundle",
  9548. "version": "v1.21.1",
  9549. "source": {
  9550. "type": "git",
  9551. "url": "https://github.com/symfony/maker-bundle.git",
  9552. "reference": "da629093c7bf9abd9a6a0f232a43bbb1b88de68d"
  9553. },
  9554. "dist": {
  9555. "type": "zip",
  9556. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/da629093c7bf9abd9a6a0f232a43bbb1b88de68d",
  9557. "reference": "da629093c7bf9abd9a6a0f232a43bbb1b88de68d",
  9558. "shasum": ""
  9559. },
  9560. "require": {
  9561. "doctrine/inflector": "^1.2",
  9562. "nikic/php-parser": "^4.0",
  9563. "php": "^7.1.3",
  9564. "symfony/config": "^3.4|^4.0|^5.0",
  9565. "symfony/console": "^3.4|^4.0|^5.0",
  9566. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9567. "symfony/filesystem": "^3.4|^4.0|^5.0",
  9568. "symfony/finder": "^3.4|^4.0|^5.0",
  9569. "symfony/framework-bundle": "^3.4|^4.0|^5.0",
  9570. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  9571. },
  9572. "require-dev": {
  9573. "composer/semver": "^3.0@dev",
  9574. "doctrine/doctrine-bundle": "^1.8|^2.0",
  9575. "doctrine/orm": "^2.3",
  9576. "friendsofphp/php-cs-fixer": "^2.8",
  9577. "friendsoftwig/twigcs": "^3.1.2",
  9578. "symfony/http-client": "^4.3|^5.0",
  9579. "symfony/phpunit-bridge": "^4.3|^5.0",
  9580. "symfony/process": "^3.4|^4.0|^5.0",
  9581. "symfony/security-core": "^3.4|^4.0|^5.0",
  9582. "symfony/yaml": "^3.4|^4.0|^5.0"
  9583. },
  9584. "type": "symfony-bundle",
  9585. "extra": {
  9586. "branch-alias": {
  9587. "dev-master": "1.0-dev"
  9588. }
  9589. },
  9590. "autoload": {
  9591. "psr-4": {
  9592. "Symfony\\Bundle\\MakerBundle\\": "src/"
  9593. }
  9594. },
  9595. "notification-url": "https://packagist.org/downloads/",
  9596. "license": [
  9597. "MIT"
  9598. ],
  9599. "authors": [
  9600. {
  9601. "name": "Symfony Community",
  9602. "homepage": "https://symfony.com/contributors"
  9603. }
  9604. ],
  9605. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  9606. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  9607. "keywords": [
  9608. "code generator",
  9609. "generator",
  9610. "scaffold",
  9611. "scaffolding"
  9612. ],
  9613. "funding": [
  9614. {
  9615. "url": "https://symfony.com/sponsor",
  9616. "type": "custom"
  9617. },
  9618. {
  9619. "url": "https://github.com/fabpot",
  9620. "type": "github"
  9621. },
  9622. {
  9623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9624. "type": "tidelift"
  9625. }
  9626. ],
  9627. "time": "2020-08-29T18:05:46+00:00"
  9628. },
  9629. {
  9630. "name": "symfony/phpunit-bridge",
  9631. "version": "v5.1.7",
  9632. "source": {
  9633. "type": "git",
  9634. "url": "https://github.com/symfony/phpunit-bridge.git",
  9635. "reference": "150aeb91dd9dafe13ec8416abd62e435330ca12d"
  9636. },
  9637. "dist": {
  9638. "type": "zip",
  9639. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/150aeb91dd9dafe13ec8416abd62e435330ca12d",
  9640. "reference": "150aeb91dd9dafe13ec8416abd62e435330ca12d",
  9641. "shasum": ""
  9642. },
  9643. "require": {
  9644. "php": ">=5.5.9"
  9645. },
  9646. "conflict": {
  9647. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0|<6.4,>=6.0|9.1.2"
  9648. },
  9649. "require-dev": {
  9650. "symfony/deprecation-contracts": "^2.1"
  9651. },
  9652. "suggest": {
  9653. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  9654. },
  9655. "bin": [
  9656. "bin/simple-phpunit"
  9657. ],
  9658. "type": "symfony-bridge",
  9659. "extra": {
  9660. "branch-alias": {
  9661. "dev-master": "5.1-dev"
  9662. },
  9663. "thanks": {
  9664. "name": "phpunit/phpunit",
  9665. "url": "https://github.com/sebastianbergmann/phpunit"
  9666. }
  9667. },
  9668. "autoload": {
  9669. "files": [
  9670. "bootstrap.php"
  9671. ],
  9672. "psr-4": {
  9673. "Symfony\\Bridge\\PhpUnit\\": ""
  9674. },
  9675. "exclude-from-classmap": [
  9676. "/Tests/"
  9677. ]
  9678. },
  9679. "notification-url": "https://packagist.org/downloads/",
  9680. "license": [
  9681. "MIT"
  9682. ],
  9683. "authors": [
  9684. {
  9685. "name": "Nicolas Grekas",
  9686. "email": "p@tchwork.com"
  9687. },
  9688. {
  9689. "name": "Symfony Community",
  9690. "homepage": "https://symfony.com/contributors"
  9691. }
  9692. ],
  9693. "description": "Symfony PHPUnit Bridge",
  9694. "homepage": "https://symfony.com",
  9695. "funding": [
  9696. {
  9697. "url": "https://symfony.com/sponsor",
  9698. "type": "custom"
  9699. },
  9700. {
  9701. "url": "https://github.com/fabpot",
  9702. "type": "github"
  9703. },
  9704. {
  9705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9706. "type": "tidelift"
  9707. }
  9708. ],
  9709. "time": "2020-10-02T12:57:56+00:00"
  9710. },
  9711. {
  9712. "name": "symfony/profiler-pack",
  9713. "version": "v1.0.5",
  9714. "source": {
  9715. "type": "git",
  9716. "url": "https://github.com/symfony/profiler-pack.git",
  9717. "reference": "29ec66471082b4eb068db11eb4f0a48c277653f7"
  9718. },
  9719. "dist": {
  9720. "type": "zip",
  9721. "url": "https://api.github.com/repos/symfony/profiler-pack/zipball/29ec66471082b4eb068db11eb4f0a48c277653f7",
  9722. "reference": "29ec66471082b4eb068db11eb4f0a48c277653f7",
  9723. "shasum": ""
  9724. },
  9725. "require": {
  9726. "symfony/stopwatch": "*",
  9727. "symfony/twig-bundle": "*",
  9728. "symfony/web-profiler-bundle": "*"
  9729. },
  9730. "type": "symfony-pack",
  9731. "notification-url": "https://packagist.org/downloads/",
  9732. "license": [
  9733. "MIT"
  9734. ],
  9735. "description": "A pack for the Symfony web profiler",
  9736. "funding": [
  9737. {
  9738. "url": "https://symfony.com/sponsor",
  9739. "type": "custom"
  9740. },
  9741. {
  9742. "url": "https://github.com/fabpot",
  9743. "type": "github"
  9744. },
  9745. {
  9746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9747. "type": "tidelift"
  9748. }
  9749. ],
  9750. "time": "2020-08-12T06:50:46+00:00"
  9751. },
  9752. {
  9753. "name": "symfony/test-pack",
  9754. "version": "v1.0.7",
  9755. "source": {
  9756. "type": "git",
  9757. "url": "https://github.com/symfony/test-pack.git",
  9758. "reference": "e61756c97cbedae00b7cf43b87abcfadfeb2746c"
  9759. },
  9760. "dist": {
  9761. "type": "zip",
  9762. "url": "https://api.github.com/repos/symfony/test-pack/zipball/e61756c97cbedae00b7cf43b87abcfadfeb2746c",
  9763. "reference": "e61756c97cbedae00b7cf43b87abcfadfeb2746c",
  9764. "shasum": ""
  9765. },
  9766. "require": {
  9767. "symfony/browser-kit": "*",
  9768. "symfony/css-selector": "*",
  9769. "symfony/phpunit-bridge": "*"
  9770. },
  9771. "type": "symfony-pack",
  9772. "notification-url": "https://packagist.org/downloads/",
  9773. "license": [
  9774. "MIT"
  9775. ],
  9776. "description": "A pack for functional and end-to-end testing within a Symfony app",
  9777. "funding": [
  9778. {
  9779. "url": "https://symfony.com/sponsor",
  9780. "type": "custom"
  9781. },
  9782. {
  9783. "url": "https://github.com/fabpot",
  9784. "type": "github"
  9785. },
  9786. {
  9787. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9788. "type": "tidelift"
  9789. }
  9790. ],
  9791. "time": "2020-10-19T08:52:28+00:00"
  9792. },
  9793. {
  9794. "name": "symfony/web-profiler-bundle",
  9795. "version": "v5.1.7",
  9796. "source": {
  9797. "type": "git",
  9798. "url": "https://github.com/symfony/web-profiler-bundle.git",
  9799. "reference": "4b02edb4c4c2d57b94e62904e45f3484b29d36eb"
  9800. },
  9801. "dist": {
  9802. "type": "zip",
  9803. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/4b02edb4c4c2d57b94e62904e45f3484b29d36eb",
  9804. "reference": "4b02edb4c4c2d57b94e62904e45f3484b29d36eb",
  9805. "shasum": ""
  9806. },
  9807. "require": {
  9808. "php": ">=7.2.5",
  9809. "symfony/config": "^4.4|^5.0",
  9810. "symfony/framework-bundle": "^5.1",
  9811. "symfony/http-kernel": "^4.4|^5.0",
  9812. "symfony/routing": "^4.4|^5.0",
  9813. "symfony/twig-bundle": "^4.4|^5.0",
  9814. "twig/twig": "^2.10|^3.0"
  9815. },
  9816. "conflict": {
  9817. "symfony/form": "<4.4",
  9818. "symfony/messenger": "<4.4"
  9819. },
  9820. "require-dev": {
  9821. "symfony/browser-kit": "^4.4|^5.0",
  9822. "symfony/console": "^4.4|^5.0",
  9823. "symfony/css-selector": "^4.4|^5.0",
  9824. "symfony/stopwatch": "^4.4|^5.0"
  9825. },
  9826. "type": "symfony-bundle",
  9827. "extra": {
  9828. "branch-alias": {
  9829. "dev-master": "5.1-dev"
  9830. }
  9831. },
  9832. "autoload": {
  9833. "psr-4": {
  9834. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  9835. },
  9836. "exclude-from-classmap": [
  9837. "/Tests/"
  9838. ]
  9839. },
  9840. "notification-url": "https://packagist.org/downloads/",
  9841. "license": [
  9842. "MIT"
  9843. ],
  9844. "authors": [
  9845. {
  9846. "name": "Fabien Potencier",
  9847. "email": "fabien@symfony.com"
  9848. },
  9849. {
  9850. "name": "Symfony Community",
  9851. "homepage": "https://symfony.com/contributors"
  9852. }
  9853. ],
  9854. "description": "Symfony WebProfilerBundle",
  9855. "homepage": "https://symfony.com",
  9856. "funding": [
  9857. {
  9858. "url": "https://symfony.com/sponsor",
  9859. "type": "custom"
  9860. },
  9861. {
  9862. "url": "https://github.com/fabpot",
  9863. "type": "github"
  9864. },
  9865. {
  9866. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9867. "type": "tidelift"
  9868. }
  9869. ],
  9870. "time": "2020-09-07T05:10:28+00:00"
  9871. }
  9872. ],
  9873. "aliases": [],
  9874. "minimum-stability": "stable",
  9875. "stability-flags": {
  9876. "alchemy/zippy": 20
  9877. },
  9878. "prefer-stable": false,
  9879. "prefer-lowest": false,
  9880. "platform": {
  9881. "php": "^7.4",
  9882. "ext-ctype": "*",
  9883. "ext-iconv": "*"
  9884. },
  9885. "platform-dev": [],
  9886. "plugin-api-version": "1.1.0"
  9887. }