composer.lock 308 KB

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