composer.lock 343 KB

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