composer.lock 352 KB

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