composer.lock 353 KB

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