composer.lock 356 KB

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