composer.lock 230 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319
  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": "e1edeb7a703f009997f85a330fb2ae74",
  8. "packages": [
  9. {
  10. "name": "api-platform/core",
  11. "version": "v3.3.12",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/api-platform/core.git",
  15. "reference": "e2eeb6b710f96542b75357a13d8d69ed4d8be5e2"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/api-platform/core/zipball/e2eeb6b710f96542b75357a13d8d69ed4d8be5e2",
  20. "reference": "e2eeb6b710f96542b75357a13d8d69ed4d8be5e2",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/inflector": "^1.0 || ^2.0",
  25. "php": ">=8.1",
  26. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  27. "psr/container": "^1.0 || ^2.0",
  28. "symfony/deprecation-contracts": "^3.1",
  29. "symfony/http-foundation": "^6.4 || ^7.0",
  30. "symfony/http-kernel": "^6.4 || ^7.0",
  31. "symfony/property-access": "^6.4 || ^7.0",
  32. "symfony/property-info": "^6.4 || ^7.0",
  33. "symfony/serializer": "^6.4 || ^7.0",
  34. "symfony/translation-contracts": "^3.3",
  35. "symfony/web-link": "^6.4 || ^7.0",
  36. "willdurand/negotiation": "^3.0"
  37. },
  38. "conflict": {
  39. "doctrine/common": "<3.2.2",
  40. "doctrine/dbal": "<2.10",
  41. "doctrine/mongodb-odm": "<2.4",
  42. "doctrine/orm": "<2.14.0",
  43. "doctrine/persistence": "<1.3",
  44. "elasticsearch/elasticsearch": ">=8.0,<8.4",
  45. "phpspec/prophecy": "<1.15",
  46. "phpunit/phpunit": "<9.5",
  47. "symfony/framework-bundle": "6.4.6 || 7.0.6",
  48. "symfony/var-exporter": "<6.1.1"
  49. },
  50. "require-dev": {
  51. "behat/behat": "^3.11",
  52. "behat/mink": "^1.9",
  53. "doctrine/cache": "^1.11 || ^2.1",
  54. "doctrine/common": "^3.2.2",
  55. "doctrine/dbal": "^3.4.0",
  56. "doctrine/doctrine-bundle": "^1.12 || ^2.0",
  57. "doctrine/mongodb-odm": "^2.2",
  58. "doctrine/mongodb-odm-bundle": "^4.0 || ^5.0",
  59. "doctrine/orm": "^2.14 || ^3.0",
  60. "elasticsearch/elasticsearch": "^7.11 || ^8.4",
  61. "friends-of-behat/mink-browserkit-driver": "^1.3.1",
  62. "friends-of-behat/mink-extension": "^2.2",
  63. "friends-of-behat/symfony-extension": "^2.1",
  64. "guzzlehttp/guzzle": "^6.0 || ^7.0",
  65. "jangregor/phpstan-prophecy": "^1.0",
  66. "justinrainbow/json-schema": "^5.2.1",
  67. "phpspec/prophecy-phpunit": "^2.0",
  68. "phpstan/extension-installer": "^1.1",
  69. "phpstan/phpdoc-parser": "^1.13",
  70. "phpstan/phpstan": "^1.10",
  71. "phpstan/phpstan-doctrine": "^1.0",
  72. "phpstan/phpstan-phpunit": "^1.0",
  73. "phpstan/phpstan-symfony": "^1.0",
  74. "phpunit/phpunit": "^9.6",
  75. "psr/log": "^1.0 || ^2.0 || ^3.0",
  76. "ramsey/uuid": "^3.9.7 || ^4.0",
  77. "ramsey/uuid-doctrine": "^1.4 || ^2.0",
  78. "sebastian/comparator": "<5.0",
  79. "soyuka/contexts": "v3.3.9",
  80. "soyuka/pmu": "^0.0.2",
  81. "soyuka/stubs-mongodb": "^1.0",
  82. "symfony/asset": "^6.4 || ^7.0",
  83. "symfony/browser-kit": "^6.4 || ^7.0",
  84. "symfony/cache": "^6.4 || ^7.0",
  85. "symfony/config": "^6.4 || ^7.0",
  86. "symfony/console": "^6.4 || ^7.0",
  87. "symfony/css-selector": "^6.4 || ^7.0",
  88. "symfony/dependency-injection": "^6.4 || ^7.0.12",
  89. "symfony/doctrine-bridge": "^6.4 || ^7.0",
  90. "symfony/dom-crawler": "^6.4 || ^7.0",
  91. "symfony/error-handler": "^6.4 || ^7.0",
  92. "symfony/event-dispatcher": "^6.4 || ^7.0",
  93. "symfony/expression-language": "^6.4 || ^7.0",
  94. "symfony/finder": "^6.4 || ^7.0",
  95. "symfony/form": "^6.4 || ^7.0",
  96. "symfony/framework-bundle": "^6.4 || ^7.0",
  97. "symfony/http-client": "^6.4 || ^7.0",
  98. "symfony/intl": "^6.4 || ^7.0",
  99. "symfony/maker-bundle": "^1.24",
  100. "symfony/mercure-bundle": "*",
  101. "symfony/messenger": "^6.4 || ^7.0",
  102. "symfony/phpunit-bridge": "^6.4.1 || ^7.0",
  103. "symfony/routing": "^6.4 || ^7.0",
  104. "symfony/security-bundle": "^6.4 || ^7.0",
  105. "symfony/security-core": "^6.4 || ^7.0",
  106. "symfony/stopwatch": "^6.4 || ^7.0",
  107. "symfony/twig-bundle": "^6.4 || ^7.0",
  108. "symfony/uid": "^6.4 || ^7.0",
  109. "symfony/validator": "^6.4 || ^7.0",
  110. "symfony/web-profiler-bundle": "^6.4 || ^7.0",
  111. "symfony/yaml": "^6.4 || ^7.0",
  112. "twig/twig": "^1.42.3 || ^2.12 || ^3.0",
  113. "webonyx/graphql-php": "^14.0 || ^15.0"
  114. },
  115. "suggest": {
  116. "doctrine/mongodb-odm-bundle": "To support MongoDB. Only versions 4.0 and later are supported.",
  117. "elasticsearch/elasticsearch": "To support Elasticsearch.",
  118. "ocramius/package-versions": "To display the API Platform's version in the debug bar.",
  119. "phpstan/phpdoc-parser": "To support extracting metadata from PHPDoc.",
  120. "psr/cache-implementation": "To use metadata caching.",
  121. "ramsey/uuid": "To support Ramsey's UUID identifiers.",
  122. "symfony/cache": "To have metadata caching when using Symfony integration.",
  123. "symfony/config": "To load XML configuration files.",
  124. "symfony/expression-language": "To use authorization features.",
  125. "symfony/http-client": "To use the HTTP cache invalidation system.",
  126. "symfony/messenger": "To support messenger integration.",
  127. "symfony/security": "To use authorization features.",
  128. "symfony/twig-bundle": "To use the Swagger UI integration.",
  129. "symfony/uid": "To support Symfony UUID/ULID identifiers.",
  130. "symfony/web-profiler-bundle": "To use the data collector.",
  131. "webonyx/graphql-php": "To support GraphQL."
  132. },
  133. "type": "library",
  134. "extra": {
  135. "branch-alias": {
  136. "dev-main": "3.3.x-dev"
  137. },
  138. "symfony": {
  139. "require": "^6.4 || ^7.0"
  140. },
  141. "projects": [
  142. "api-platform/doctrine-common",
  143. "api-platform/doctrine-orm",
  144. "api-platform/doctrine-odm",
  145. "api-platform/metadata",
  146. "api-platform/json-schema",
  147. "api-platform/elasticsearch",
  148. "api-platform/jsonld",
  149. "api-platform/hydra",
  150. "api-platform/openapi",
  151. "api-platform/graphql",
  152. "api-platform/http-cache",
  153. "api-platform/documentation",
  154. "api-platform/parameter-validator",
  155. "api-platform/ramsey-uuid",
  156. "api-platform/serializer",
  157. "api-platform/state",
  158. "api-platform/symfony",
  159. "api-platform/validator"
  160. ]
  161. },
  162. "autoload": {
  163. "psr-4": {
  164. "ApiPlatform\\": "src/"
  165. }
  166. },
  167. "notification-url": "https://packagist.org/downloads/",
  168. "license": [
  169. "MIT"
  170. ],
  171. "authors": [
  172. {
  173. "name": "Kévin Dunglas",
  174. "email": "kevin@dunglas.fr",
  175. "homepage": "https://dunglas.fr"
  176. }
  177. ],
  178. "description": "Build a fully-featured hypermedia or GraphQL API in minutes!",
  179. "homepage": "https://api-platform.com",
  180. "keywords": [
  181. "Hydra",
  182. "JSON-LD",
  183. "api",
  184. "graphql",
  185. "hal",
  186. "jsonapi",
  187. "openapi",
  188. "rest",
  189. "swagger"
  190. ],
  191. "support": {
  192. "issues": "https://github.com/api-platform/core/issues",
  193. "source": "https://github.com/api-platform/core/tree/v3.3.12"
  194. },
  195. "time": "2024-08-30T14:44:44+00:00"
  196. },
  197. {
  198. "name": "doctrine/cache",
  199. "version": "2.2.0",
  200. "source": {
  201. "type": "git",
  202. "url": "https://github.com/doctrine/cache.git",
  203. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  204. },
  205. "dist": {
  206. "type": "zip",
  207. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  208. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  209. "shasum": ""
  210. },
  211. "require": {
  212. "php": "~7.1 || ^8.0"
  213. },
  214. "conflict": {
  215. "doctrine/common": ">2.2,<2.4"
  216. },
  217. "require-dev": {
  218. "cache/integration-tests": "dev-master",
  219. "doctrine/coding-standard": "^9",
  220. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  221. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  222. "symfony/cache": "^4.4 || ^5.4 || ^6",
  223. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  224. },
  225. "type": "library",
  226. "autoload": {
  227. "psr-4": {
  228. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  229. }
  230. },
  231. "notification-url": "https://packagist.org/downloads/",
  232. "license": [
  233. "MIT"
  234. ],
  235. "authors": [
  236. {
  237. "name": "Guilherme Blanco",
  238. "email": "guilhermeblanco@gmail.com"
  239. },
  240. {
  241. "name": "Roman Borschel",
  242. "email": "roman@code-factory.org"
  243. },
  244. {
  245. "name": "Benjamin Eberlei",
  246. "email": "kontakt@beberlei.de"
  247. },
  248. {
  249. "name": "Jonathan Wage",
  250. "email": "jonwage@gmail.com"
  251. },
  252. {
  253. "name": "Johannes Schmitt",
  254. "email": "schmittjoh@gmail.com"
  255. }
  256. ],
  257. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  258. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  259. "keywords": [
  260. "abstraction",
  261. "apcu",
  262. "cache",
  263. "caching",
  264. "couchdb",
  265. "memcached",
  266. "php",
  267. "redis",
  268. "xcache"
  269. ],
  270. "support": {
  271. "issues": "https://github.com/doctrine/cache/issues",
  272. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  273. },
  274. "funding": [
  275. {
  276. "url": "https://www.doctrine-project.org/sponsorship.html",
  277. "type": "custom"
  278. },
  279. {
  280. "url": "https://www.patreon.com/phpdoctrine",
  281. "type": "patreon"
  282. },
  283. {
  284. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  285. "type": "tidelift"
  286. }
  287. ],
  288. "time": "2022-05-20T20:07:39+00:00"
  289. },
  290. {
  291. "name": "doctrine/collections",
  292. "version": "2.2.2",
  293. "source": {
  294. "type": "git",
  295. "url": "https://github.com/doctrine/collections.git",
  296. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59"
  297. },
  298. "dist": {
  299. "type": "zip",
  300. "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59",
  301. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  302. "shasum": ""
  303. },
  304. "require": {
  305. "doctrine/deprecations": "^1",
  306. "php": "^8.1"
  307. },
  308. "require-dev": {
  309. "doctrine/coding-standard": "^12",
  310. "ext-json": "*",
  311. "phpstan/phpstan": "^1.8",
  312. "phpstan/phpstan-phpunit": "^1.0",
  313. "phpunit/phpunit": "^10.5",
  314. "vimeo/psalm": "^5.11"
  315. },
  316. "type": "library",
  317. "autoload": {
  318. "psr-4": {
  319. "Doctrine\\Common\\Collections\\": "src"
  320. }
  321. },
  322. "notification-url": "https://packagist.org/downloads/",
  323. "license": [
  324. "MIT"
  325. ],
  326. "authors": [
  327. {
  328. "name": "Guilherme Blanco",
  329. "email": "guilhermeblanco@gmail.com"
  330. },
  331. {
  332. "name": "Roman Borschel",
  333. "email": "roman@code-factory.org"
  334. },
  335. {
  336. "name": "Benjamin Eberlei",
  337. "email": "kontakt@beberlei.de"
  338. },
  339. {
  340. "name": "Jonathan Wage",
  341. "email": "jonwage@gmail.com"
  342. },
  343. {
  344. "name": "Johannes Schmitt",
  345. "email": "schmittjoh@gmail.com"
  346. }
  347. ],
  348. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  349. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  350. "keywords": [
  351. "array",
  352. "collections",
  353. "iterators",
  354. "php"
  355. ],
  356. "support": {
  357. "issues": "https://github.com/doctrine/collections/issues",
  358. "source": "https://github.com/doctrine/collections/tree/2.2.2"
  359. },
  360. "funding": [
  361. {
  362. "url": "https://www.doctrine-project.org/sponsorship.html",
  363. "type": "custom"
  364. },
  365. {
  366. "url": "https://www.patreon.com/phpdoctrine",
  367. "type": "patreon"
  368. },
  369. {
  370. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  371. "type": "tidelift"
  372. }
  373. ],
  374. "time": "2024-04-18T06:56:21+00:00"
  375. },
  376. {
  377. "name": "doctrine/dbal",
  378. "version": "3.9.1",
  379. "source": {
  380. "type": "git",
  381. "url": "https://github.com/doctrine/dbal.git",
  382. "reference": "d7dc08f98cba352b2bab5d32c5e58f7e745c11a7"
  383. },
  384. "dist": {
  385. "type": "zip",
  386. "url": "https://api.github.com/repos/doctrine/dbal/zipball/d7dc08f98cba352b2bab5d32c5e58f7e745c11a7",
  387. "reference": "d7dc08f98cba352b2bab5d32c5e58f7e745c11a7",
  388. "shasum": ""
  389. },
  390. "require": {
  391. "composer-runtime-api": "^2",
  392. "doctrine/cache": "^1.11|^2.0",
  393. "doctrine/deprecations": "^0.5.3|^1",
  394. "doctrine/event-manager": "^1|^2",
  395. "php": "^7.4 || ^8.0",
  396. "psr/cache": "^1|^2|^3",
  397. "psr/log": "^1|^2|^3"
  398. },
  399. "require-dev": {
  400. "doctrine/coding-standard": "12.0.0",
  401. "fig/log-test": "^1",
  402. "jetbrains/phpstorm-stubs": "2023.1",
  403. "phpstan/phpstan": "1.12.0",
  404. "phpstan/phpstan-strict-rules": "^1.6",
  405. "phpunit/phpunit": "9.6.20",
  406. "psalm/plugin-phpunit": "0.18.4",
  407. "slevomat/coding-standard": "8.13.1",
  408. "squizlabs/php_codesniffer": "3.10.2",
  409. "symfony/cache": "^5.4|^6.0|^7.0",
  410. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  411. "vimeo/psalm": "4.30.0"
  412. },
  413. "suggest": {
  414. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  415. },
  416. "bin": [
  417. "bin/doctrine-dbal"
  418. ],
  419. "type": "library",
  420. "autoload": {
  421. "psr-4": {
  422. "Doctrine\\DBAL\\": "src"
  423. }
  424. },
  425. "notification-url": "https://packagist.org/downloads/",
  426. "license": [
  427. "MIT"
  428. ],
  429. "authors": [
  430. {
  431. "name": "Guilherme Blanco",
  432. "email": "guilhermeblanco@gmail.com"
  433. },
  434. {
  435. "name": "Roman Borschel",
  436. "email": "roman@code-factory.org"
  437. },
  438. {
  439. "name": "Benjamin Eberlei",
  440. "email": "kontakt@beberlei.de"
  441. },
  442. {
  443. "name": "Jonathan Wage",
  444. "email": "jonwage@gmail.com"
  445. }
  446. ],
  447. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  448. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  449. "keywords": [
  450. "abstraction",
  451. "database",
  452. "db2",
  453. "dbal",
  454. "mariadb",
  455. "mssql",
  456. "mysql",
  457. "oci8",
  458. "oracle",
  459. "pdo",
  460. "pgsql",
  461. "postgresql",
  462. "queryobject",
  463. "sasql",
  464. "sql",
  465. "sqlite",
  466. "sqlserver",
  467. "sqlsrv"
  468. ],
  469. "support": {
  470. "issues": "https://github.com/doctrine/dbal/issues",
  471. "source": "https://github.com/doctrine/dbal/tree/3.9.1"
  472. },
  473. "funding": [
  474. {
  475. "url": "https://www.doctrine-project.org/sponsorship.html",
  476. "type": "custom"
  477. },
  478. {
  479. "url": "https://www.patreon.com/phpdoctrine",
  480. "type": "patreon"
  481. },
  482. {
  483. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  484. "type": "tidelift"
  485. }
  486. ],
  487. "time": "2024-09-01T13:49:23+00:00"
  488. },
  489. {
  490. "name": "doctrine/deprecations",
  491. "version": "1.1.3",
  492. "source": {
  493. "type": "git",
  494. "url": "https://github.com/doctrine/deprecations.git",
  495. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  496. },
  497. "dist": {
  498. "type": "zip",
  499. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  500. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  501. "shasum": ""
  502. },
  503. "require": {
  504. "php": "^7.1 || ^8.0"
  505. },
  506. "require-dev": {
  507. "doctrine/coding-standard": "^9",
  508. "phpstan/phpstan": "1.4.10 || 1.10.15",
  509. "phpstan/phpstan-phpunit": "^1.0",
  510. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  511. "psalm/plugin-phpunit": "0.18.4",
  512. "psr/log": "^1 || ^2 || ^3",
  513. "vimeo/psalm": "4.30.0 || 5.12.0"
  514. },
  515. "suggest": {
  516. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  517. },
  518. "type": "library",
  519. "autoload": {
  520. "psr-4": {
  521. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  522. }
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "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.",
  529. "homepage": "https://www.doctrine-project.org/",
  530. "support": {
  531. "issues": "https://github.com/doctrine/deprecations/issues",
  532. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  533. },
  534. "time": "2024-01-30T19:34:25+00:00"
  535. },
  536. {
  537. "name": "doctrine/doctrine-bundle",
  538. "version": "2.13.0",
  539. "source": {
  540. "type": "git",
  541. "url": "https://github.com/doctrine/DoctrineBundle.git",
  542. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563"
  543. },
  544. "dist": {
  545. "type": "zip",
  546. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563",
  547. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563",
  548. "shasum": ""
  549. },
  550. "require": {
  551. "doctrine/cache": "^1.11 || ^2.0",
  552. "doctrine/dbal": "^3.7.0 || ^4.0",
  553. "doctrine/persistence": "^2.2 || ^3",
  554. "doctrine/sql-formatter": "^1.0.1",
  555. "php": "^7.4 || ^8.0",
  556. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  557. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  558. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  559. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  560. "symfony/deprecation-contracts": "^2.1 || ^3",
  561. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  562. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  563. "symfony/polyfill-php80": "^1.15",
  564. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  565. },
  566. "conflict": {
  567. "doctrine/annotations": ">=3.0",
  568. "doctrine/orm": "<2.17 || >=4.0",
  569. "twig/twig": "<1.34 || >=2.0 <2.4"
  570. },
  571. "require-dev": {
  572. "doctrine/annotations": "^1 || ^2",
  573. "doctrine/coding-standard": "^12",
  574. "doctrine/deprecations": "^1.0",
  575. "doctrine/orm": "^2.17 || ^3.0",
  576. "friendsofphp/proxy-manager-lts": "^1.0",
  577. "phpunit/phpunit": "^9.5.26",
  578. "psalm/plugin-phpunit": "^0.18.4",
  579. "psalm/plugin-symfony": "^5",
  580. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  581. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  582. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  583. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  584. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  585. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  586. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  587. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  588. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  589. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  590. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  591. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  592. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  593. "vimeo/psalm": "^5.15"
  594. },
  595. "suggest": {
  596. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  597. "ext-pdo": "*",
  598. "symfony/web-profiler-bundle": "To use the data collector."
  599. },
  600. "type": "symfony-bundle",
  601. "autoload": {
  602. "psr-4": {
  603. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  604. }
  605. },
  606. "notification-url": "https://packagist.org/downloads/",
  607. "license": [
  608. "MIT"
  609. ],
  610. "authors": [
  611. {
  612. "name": "Fabien Potencier",
  613. "email": "fabien@symfony.com"
  614. },
  615. {
  616. "name": "Benjamin Eberlei",
  617. "email": "kontakt@beberlei.de"
  618. },
  619. {
  620. "name": "Symfony Community",
  621. "homepage": "https://symfony.com/contributors"
  622. },
  623. {
  624. "name": "Doctrine Project",
  625. "homepage": "https://www.doctrine-project.org/"
  626. }
  627. ],
  628. "description": "Symfony DoctrineBundle",
  629. "homepage": "https://www.doctrine-project.org",
  630. "keywords": [
  631. "database",
  632. "dbal",
  633. "orm",
  634. "persistence"
  635. ],
  636. "support": {
  637. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  638. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0"
  639. },
  640. "funding": [
  641. {
  642. "url": "https://www.doctrine-project.org/sponsorship.html",
  643. "type": "custom"
  644. },
  645. {
  646. "url": "https://www.patreon.com/phpdoctrine",
  647. "type": "patreon"
  648. },
  649. {
  650. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  651. "type": "tidelift"
  652. }
  653. ],
  654. "time": "2024-09-01T09:46:40+00:00"
  655. },
  656. {
  657. "name": "doctrine/doctrine-migrations-bundle",
  658. "version": "3.3.1",
  659. "source": {
  660. "type": "git",
  661. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  662. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
  663. },
  664. "dist": {
  665. "type": "zip",
  666. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  667. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  668. "shasum": ""
  669. },
  670. "require": {
  671. "doctrine/doctrine-bundle": "^2.4",
  672. "doctrine/migrations": "^3.2",
  673. "php": "^7.2|^8.0",
  674. "symfony/deprecation-contracts": "^2.1 || ^3",
  675. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  676. },
  677. "require-dev": {
  678. "composer/semver": "^3.0",
  679. "doctrine/coding-standard": "^12",
  680. "doctrine/orm": "^2.6 || ^3",
  681. "doctrine/persistence": "^2.0 || ^3 ",
  682. "phpstan/phpstan": "^1.4",
  683. "phpstan/phpstan-deprecation-rules": "^1",
  684. "phpstan/phpstan-phpunit": "^1",
  685. "phpstan/phpstan-strict-rules": "^1.1",
  686. "phpstan/phpstan-symfony": "^1.3",
  687. "phpunit/phpunit": "^8.5|^9.5",
  688. "psalm/plugin-phpunit": "^0.18.4",
  689. "psalm/plugin-symfony": "^3 || ^5",
  690. "symfony/phpunit-bridge": "^6.3 || ^7",
  691. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  692. "vimeo/psalm": "^4.30 || ^5.15"
  693. },
  694. "type": "symfony-bundle",
  695. "autoload": {
  696. "psr-4": {
  697. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  698. },
  699. "exclude-from-classmap": [
  700. "/Tests/"
  701. ]
  702. },
  703. "notification-url": "https://packagist.org/downloads/",
  704. "license": [
  705. "MIT"
  706. ],
  707. "authors": [
  708. {
  709. "name": "Fabien Potencier",
  710. "email": "fabien@symfony.com"
  711. },
  712. {
  713. "name": "Doctrine Project",
  714. "homepage": "https://www.doctrine-project.org"
  715. },
  716. {
  717. "name": "Symfony Community",
  718. "homepage": "https://symfony.com/contributors"
  719. }
  720. ],
  721. "description": "Symfony DoctrineMigrationsBundle",
  722. "homepage": "https://www.doctrine-project.org",
  723. "keywords": [
  724. "dbal",
  725. "migrations",
  726. "schema"
  727. ],
  728. "support": {
  729. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  730. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
  731. },
  732. "funding": [
  733. {
  734. "url": "https://www.doctrine-project.org/sponsorship.html",
  735. "type": "custom"
  736. },
  737. {
  738. "url": "https://www.patreon.com/phpdoctrine",
  739. "type": "patreon"
  740. },
  741. {
  742. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  743. "type": "tidelift"
  744. }
  745. ],
  746. "time": "2024-05-14T20:32:18+00:00"
  747. },
  748. {
  749. "name": "doctrine/event-manager",
  750. "version": "2.0.1",
  751. "source": {
  752. "type": "git",
  753. "url": "https://github.com/doctrine/event-manager.git",
  754. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  755. },
  756. "dist": {
  757. "type": "zip",
  758. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  759. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  760. "shasum": ""
  761. },
  762. "require": {
  763. "php": "^8.1"
  764. },
  765. "conflict": {
  766. "doctrine/common": "<2.9"
  767. },
  768. "require-dev": {
  769. "doctrine/coding-standard": "^12",
  770. "phpstan/phpstan": "^1.8.8",
  771. "phpunit/phpunit": "^10.5",
  772. "vimeo/psalm": "^5.24"
  773. },
  774. "type": "library",
  775. "autoload": {
  776. "psr-4": {
  777. "Doctrine\\Common\\": "src"
  778. }
  779. },
  780. "notification-url": "https://packagist.org/downloads/",
  781. "license": [
  782. "MIT"
  783. ],
  784. "authors": [
  785. {
  786. "name": "Guilherme Blanco",
  787. "email": "guilhermeblanco@gmail.com"
  788. },
  789. {
  790. "name": "Roman Borschel",
  791. "email": "roman@code-factory.org"
  792. },
  793. {
  794. "name": "Benjamin Eberlei",
  795. "email": "kontakt@beberlei.de"
  796. },
  797. {
  798. "name": "Jonathan Wage",
  799. "email": "jonwage@gmail.com"
  800. },
  801. {
  802. "name": "Johannes Schmitt",
  803. "email": "schmittjoh@gmail.com"
  804. },
  805. {
  806. "name": "Marco Pivetta",
  807. "email": "ocramius@gmail.com"
  808. }
  809. ],
  810. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  811. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  812. "keywords": [
  813. "event",
  814. "event dispatcher",
  815. "event manager",
  816. "event system",
  817. "events"
  818. ],
  819. "support": {
  820. "issues": "https://github.com/doctrine/event-manager/issues",
  821. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  822. },
  823. "funding": [
  824. {
  825. "url": "https://www.doctrine-project.org/sponsorship.html",
  826. "type": "custom"
  827. },
  828. {
  829. "url": "https://www.patreon.com/phpdoctrine",
  830. "type": "patreon"
  831. },
  832. {
  833. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  834. "type": "tidelift"
  835. }
  836. ],
  837. "time": "2024-05-22T20:47:39+00:00"
  838. },
  839. {
  840. "name": "doctrine/inflector",
  841. "version": "2.0.10",
  842. "source": {
  843. "type": "git",
  844. "url": "https://github.com/doctrine/inflector.git",
  845. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  846. },
  847. "dist": {
  848. "type": "zip",
  849. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  850. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  851. "shasum": ""
  852. },
  853. "require": {
  854. "php": "^7.2 || ^8.0"
  855. },
  856. "require-dev": {
  857. "doctrine/coding-standard": "^11.0",
  858. "phpstan/phpstan": "^1.8",
  859. "phpstan/phpstan-phpunit": "^1.1",
  860. "phpstan/phpstan-strict-rules": "^1.3",
  861. "phpunit/phpunit": "^8.5 || ^9.5",
  862. "vimeo/psalm": "^4.25 || ^5.4"
  863. },
  864. "type": "library",
  865. "autoload": {
  866. "psr-4": {
  867. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  868. }
  869. },
  870. "notification-url": "https://packagist.org/downloads/",
  871. "license": [
  872. "MIT"
  873. ],
  874. "authors": [
  875. {
  876. "name": "Guilherme Blanco",
  877. "email": "guilhermeblanco@gmail.com"
  878. },
  879. {
  880. "name": "Roman Borschel",
  881. "email": "roman@code-factory.org"
  882. },
  883. {
  884. "name": "Benjamin Eberlei",
  885. "email": "kontakt@beberlei.de"
  886. },
  887. {
  888. "name": "Jonathan Wage",
  889. "email": "jonwage@gmail.com"
  890. },
  891. {
  892. "name": "Johannes Schmitt",
  893. "email": "schmittjoh@gmail.com"
  894. }
  895. ],
  896. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  897. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  898. "keywords": [
  899. "inflection",
  900. "inflector",
  901. "lowercase",
  902. "manipulation",
  903. "php",
  904. "plural",
  905. "singular",
  906. "strings",
  907. "uppercase",
  908. "words"
  909. ],
  910. "support": {
  911. "issues": "https://github.com/doctrine/inflector/issues",
  912. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  913. },
  914. "funding": [
  915. {
  916. "url": "https://www.doctrine-project.org/sponsorship.html",
  917. "type": "custom"
  918. },
  919. {
  920. "url": "https://www.patreon.com/phpdoctrine",
  921. "type": "patreon"
  922. },
  923. {
  924. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  925. "type": "tidelift"
  926. }
  927. ],
  928. "time": "2024-02-18T20:23:39+00:00"
  929. },
  930. {
  931. "name": "doctrine/instantiator",
  932. "version": "2.0.0",
  933. "source": {
  934. "type": "git",
  935. "url": "https://github.com/doctrine/instantiator.git",
  936. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  937. },
  938. "dist": {
  939. "type": "zip",
  940. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  941. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  942. "shasum": ""
  943. },
  944. "require": {
  945. "php": "^8.1"
  946. },
  947. "require-dev": {
  948. "doctrine/coding-standard": "^11",
  949. "ext-pdo": "*",
  950. "ext-phar": "*",
  951. "phpbench/phpbench": "^1.2",
  952. "phpstan/phpstan": "^1.9.4",
  953. "phpstan/phpstan-phpunit": "^1.3",
  954. "phpunit/phpunit": "^9.5.27",
  955. "vimeo/psalm": "^5.4"
  956. },
  957. "type": "library",
  958. "autoload": {
  959. "psr-4": {
  960. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  961. }
  962. },
  963. "notification-url": "https://packagist.org/downloads/",
  964. "license": [
  965. "MIT"
  966. ],
  967. "authors": [
  968. {
  969. "name": "Marco Pivetta",
  970. "email": "ocramius@gmail.com",
  971. "homepage": "https://ocramius.github.io/"
  972. }
  973. ],
  974. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  975. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  976. "keywords": [
  977. "constructor",
  978. "instantiate"
  979. ],
  980. "support": {
  981. "issues": "https://github.com/doctrine/instantiator/issues",
  982. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  983. },
  984. "funding": [
  985. {
  986. "url": "https://www.doctrine-project.org/sponsorship.html",
  987. "type": "custom"
  988. },
  989. {
  990. "url": "https://www.patreon.com/phpdoctrine",
  991. "type": "patreon"
  992. },
  993. {
  994. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  995. "type": "tidelift"
  996. }
  997. ],
  998. "time": "2022-12-30T00:23:10+00:00"
  999. },
  1000. {
  1001. "name": "doctrine/lexer",
  1002. "version": "3.0.1",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/doctrine/lexer.git",
  1006. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1011. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1012. "shasum": ""
  1013. },
  1014. "require": {
  1015. "php": "^8.1"
  1016. },
  1017. "require-dev": {
  1018. "doctrine/coding-standard": "^12",
  1019. "phpstan/phpstan": "^1.10",
  1020. "phpunit/phpunit": "^10.5",
  1021. "psalm/plugin-phpunit": "^0.18.3",
  1022. "vimeo/psalm": "^5.21"
  1023. },
  1024. "type": "library",
  1025. "autoload": {
  1026. "psr-4": {
  1027. "Doctrine\\Common\\Lexer\\": "src"
  1028. }
  1029. },
  1030. "notification-url": "https://packagist.org/downloads/",
  1031. "license": [
  1032. "MIT"
  1033. ],
  1034. "authors": [
  1035. {
  1036. "name": "Guilherme Blanco",
  1037. "email": "guilhermeblanco@gmail.com"
  1038. },
  1039. {
  1040. "name": "Roman Borschel",
  1041. "email": "roman@code-factory.org"
  1042. },
  1043. {
  1044. "name": "Johannes Schmitt",
  1045. "email": "schmittjoh@gmail.com"
  1046. }
  1047. ],
  1048. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1049. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1050. "keywords": [
  1051. "annotations",
  1052. "docblock",
  1053. "lexer",
  1054. "parser",
  1055. "php"
  1056. ],
  1057. "support": {
  1058. "issues": "https://github.com/doctrine/lexer/issues",
  1059. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1060. },
  1061. "funding": [
  1062. {
  1063. "url": "https://www.doctrine-project.org/sponsorship.html",
  1064. "type": "custom"
  1065. },
  1066. {
  1067. "url": "https://www.patreon.com/phpdoctrine",
  1068. "type": "patreon"
  1069. },
  1070. {
  1071. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1072. "type": "tidelift"
  1073. }
  1074. ],
  1075. "time": "2024-02-05T11:56:58+00:00"
  1076. },
  1077. {
  1078. "name": "doctrine/migrations",
  1079. "version": "3.8.1",
  1080. "source": {
  1081. "type": "git",
  1082. "url": "https://github.com/doctrine/migrations.git",
  1083. "reference": "7760fbd0b7cb58bfb50415505a7bab821adf0877"
  1084. },
  1085. "dist": {
  1086. "type": "zip",
  1087. "url": "https://api.github.com/repos/doctrine/migrations/zipball/7760fbd0b7cb58bfb50415505a7bab821adf0877",
  1088. "reference": "7760fbd0b7cb58bfb50415505a7bab821adf0877",
  1089. "shasum": ""
  1090. },
  1091. "require": {
  1092. "composer-runtime-api": "^2",
  1093. "doctrine/dbal": "^3.6 || ^4",
  1094. "doctrine/deprecations": "^0.5.3 || ^1",
  1095. "doctrine/event-manager": "^1.2 || ^2.0",
  1096. "php": "^8.1",
  1097. "psr/log": "^1.1.3 || ^2 || ^3",
  1098. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1099. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1100. "symfony/var-exporter": "^6.2 || ^7.0"
  1101. },
  1102. "conflict": {
  1103. "doctrine/orm": "<2.12 || >=4"
  1104. },
  1105. "require-dev": {
  1106. "doctrine/coding-standard": "^12",
  1107. "doctrine/orm": "^2.13 || ^3",
  1108. "doctrine/persistence": "^2 || ^3",
  1109. "doctrine/sql-formatter": "^1.0",
  1110. "ext-pdo_sqlite": "*",
  1111. "fig/log-test": "^1",
  1112. "phpstan/phpstan": "^1.10",
  1113. "phpstan/phpstan-deprecation-rules": "^1.1",
  1114. "phpstan/phpstan-phpunit": "^1.3",
  1115. "phpstan/phpstan-strict-rules": "^1.4",
  1116. "phpstan/phpstan-symfony": "^1.3",
  1117. "phpunit/phpunit": "^10.3",
  1118. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1119. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1120. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1121. },
  1122. "suggest": {
  1123. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1124. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1125. },
  1126. "bin": [
  1127. "bin/doctrine-migrations"
  1128. ],
  1129. "type": "library",
  1130. "autoload": {
  1131. "psr-4": {
  1132. "Doctrine\\Migrations\\": "src"
  1133. }
  1134. },
  1135. "notification-url": "https://packagist.org/downloads/",
  1136. "license": [
  1137. "MIT"
  1138. ],
  1139. "authors": [
  1140. {
  1141. "name": "Benjamin Eberlei",
  1142. "email": "kontakt@beberlei.de"
  1143. },
  1144. {
  1145. "name": "Jonathan Wage",
  1146. "email": "jonwage@gmail.com"
  1147. },
  1148. {
  1149. "name": "Michael Simonson",
  1150. "email": "contact@mikesimonson.com"
  1151. }
  1152. ],
  1153. "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.",
  1154. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1155. "keywords": [
  1156. "database",
  1157. "dbal",
  1158. "migrations"
  1159. ],
  1160. "support": {
  1161. "issues": "https://github.com/doctrine/migrations/issues",
  1162. "source": "https://github.com/doctrine/migrations/tree/3.8.1"
  1163. },
  1164. "funding": [
  1165. {
  1166. "url": "https://www.doctrine-project.org/sponsorship.html",
  1167. "type": "custom"
  1168. },
  1169. {
  1170. "url": "https://www.patreon.com/phpdoctrine",
  1171. "type": "patreon"
  1172. },
  1173. {
  1174. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1175. "type": "tidelift"
  1176. }
  1177. ],
  1178. "time": "2024-08-28T13:17:28+00:00"
  1179. },
  1180. {
  1181. "name": "doctrine/orm",
  1182. "version": "3.2.2",
  1183. "source": {
  1184. "type": "git",
  1185. "url": "https://github.com/doctrine/orm.git",
  1186. "reference": "831a1eb7d260925528cdbb49cc1866c0357cf147"
  1187. },
  1188. "dist": {
  1189. "type": "zip",
  1190. "url": "https://api.github.com/repos/doctrine/orm/zipball/831a1eb7d260925528cdbb49cc1866c0357cf147",
  1191. "reference": "831a1eb7d260925528cdbb49cc1866c0357cf147",
  1192. "shasum": ""
  1193. },
  1194. "require": {
  1195. "composer-runtime-api": "^2",
  1196. "doctrine/collections": "^2.2",
  1197. "doctrine/dbal": "^3.8.2 || ^4",
  1198. "doctrine/deprecations": "^0.5.3 || ^1",
  1199. "doctrine/event-manager": "^1.2 || ^2",
  1200. "doctrine/inflector": "^1.4 || ^2.0",
  1201. "doctrine/instantiator": "^1.3 || ^2",
  1202. "doctrine/lexer": "^3",
  1203. "doctrine/persistence": "^3.3.1",
  1204. "ext-ctype": "*",
  1205. "php": "^8.1",
  1206. "psr/cache": "^1 || ^2 || ^3",
  1207. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1208. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1209. },
  1210. "require-dev": {
  1211. "doctrine/coding-standard": "^12.0",
  1212. "phpbench/phpbench": "^1.0",
  1213. "phpstan/phpstan": "1.11.1",
  1214. "phpunit/phpunit": "^10.4.0",
  1215. "psr/log": "^1 || ^2 || ^3",
  1216. "squizlabs/php_codesniffer": "3.7.2",
  1217. "symfony/cache": "^5.4 || ^6.2 || ^7.0",
  1218. "vimeo/psalm": "5.24.0"
  1219. },
  1220. "suggest": {
  1221. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1222. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1223. },
  1224. "type": "library",
  1225. "autoload": {
  1226. "psr-4": {
  1227. "Doctrine\\ORM\\": "src"
  1228. }
  1229. },
  1230. "notification-url": "https://packagist.org/downloads/",
  1231. "license": [
  1232. "MIT"
  1233. ],
  1234. "authors": [
  1235. {
  1236. "name": "Guilherme Blanco",
  1237. "email": "guilhermeblanco@gmail.com"
  1238. },
  1239. {
  1240. "name": "Roman Borschel",
  1241. "email": "roman@code-factory.org"
  1242. },
  1243. {
  1244. "name": "Benjamin Eberlei",
  1245. "email": "kontakt@beberlei.de"
  1246. },
  1247. {
  1248. "name": "Jonathan Wage",
  1249. "email": "jonwage@gmail.com"
  1250. },
  1251. {
  1252. "name": "Marco Pivetta",
  1253. "email": "ocramius@gmail.com"
  1254. }
  1255. ],
  1256. "description": "Object-Relational-Mapper for PHP",
  1257. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1258. "keywords": [
  1259. "database",
  1260. "orm"
  1261. ],
  1262. "support": {
  1263. "issues": "https://github.com/doctrine/orm/issues",
  1264. "source": "https://github.com/doctrine/orm/tree/3.2.2"
  1265. },
  1266. "time": "2024-08-23T10:03:52+00:00"
  1267. },
  1268. {
  1269. "name": "doctrine/persistence",
  1270. "version": "3.3.3",
  1271. "source": {
  1272. "type": "git",
  1273. "url": "https://github.com/doctrine/persistence.git",
  1274. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1275. },
  1276. "dist": {
  1277. "type": "zip",
  1278. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1279. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1280. "shasum": ""
  1281. },
  1282. "require": {
  1283. "doctrine/event-manager": "^1 || ^2",
  1284. "php": "^7.2 || ^8.0",
  1285. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1286. },
  1287. "conflict": {
  1288. "doctrine/common": "<2.10"
  1289. },
  1290. "require-dev": {
  1291. "doctrine/coding-standard": "^12",
  1292. "doctrine/common": "^3.0",
  1293. "phpstan/phpstan": "1.11.1",
  1294. "phpstan/phpstan-phpunit": "^1",
  1295. "phpstan/phpstan-strict-rules": "^1.1",
  1296. "phpunit/phpunit": "^8.5 || ^9.5",
  1297. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1298. "vimeo/psalm": "4.30.0 || 5.24.0"
  1299. },
  1300. "type": "library",
  1301. "autoload": {
  1302. "psr-4": {
  1303. "Doctrine\\Persistence\\": "src/Persistence"
  1304. }
  1305. },
  1306. "notification-url": "https://packagist.org/downloads/",
  1307. "license": [
  1308. "MIT"
  1309. ],
  1310. "authors": [
  1311. {
  1312. "name": "Guilherme Blanco",
  1313. "email": "guilhermeblanco@gmail.com"
  1314. },
  1315. {
  1316. "name": "Roman Borschel",
  1317. "email": "roman@code-factory.org"
  1318. },
  1319. {
  1320. "name": "Benjamin Eberlei",
  1321. "email": "kontakt@beberlei.de"
  1322. },
  1323. {
  1324. "name": "Jonathan Wage",
  1325. "email": "jonwage@gmail.com"
  1326. },
  1327. {
  1328. "name": "Johannes Schmitt",
  1329. "email": "schmittjoh@gmail.com"
  1330. },
  1331. {
  1332. "name": "Marco Pivetta",
  1333. "email": "ocramius@gmail.com"
  1334. }
  1335. ],
  1336. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1337. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1338. "keywords": [
  1339. "mapper",
  1340. "object",
  1341. "odm",
  1342. "orm",
  1343. "persistence"
  1344. ],
  1345. "support": {
  1346. "issues": "https://github.com/doctrine/persistence/issues",
  1347. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1348. },
  1349. "funding": [
  1350. {
  1351. "url": "https://www.doctrine-project.org/sponsorship.html",
  1352. "type": "custom"
  1353. },
  1354. {
  1355. "url": "https://www.patreon.com/phpdoctrine",
  1356. "type": "patreon"
  1357. },
  1358. {
  1359. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1360. "type": "tidelift"
  1361. }
  1362. ],
  1363. "time": "2024-06-20T10:14:30+00:00"
  1364. },
  1365. {
  1366. "name": "doctrine/sql-formatter",
  1367. "version": "1.4.1",
  1368. "source": {
  1369. "type": "git",
  1370. "url": "https://github.com/doctrine/sql-formatter.git",
  1371. "reference": "7f83911cc5eba870de7ebb11283972483f7e2891"
  1372. },
  1373. "dist": {
  1374. "type": "zip",
  1375. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/7f83911cc5eba870de7ebb11283972483f7e2891",
  1376. "reference": "7f83911cc5eba870de7ebb11283972483f7e2891",
  1377. "shasum": ""
  1378. },
  1379. "require": {
  1380. "php": "^8.1"
  1381. },
  1382. "require-dev": {
  1383. "doctrine/coding-standard": "^12",
  1384. "phpstan/phpstan": "^1.10",
  1385. "phpunit/phpunit": "^10.5",
  1386. "vimeo/psalm": "^5.24"
  1387. },
  1388. "bin": [
  1389. "bin/sql-formatter"
  1390. ],
  1391. "type": "library",
  1392. "autoload": {
  1393. "psr-4": {
  1394. "Doctrine\\SqlFormatter\\": "src"
  1395. }
  1396. },
  1397. "notification-url": "https://packagist.org/downloads/",
  1398. "license": [
  1399. "MIT"
  1400. ],
  1401. "authors": [
  1402. {
  1403. "name": "Jeremy Dorn",
  1404. "email": "jeremy@jeremydorn.com",
  1405. "homepage": "https://jeremydorn.com/"
  1406. }
  1407. ],
  1408. "description": "a PHP SQL highlighting library",
  1409. "homepage": "https://github.com/doctrine/sql-formatter/",
  1410. "keywords": [
  1411. "highlight",
  1412. "sql"
  1413. ],
  1414. "support": {
  1415. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1416. "source": "https://github.com/doctrine/sql-formatter/tree/1.4.1"
  1417. },
  1418. "time": "2024-08-05T20:32:22+00:00"
  1419. },
  1420. {
  1421. "name": "egulias/email-validator",
  1422. "version": "4.0.2",
  1423. "source": {
  1424. "type": "git",
  1425. "url": "https://github.com/egulias/EmailValidator.git",
  1426. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1427. },
  1428. "dist": {
  1429. "type": "zip",
  1430. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1431. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1432. "shasum": ""
  1433. },
  1434. "require": {
  1435. "doctrine/lexer": "^2.0 || ^3.0",
  1436. "php": ">=8.1",
  1437. "symfony/polyfill-intl-idn": "^1.26"
  1438. },
  1439. "require-dev": {
  1440. "phpunit/phpunit": "^10.2",
  1441. "vimeo/psalm": "^5.12"
  1442. },
  1443. "suggest": {
  1444. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1445. },
  1446. "type": "library",
  1447. "extra": {
  1448. "branch-alias": {
  1449. "dev-master": "4.0.x-dev"
  1450. }
  1451. },
  1452. "autoload": {
  1453. "psr-4": {
  1454. "Egulias\\EmailValidator\\": "src"
  1455. }
  1456. },
  1457. "notification-url": "https://packagist.org/downloads/",
  1458. "license": [
  1459. "MIT"
  1460. ],
  1461. "authors": [
  1462. {
  1463. "name": "Eduardo Gulias Davis"
  1464. }
  1465. ],
  1466. "description": "A library for validating emails against several RFCs",
  1467. "homepage": "https://github.com/egulias/EmailValidator",
  1468. "keywords": [
  1469. "email",
  1470. "emailvalidation",
  1471. "emailvalidator",
  1472. "validation",
  1473. "validator"
  1474. ],
  1475. "support": {
  1476. "issues": "https://github.com/egulias/EmailValidator/issues",
  1477. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1478. },
  1479. "funding": [
  1480. {
  1481. "url": "https://github.com/egulias",
  1482. "type": "github"
  1483. }
  1484. ],
  1485. "time": "2023-10-06T06:47:41+00:00"
  1486. },
  1487. {
  1488. "name": "nelmio/cors-bundle",
  1489. "version": "2.5.0",
  1490. "source": {
  1491. "type": "git",
  1492. "url": "https://github.com/nelmio/NelmioCorsBundle.git",
  1493. "reference": "3a526fe025cd20e04a6a11370cf5ab28dbb5a544"
  1494. },
  1495. "dist": {
  1496. "type": "zip",
  1497. "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/3a526fe025cd20e04a6a11370cf5ab28dbb5a544",
  1498. "reference": "3a526fe025cd20e04a6a11370cf5ab28dbb5a544",
  1499. "shasum": ""
  1500. },
  1501. "require": {
  1502. "psr/log": "^1.0 || ^2.0 || ^3.0",
  1503. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  1504. },
  1505. "require-dev": {
  1506. "mockery/mockery": "^1.3.6",
  1507. "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0"
  1508. },
  1509. "type": "symfony-bundle",
  1510. "extra": {
  1511. "branch-alias": {
  1512. "dev-master": "2.x-dev"
  1513. }
  1514. },
  1515. "autoload": {
  1516. "psr-4": {
  1517. "Nelmio\\CorsBundle\\": ""
  1518. },
  1519. "exclude-from-classmap": [
  1520. "/Tests/"
  1521. ]
  1522. },
  1523. "notification-url": "https://packagist.org/downloads/",
  1524. "license": [
  1525. "MIT"
  1526. ],
  1527. "authors": [
  1528. {
  1529. "name": "Nelmio",
  1530. "homepage": "http://nelm.io"
  1531. },
  1532. {
  1533. "name": "Symfony Community",
  1534. "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors"
  1535. }
  1536. ],
  1537. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony application",
  1538. "keywords": [
  1539. "api",
  1540. "cors",
  1541. "crossdomain"
  1542. ],
  1543. "support": {
  1544. "issues": "https://github.com/nelmio/NelmioCorsBundle/issues",
  1545. "source": "https://github.com/nelmio/NelmioCorsBundle/tree/2.5.0"
  1546. },
  1547. "time": "2024-06-24T21:25:28+00:00"
  1548. },
  1549. {
  1550. "name": "phpdocumentor/reflection-common",
  1551. "version": "2.2.0",
  1552. "source": {
  1553. "type": "git",
  1554. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1555. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1556. },
  1557. "dist": {
  1558. "type": "zip",
  1559. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1560. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1561. "shasum": ""
  1562. },
  1563. "require": {
  1564. "php": "^7.2 || ^8.0"
  1565. },
  1566. "type": "library",
  1567. "extra": {
  1568. "branch-alias": {
  1569. "dev-2.x": "2.x-dev"
  1570. }
  1571. },
  1572. "autoload": {
  1573. "psr-4": {
  1574. "phpDocumentor\\Reflection\\": "src/"
  1575. }
  1576. },
  1577. "notification-url": "https://packagist.org/downloads/",
  1578. "license": [
  1579. "MIT"
  1580. ],
  1581. "authors": [
  1582. {
  1583. "name": "Jaap van Otterdijk",
  1584. "email": "opensource@ijaap.nl"
  1585. }
  1586. ],
  1587. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1588. "homepage": "http://www.phpdoc.org",
  1589. "keywords": [
  1590. "FQSEN",
  1591. "phpDocumentor",
  1592. "phpdoc",
  1593. "reflection",
  1594. "static analysis"
  1595. ],
  1596. "support": {
  1597. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1598. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1599. },
  1600. "time": "2020-06-27T09:03:43+00:00"
  1601. },
  1602. {
  1603. "name": "phpdocumentor/reflection-docblock",
  1604. "version": "5.4.1",
  1605. "source": {
  1606. "type": "git",
  1607. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1608. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
  1609. },
  1610. "dist": {
  1611. "type": "zip",
  1612. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  1613. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  1614. "shasum": ""
  1615. },
  1616. "require": {
  1617. "doctrine/deprecations": "^1.1",
  1618. "ext-filter": "*",
  1619. "php": "^7.4 || ^8.0",
  1620. "phpdocumentor/reflection-common": "^2.2",
  1621. "phpdocumentor/type-resolver": "^1.7",
  1622. "phpstan/phpdoc-parser": "^1.7",
  1623. "webmozart/assert": "^1.9.1"
  1624. },
  1625. "require-dev": {
  1626. "mockery/mockery": "~1.3.5",
  1627. "phpstan/extension-installer": "^1.1",
  1628. "phpstan/phpstan": "^1.8",
  1629. "phpstan/phpstan-mockery": "^1.1",
  1630. "phpstan/phpstan-webmozart-assert": "^1.2",
  1631. "phpunit/phpunit": "^9.5",
  1632. "vimeo/psalm": "^5.13"
  1633. },
  1634. "type": "library",
  1635. "extra": {
  1636. "branch-alias": {
  1637. "dev-master": "5.x-dev"
  1638. }
  1639. },
  1640. "autoload": {
  1641. "psr-4": {
  1642. "phpDocumentor\\Reflection\\": "src"
  1643. }
  1644. },
  1645. "notification-url": "https://packagist.org/downloads/",
  1646. "license": [
  1647. "MIT"
  1648. ],
  1649. "authors": [
  1650. {
  1651. "name": "Mike van Riel",
  1652. "email": "me@mikevanriel.com"
  1653. },
  1654. {
  1655. "name": "Jaap van Otterdijk",
  1656. "email": "opensource@ijaap.nl"
  1657. }
  1658. ],
  1659. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1660. "support": {
  1661. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1662. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
  1663. },
  1664. "time": "2024-05-21T05:55:05+00:00"
  1665. },
  1666. {
  1667. "name": "phpdocumentor/type-resolver",
  1668. "version": "1.8.2",
  1669. "source": {
  1670. "type": "git",
  1671. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1672. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  1673. },
  1674. "dist": {
  1675. "type": "zip",
  1676. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  1677. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  1678. "shasum": ""
  1679. },
  1680. "require": {
  1681. "doctrine/deprecations": "^1.0",
  1682. "php": "^7.3 || ^8.0",
  1683. "phpdocumentor/reflection-common": "^2.0",
  1684. "phpstan/phpdoc-parser": "^1.13"
  1685. },
  1686. "require-dev": {
  1687. "ext-tokenizer": "*",
  1688. "phpbench/phpbench": "^1.2",
  1689. "phpstan/extension-installer": "^1.1",
  1690. "phpstan/phpstan": "^1.8",
  1691. "phpstan/phpstan-phpunit": "^1.1",
  1692. "phpunit/phpunit": "^9.5",
  1693. "rector/rector": "^0.13.9",
  1694. "vimeo/psalm": "^4.25"
  1695. },
  1696. "type": "library",
  1697. "extra": {
  1698. "branch-alias": {
  1699. "dev-1.x": "1.x-dev"
  1700. }
  1701. },
  1702. "autoload": {
  1703. "psr-4": {
  1704. "phpDocumentor\\Reflection\\": "src"
  1705. }
  1706. },
  1707. "notification-url": "https://packagist.org/downloads/",
  1708. "license": [
  1709. "MIT"
  1710. ],
  1711. "authors": [
  1712. {
  1713. "name": "Mike van Riel",
  1714. "email": "me@mikevanriel.com"
  1715. }
  1716. ],
  1717. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1718. "support": {
  1719. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1720. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  1721. },
  1722. "time": "2024-02-23T11:10:43+00:00"
  1723. },
  1724. {
  1725. "name": "phpstan/phpdoc-parser",
  1726. "version": "1.30.1",
  1727. "source": {
  1728. "type": "git",
  1729. "url": "https://github.com/phpstan/phpdoc-parser.git",
  1730. "reference": "51b95ec8670af41009e2b2b56873bad96682413e"
  1731. },
  1732. "dist": {
  1733. "type": "zip",
  1734. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/51b95ec8670af41009e2b2b56873bad96682413e",
  1735. "reference": "51b95ec8670af41009e2b2b56873bad96682413e",
  1736. "shasum": ""
  1737. },
  1738. "require": {
  1739. "php": "^7.2 || ^8.0"
  1740. },
  1741. "require-dev": {
  1742. "doctrine/annotations": "^2.0",
  1743. "nikic/php-parser": "^4.15",
  1744. "php-parallel-lint/php-parallel-lint": "^1.2",
  1745. "phpstan/extension-installer": "^1.0",
  1746. "phpstan/phpstan": "^1.5",
  1747. "phpstan/phpstan-phpunit": "^1.1",
  1748. "phpstan/phpstan-strict-rules": "^1.0",
  1749. "phpunit/phpunit": "^9.5",
  1750. "symfony/process": "^5.2"
  1751. },
  1752. "type": "library",
  1753. "autoload": {
  1754. "psr-4": {
  1755. "PHPStan\\PhpDocParser\\": [
  1756. "src/"
  1757. ]
  1758. }
  1759. },
  1760. "notification-url": "https://packagist.org/downloads/",
  1761. "license": [
  1762. "MIT"
  1763. ],
  1764. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  1765. "support": {
  1766. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  1767. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.30.1"
  1768. },
  1769. "time": "2024-09-07T20:13:05+00:00"
  1770. },
  1771. {
  1772. "name": "psr/cache",
  1773. "version": "3.0.0",
  1774. "source": {
  1775. "type": "git",
  1776. "url": "https://github.com/php-fig/cache.git",
  1777. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  1778. },
  1779. "dist": {
  1780. "type": "zip",
  1781. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1782. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1783. "shasum": ""
  1784. },
  1785. "require": {
  1786. "php": ">=8.0.0"
  1787. },
  1788. "type": "library",
  1789. "extra": {
  1790. "branch-alias": {
  1791. "dev-master": "1.0.x-dev"
  1792. }
  1793. },
  1794. "autoload": {
  1795. "psr-4": {
  1796. "Psr\\Cache\\": "src/"
  1797. }
  1798. },
  1799. "notification-url": "https://packagist.org/downloads/",
  1800. "license": [
  1801. "MIT"
  1802. ],
  1803. "authors": [
  1804. {
  1805. "name": "PHP-FIG",
  1806. "homepage": "https://www.php-fig.org/"
  1807. }
  1808. ],
  1809. "description": "Common interface for caching libraries",
  1810. "keywords": [
  1811. "cache",
  1812. "psr",
  1813. "psr-6"
  1814. ],
  1815. "support": {
  1816. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  1817. },
  1818. "time": "2021-02-03T23:26:27+00:00"
  1819. },
  1820. {
  1821. "name": "psr/clock",
  1822. "version": "1.0.0",
  1823. "source": {
  1824. "type": "git",
  1825. "url": "https://github.com/php-fig/clock.git",
  1826. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  1827. },
  1828. "dist": {
  1829. "type": "zip",
  1830. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1831. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1832. "shasum": ""
  1833. },
  1834. "require": {
  1835. "php": "^7.0 || ^8.0"
  1836. },
  1837. "type": "library",
  1838. "autoload": {
  1839. "psr-4": {
  1840. "Psr\\Clock\\": "src/"
  1841. }
  1842. },
  1843. "notification-url": "https://packagist.org/downloads/",
  1844. "license": [
  1845. "MIT"
  1846. ],
  1847. "authors": [
  1848. {
  1849. "name": "PHP-FIG",
  1850. "homepage": "https://www.php-fig.org/"
  1851. }
  1852. ],
  1853. "description": "Common interface for reading the clock.",
  1854. "homepage": "https://github.com/php-fig/clock",
  1855. "keywords": [
  1856. "clock",
  1857. "now",
  1858. "psr",
  1859. "psr-20",
  1860. "time"
  1861. ],
  1862. "support": {
  1863. "issues": "https://github.com/php-fig/clock/issues",
  1864. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  1865. },
  1866. "time": "2022-11-25T14:36:26+00:00"
  1867. },
  1868. {
  1869. "name": "psr/container",
  1870. "version": "2.0.2",
  1871. "source": {
  1872. "type": "git",
  1873. "url": "https://github.com/php-fig/container.git",
  1874. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1875. },
  1876. "dist": {
  1877. "type": "zip",
  1878. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1879. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1880. "shasum": ""
  1881. },
  1882. "require": {
  1883. "php": ">=7.4.0"
  1884. },
  1885. "type": "library",
  1886. "extra": {
  1887. "branch-alias": {
  1888. "dev-master": "2.0.x-dev"
  1889. }
  1890. },
  1891. "autoload": {
  1892. "psr-4": {
  1893. "Psr\\Container\\": "src/"
  1894. }
  1895. },
  1896. "notification-url": "https://packagist.org/downloads/",
  1897. "license": [
  1898. "MIT"
  1899. ],
  1900. "authors": [
  1901. {
  1902. "name": "PHP-FIG",
  1903. "homepage": "https://www.php-fig.org/"
  1904. }
  1905. ],
  1906. "description": "Common Container Interface (PHP FIG PSR-11)",
  1907. "homepage": "https://github.com/php-fig/container",
  1908. "keywords": [
  1909. "PSR-11",
  1910. "container",
  1911. "container-interface",
  1912. "container-interop",
  1913. "psr"
  1914. ],
  1915. "support": {
  1916. "issues": "https://github.com/php-fig/container/issues",
  1917. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1918. },
  1919. "time": "2021-11-05T16:47:00+00:00"
  1920. },
  1921. {
  1922. "name": "psr/event-dispatcher",
  1923. "version": "1.0.0",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://github.com/php-fig/event-dispatcher.git",
  1927. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1932. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1933. "shasum": ""
  1934. },
  1935. "require": {
  1936. "php": ">=7.2.0"
  1937. },
  1938. "type": "library",
  1939. "extra": {
  1940. "branch-alias": {
  1941. "dev-master": "1.0.x-dev"
  1942. }
  1943. },
  1944. "autoload": {
  1945. "psr-4": {
  1946. "Psr\\EventDispatcher\\": "src/"
  1947. }
  1948. },
  1949. "notification-url": "https://packagist.org/downloads/",
  1950. "license": [
  1951. "MIT"
  1952. ],
  1953. "authors": [
  1954. {
  1955. "name": "PHP-FIG",
  1956. "homepage": "http://www.php-fig.org/"
  1957. }
  1958. ],
  1959. "description": "Standard interfaces for event handling.",
  1960. "keywords": [
  1961. "events",
  1962. "psr",
  1963. "psr-14"
  1964. ],
  1965. "support": {
  1966. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1967. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1968. },
  1969. "time": "2019-01-08T18:20:26+00:00"
  1970. },
  1971. {
  1972. "name": "psr/link",
  1973. "version": "2.0.1",
  1974. "source": {
  1975. "type": "git",
  1976. "url": "https://github.com/php-fig/link.git",
  1977. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  1978. },
  1979. "dist": {
  1980. "type": "zip",
  1981. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  1982. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  1983. "shasum": ""
  1984. },
  1985. "require": {
  1986. "php": ">=8.0.0"
  1987. },
  1988. "suggest": {
  1989. "fig/link-util": "Provides some useful PSR-13 utilities"
  1990. },
  1991. "type": "library",
  1992. "extra": {
  1993. "branch-alias": {
  1994. "dev-master": "2.0.x-dev"
  1995. }
  1996. },
  1997. "autoload": {
  1998. "psr-4": {
  1999. "Psr\\Link\\": "src/"
  2000. }
  2001. },
  2002. "notification-url": "https://packagist.org/downloads/",
  2003. "license": [
  2004. "MIT"
  2005. ],
  2006. "authors": [
  2007. {
  2008. "name": "PHP-FIG",
  2009. "homepage": "http://www.php-fig.org/"
  2010. }
  2011. ],
  2012. "description": "Common interfaces for HTTP links",
  2013. "homepage": "https://github.com/php-fig/link",
  2014. "keywords": [
  2015. "http",
  2016. "http-link",
  2017. "link",
  2018. "psr",
  2019. "psr-13",
  2020. "rest"
  2021. ],
  2022. "support": {
  2023. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2024. },
  2025. "time": "2021-03-11T23:00:27+00:00"
  2026. },
  2027. {
  2028. "name": "psr/log",
  2029. "version": "3.0.1",
  2030. "source": {
  2031. "type": "git",
  2032. "url": "https://github.com/php-fig/log.git",
  2033. "reference": "79dff0b268932c640297f5208d6298f71855c03e"
  2034. },
  2035. "dist": {
  2036. "type": "zip",
  2037. "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e",
  2038. "reference": "79dff0b268932c640297f5208d6298f71855c03e",
  2039. "shasum": ""
  2040. },
  2041. "require": {
  2042. "php": ">=8.0.0"
  2043. },
  2044. "type": "library",
  2045. "extra": {
  2046. "branch-alias": {
  2047. "dev-master": "3.x-dev"
  2048. }
  2049. },
  2050. "autoload": {
  2051. "psr-4": {
  2052. "Psr\\Log\\": "src"
  2053. }
  2054. },
  2055. "notification-url": "https://packagist.org/downloads/",
  2056. "license": [
  2057. "MIT"
  2058. ],
  2059. "authors": [
  2060. {
  2061. "name": "PHP-FIG",
  2062. "homepage": "https://www.php-fig.org/"
  2063. }
  2064. ],
  2065. "description": "Common interface for logging libraries",
  2066. "homepage": "https://github.com/php-fig/log",
  2067. "keywords": [
  2068. "log",
  2069. "psr",
  2070. "psr-3"
  2071. ],
  2072. "support": {
  2073. "source": "https://github.com/php-fig/log/tree/3.0.1"
  2074. },
  2075. "time": "2024-08-21T13:31:24+00:00"
  2076. },
  2077. {
  2078. "name": "symfony/asset",
  2079. "version": "v7.1.1",
  2080. "source": {
  2081. "type": "git",
  2082. "url": "https://github.com/symfony/asset.git",
  2083. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43"
  2084. },
  2085. "dist": {
  2086. "type": "zip",
  2087. "url": "https://api.github.com/repos/symfony/asset/zipball/8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2088. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2089. "shasum": ""
  2090. },
  2091. "require": {
  2092. "php": ">=8.2"
  2093. },
  2094. "conflict": {
  2095. "symfony/http-foundation": "<6.4"
  2096. },
  2097. "require-dev": {
  2098. "symfony/http-client": "^6.4|^7.0",
  2099. "symfony/http-foundation": "^6.4|^7.0",
  2100. "symfony/http-kernel": "^6.4|^7.0"
  2101. },
  2102. "type": "library",
  2103. "autoload": {
  2104. "psr-4": {
  2105. "Symfony\\Component\\Asset\\": ""
  2106. },
  2107. "exclude-from-classmap": [
  2108. "/Tests/"
  2109. ]
  2110. },
  2111. "notification-url": "https://packagist.org/downloads/",
  2112. "license": [
  2113. "MIT"
  2114. ],
  2115. "authors": [
  2116. {
  2117. "name": "Fabien Potencier",
  2118. "email": "fabien@symfony.com"
  2119. },
  2120. {
  2121. "name": "Symfony Community",
  2122. "homepage": "https://symfony.com/contributors"
  2123. }
  2124. ],
  2125. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2126. "homepage": "https://symfony.com",
  2127. "support": {
  2128. "source": "https://github.com/symfony/asset/tree/v7.1.1"
  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-05-31T14:57:53+00:00"
  2145. },
  2146. {
  2147. "name": "symfony/cache",
  2148. "version": "v7.1.4",
  2149. "source": {
  2150. "type": "git",
  2151. "url": "https://github.com/symfony/cache.git",
  2152. "reference": "b61e464d7687bb7e8f677d5031c632bf3820df18"
  2153. },
  2154. "dist": {
  2155. "type": "zip",
  2156. "url": "https://api.github.com/repos/symfony/cache/zipball/b61e464d7687bb7e8f677d5031c632bf3820df18",
  2157. "reference": "b61e464d7687bb7e8f677d5031c632bf3820df18",
  2158. "shasum": ""
  2159. },
  2160. "require": {
  2161. "php": ">=8.2",
  2162. "psr/cache": "^2.0|^3.0",
  2163. "psr/log": "^1.1|^2|^3",
  2164. "symfony/cache-contracts": "^2.5|^3",
  2165. "symfony/deprecation-contracts": "^2.5|^3.0",
  2166. "symfony/service-contracts": "^2.5|^3",
  2167. "symfony/var-exporter": "^6.4|^7.0"
  2168. },
  2169. "conflict": {
  2170. "doctrine/dbal": "<3.6",
  2171. "symfony/dependency-injection": "<6.4",
  2172. "symfony/http-kernel": "<6.4",
  2173. "symfony/var-dumper": "<6.4"
  2174. },
  2175. "provide": {
  2176. "psr/cache-implementation": "2.0|3.0",
  2177. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2178. "symfony/cache-implementation": "1.1|2.0|3.0"
  2179. },
  2180. "require-dev": {
  2181. "cache/integration-tests": "dev-master",
  2182. "doctrine/dbal": "^3.6|^4",
  2183. "predis/predis": "^1.1|^2.0",
  2184. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2185. "symfony/config": "^6.4|^7.0",
  2186. "symfony/dependency-injection": "^6.4|^7.0",
  2187. "symfony/filesystem": "^6.4|^7.0",
  2188. "symfony/http-kernel": "^6.4|^7.0",
  2189. "symfony/messenger": "^6.4|^7.0",
  2190. "symfony/var-dumper": "^6.4|^7.0"
  2191. },
  2192. "type": "library",
  2193. "autoload": {
  2194. "psr-4": {
  2195. "Symfony\\Component\\Cache\\": ""
  2196. },
  2197. "classmap": [
  2198. "Traits/ValueWrapper.php"
  2199. ],
  2200. "exclude-from-classmap": [
  2201. "/Tests/"
  2202. ]
  2203. },
  2204. "notification-url": "https://packagist.org/downloads/",
  2205. "license": [
  2206. "MIT"
  2207. ],
  2208. "authors": [
  2209. {
  2210. "name": "Nicolas Grekas",
  2211. "email": "p@tchwork.com"
  2212. },
  2213. {
  2214. "name": "Symfony Community",
  2215. "homepage": "https://symfony.com/contributors"
  2216. }
  2217. ],
  2218. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2219. "homepage": "https://symfony.com",
  2220. "keywords": [
  2221. "caching",
  2222. "psr6"
  2223. ],
  2224. "support": {
  2225. "source": "https://github.com/symfony/cache/tree/v7.1.4"
  2226. },
  2227. "funding": [
  2228. {
  2229. "url": "https://symfony.com/sponsor",
  2230. "type": "custom"
  2231. },
  2232. {
  2233. "url": "https://github.com/fabpot",
  2234. "type": "github"
  2235. },
  2236. {
  2237. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2238. "type": "tidelift"
  2239. }
  2240. ],
  2241. "time": "2024-08-12T09:59:40+00:00"
  2242. },
  2243. {
  2244. "name": "symfony/cache-contracts",
  2245. "version": "v3.5.0",
  2246. "source": {
  2247. "type": "git",
  2248. "url": "https://github.com/symfony/cache-contracts.git",
  2249. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  2250. },
  2251. "dist": {
  2252. "type": "zip",
  2253. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  2254. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  2255. "shasum": ""
  2256. },
  2257. "require": {
  2258. "php": ">=8.1",
  2259. "psr/cache": "^3.0"
  2260. },
  2261. "type": "library",
  2262. "extra": {
  2263. "branch-alias": {
  2264. "dev-main": "3.5-dev"
  2265. },
  2266. "thanks": {
  2267. "name": "symfony/contracts",
  2268. "url": "https://github.com/symfony/contracts"
  2269. }
  2270. },
  2271. "autoload": {
  2272. "psr-4": {
  2273. "Symfony\\Contracts\\Cache\\": ""
  2274. }
  2275. },
  2276. "notification-url": "https://packagist.org/downloads/",
  2277. "license": [
  2278. "MIT"
  2279. ],
  2280. "authors": [
  2281. {
  2282. "name": "Nicolas Grekas",
  2283. "email": "p@tchwork.com"
  2284. },
  2285. {
  2286. "name": "Symfony Community",
  2287. "homepage": "https://symfony.com/contributors"
  2288. }
  2289. ],
  2290. "description": "Generic abstractions related to caching",
  2291. "homepage": "https://symfony.com",
  2292. "keywords": [
  2293. "abstractions",
  2294. "contracts",
  2295. "decoupling",
  2296. "interfaces",
  2297. "interoperability",
  2298. "standards"
  2299. ],
  2300. "support": {
  2301. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  2302. },
  2303. "funding": [
  2304. {
  2305. "url": "https://symfony.com/sponsor",
  2306. "type": "custom"
  2307. },
  2308. {
  2309. "url": "https://github.com/fabpot",
  2310. "type": "github"
  2311. },
  2312. {
  2313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2314. "type": "tidelift"
  2315. }
  2316. ],
  2317. "time": "2024-04-18T09:32:20+00:00"
  2318. },
  2319. {
  2320. "name": "symfony/clock",
  2321. "version": "v7.1.1",
  2322. "source": {
  2323. "type": "git",
  2324. "url": "https://github.com/symfony/clock.git",
  2325. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  2326. },
  2327. "dist": {
  2328. "type": "zip",
  2329. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  2330. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  2331. "shasum": ""
  2332. },
  2333. "require": {
  2334. "php": ">=8.2",
  2335. "psr/clock": "^1.0",
  2336. "symfony/polyfill-php83": "^1.28"
  2337. },
  2338. "provide": {
  2339. "psr/clock-implementation": "1.0"
  2340. },
  2341. "type": "library",
  2342. "autoload": {
  2343. "files": [
  2344. "Resources/now.php"
  2345. ],
  2346. "psr-4": {
  2347. "Symfony\\Component\\Clock\\": ""
  2348. },
  2349. "exclude-from-classmap": [
  2350. "/Tests/"
  2351. ]
  2352. },
  2353. "notification-url": "https://packagist.org/downloads/",
  2354. "license": [
  2355. "MIT"
  2356. ],
  2357. "authors": [
  2358. {
  2359. "name": "Nicolas Grekas",
  2360. "email": "p@tchwork.com"
  2361. },
  2362. {
  2363. "name": "Symfony Community",
  2364. "homepage": "https://symfony.com/contributors"
  2365. }
  2366. ],
  2367. "description": "Decouples applications from the system clock",
  2368. "homepage": "https://symfony.com",
  2369. "keywords": [
  2370. "clock",
  2371. "psr20",
  2372. "time"
  2373. ],
  2374. "support": {
  2375. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  2376. },
  2377. "funding": [
  2378. {
  2379. "url": "https://symfony.com/sponsor",
  2380. "type": "custom"
  2381. },
  2382. {
  2383. "url": "https://github.com/fabpot",
  2384. "type": "github"
  2385. },
  2386. {
  2387. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2388. "type": "tidelift"
  2389. }
  2390. ],
  2391. "time": "2024-05-31T14:57:53+00:00"
  2392. },
  2393. {
  2394. "name": "symfony/config",
  2395. "version": "v7.1.1",
  2396. "source": {
  2397. "type": "git",
  2398. "url": "https://github.com/symfony/config.git",
  2399. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2"
  2400. },
  2401. "dist": {
  2402. "type": "zip",
  2403. "url": "https://api.github.com/repos/symfony/config/zipball/2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  2404. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  2405. "shasum": ""
  2406. },
  2407. "require": {
  2408. "php": ">=8.2",
  2409. "symfony/deprecation-contracts": "^2.5|^3",
  2410. "symfony/filesystem": "^7.1",
  2411. "symfony/polyfill-ctype": "~1.8"
  2412. },
  2413. "conflict": {
  2414. "symfony/finder": "<6.4",
  2415. "symfony/service-contracts": "<2.5"
  2416. },
  2417. "require-dev": {
  2418. "symfony/event-dispatcher": "^6.4|^7.0",
  2419. "symfony/finder": "^6.4|^7.0",
  2420. "symfony/messenger": "^6.4|^7.0",
  2421. "symfony/service-contracts": "^2.5|^3",
  2422. "symfony/yaml": "^6.4|^7.0"
  2423. },
  2424. "type": "library",
  2425. "autoload": {
  2426. "psr-4": {
  2427. "Symfony\\Component\\Config\\": ""
  2428. },
  2429. "exclude-from-classmap": [
  2430. "/Tests/"
  2431. ]
  2432. },
  2433. "notification-url": "https://packagist.org/downloads/",
  2434. "license": [
  2435. "MIT"
  2436. ],
  2437. "authors": [
  2438. {
  2439. "name": "Fabien Potencier",
  2440. "email": "fabien@symfony.com"
  2441. },
  2442. {
  2443. "name": "Symfony Community",
  2444. "homepage": "https://symfony.com/contributors"
  2445. }
  2446. ],
  2447. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2448. "homepage": "https://symfony.com",
  2449. "support": {
  2450. "source": "https://github.com/symfony/config/tree/v7.1.1"
  2451. },
  2452. "funding": [
  2453. {
  2454. "url": "https://symfony.com/sponsor",
  2455. "type": "custom"
  2456. },
  2457. {
  2458. "url": "https://github.com/fabpot",
  2459. "type": "github"
  2460. },
  2461. {
  2462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2463. "type": "tidelift"
  2464. }
  2465. ],
  2466. "time": "2024-05-31T14:57:53+00:00"
  2467. },
  2468. {
  2469. "name": "symfony/console",
  2470. "version": "v7.1.4",
  2471. "source": {
  2472. "type": "git",
  2473. "url": "https://github.com/symfony/console.git",
  2474. "reference": "1eed7af6961d763e7832e874d7f9b21c3ea9c111"
  2475. },
  2476. "dist": {
  2477. "type": "zip",
  2478. "url": "https://api.github.com/repos/symfony/console/zipball/1eed7af6961d763e7832e874d7f9b21c3ea9c111",
  2479. "reference": "1eed7af6961d763e7832e874d7f9b21c3ea9c111",
  2480. "shasum": ""
  2481. },
  2482. "require": {
  2483. "php": ">=8.2",
  2484. "symfony/polyfill-mbstring": "~1.0",
  2485. "symfony/service-contracts": "^2.5|^3",
  2486. "symfony/string": "^6.4|^7.0"
  2487. },
  2488. "conflict": {
  2489. "symfony/dependency-injection": "<6.4",
  2490. "symfony/dotenv": "<6.4",
  2491. "symfony/event-dispatcher": "<6.4",
  2492. "symfony/lock": "<6.4",
  2493. "symfony/process": "<6.4"
  2494. },
  2495. "provide": {
  2496. "psr/log-implementation": "1.0|2.0|3.0"
  2497. },
  2498. "require-dev": {
  2499. "psr/log": "^1|^2|^3",
  2500. "symfony/config": "^6.4|^7.0",
  2501. "symfony/dependency-injection": "^6.4|^7.0",
  2502. "symfony/event-dispatcher": "^6.4|^7.0",
  2503. "symfony/http-foundation": "^6.4|^7.0",
  2504. "symfony/http-kernel": "^6.4|^7.0",
  2505. "symfony/lock": "^6.4|^7.0",
  2506. "symfony/messenger": "^6.4|^7.0",
  2507. "symfony/process": "^6.4|^7.0",
  2508. "symfony/stopwatch": "^6.4|^7.0",
  2509. "symfony/var-dumper": "^6.4|^7.0"
  2510. },
  2511. "type": "library",
  2512. "autoload": {
  2513. "psr-4": {
  2514. "Symfony\\Component\\Console\\": ""
  2515. },
  2516. "exclude-from-classmap": [
  2517. "/Tests/"
  2518. ]
  2519. },
  2520. "notification-url": "https://packagist.org/downloads/",
  2521. "license": [
  2522. "MIT"
  2523. ],
  2524. "authors": [
  2525. {
  2526. "name": "Fabien Potencier",
  2527. "email": "fabien@symfony.com"
  2528. },
  2529. {
  2530. "name": "Symfony Community",
  2531. "homepage": "https://symfony.com/contributors"
  2532. }
  2533. ],
  2534. "description": "Eases the creation of beautiful and testable command line interfaces",
  2535. "homepage": "https://symfony.com",
  2536. "keywords": [
  2537. "cli",
  2538. "command-line",
  2539. "console",
  2540. "terminal"
  2541. ],
  2542. "support": {
  2543. "source": "https://github.com/symfony/console/tree/v7.1.4"
  2544. },
  2545. "funding": [
  2546. {
  2547. "url": "https://symfony.com/sponsor",
  2548. "type": "custom"
  2549. },
  2550. {
  2551. "url": "https://github.com/fabpot",
  2552. "type": "github"
  2553. },
  2554. {
  2555. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2556. "type": "tidelift"
  2557. }
  2558. ],
  2559. "time": "2024-08-15T22:48:53+00:00"
  2560. },
  2561. {
  2562. "name": "symfony/dependency-injection",
  2563. "version": "v7.1.4",
  2564. "source": {
  2565. "type": "git",
  2566. "url": "https://github.com/symfony/dependency-injection.git",
  2567. "reference": "5320e0bc2c9e2d7450bb4091e497a305a68b28ed"
  2568. },
  2569. "dist": {
  2570. "type": "zip",
  2571. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/5320e0bc2c9e2d7450bb4091e497a305a68b28ed",
  2572. "reference": "5320e0bc2c9e2d7450bb4091e497a305a68b28ed",
  2573. "shasum": ""
  2574. },
  2575. "require": {
  2576. "php": ">=8.2",
  2577. "psr/container": "^1.1|^2.0",
  2578. "symfony/deprecation-contracts": "^2.5|^3",
  2579. "symfony/service-contracts": "^3.5",
  2580. "symfony/var-exporter": "^6.4|^7.0"
  2581. },
  2582. "conflict": {
  2583. "ext-psr": "<1.1|>=2",
  2584. "symfony/config": "<6.4",
  2585. "symfony/finder": "<6.4",
  2586. "symfony/yaml": "<6.4"
  2587. },
  2588. "provide": {
  2589. "psr/container-implementation": "1.1|2.0",
  2590. "symfony/service-implementation": "1.1|2.0|3.0"
  2591. },
  2592. "require-dev": {
  2593. "symfony/config": "^6.4|^7.0",
  2594. "symfony/expression-language": "^6.4|^7.0",
  2595. "symfony/yaml": "^6.4|^7.0"
  2596. },
  2597. "type": "library",
  2598. "autoload": {
  2599. "psr-4": {
  2600. "Symfony\\Component\\DependencyInjection\\": ""
  2601. },
  2602. "exclude-from-classmap": [
  2603. "/Tests/"
  2604. ]
  2605. },
  2606. "notification-url": "https://packagist.org/downloads/",
  2607. "license": [
  2608. "MIT"
  2609. ],
  2610. "authors": [
  2611. {
  2612. "name": "Fabien Potencier",
  2613. "email": "fabien@symfony.com"
  2614. },
  2615. {
  2616. "name": "Symfony Community",
  2617. "homepage": "https://symfony.com/contributors"
  2618. }
  2619. ],
  2620. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2621. "homepage": "https://symfony.com",
  2622. "support": {
  2623. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.4"
  2624. },
  2625. "funding": [
  2626. {
  2627. "url": "https://symfony.com/sponsor",
  2628. "type": "custom"
  2629. },
  2630. {
  2631. "url": "https://github.com/fabpot",
  2632. "type": "github"
  2633. },
  2634. {
  2635. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2636. "type": "tidelift"
  2637. }
  2638. ],
  2639. "time": "2024-08-29T08:16:25+00:00"
  2640. },
  2641. {
  2642. "name": "symfony/deprecation-contracts",
  2643. "version": "v3.5.0",
  2644. "source": {
  2645. "type": "git",
  2646. "url": "https://github.com/symfony/deprecation-contracts.git",
  2647. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  2648. },
  2649. "dist": {
  2650. "type": "zip",
  2651. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  2652. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  2653. "shasum": ""
  2654. },
  2655. "require": {
  2656. "php": ">=8.1"
  2657. },
  2658. "type": "library",
  2659. "extra": {
  2660. "branch-alias": {
  2661. "dev-main": "3.5-dev"
  2662. },
  2663. "thanks": {
  2664. "name": "symfony/contracts",
  2665. "url": "https://github.com/symfony/contracts"
  2666. }
  2667. },
  2668. "autoload": {
  2669. "files": [
  2670. "function.php"
  2671. ]
  2672. },
  2673. "notification-url": "https://packagist.org/downloads/",
  2674. "license": [
  2675. "MIT"
  2676. ],
  2677. "authors": [
  2678. {
  2679. "name": "Nicolas Grekas",
  2680. "email": "p@tchwork.com"
  2681. },
  2682. {
  2683. "name": "Symfony Community",
  2684. "homepage": "https://symfony.com/contributors"
  2685. }
  2686. ],
  2687. "description": "A generic function and convention to trigger deprecation notices",
  2688. "homepage": "https://symfony.com",
  2689. "support": {
  2690. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  2691. },
  2692. "funding": [
  2693. {
  2694. "url": "https://symfony.com/sponsor",
  2695. "type": "custom"
  2696. },
  2697. {
  2698. "url": "https://github.com/fabpot",
  2699. "type": "github"
  2700. },
  2701. {
  2702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2703. "type": "tidelift"
  2704. }
  2705. ],
  2706. "time": "2024-04-18T09:32:20+00:00"
  2707. },
  2708. {
  2709. "name": "symfony/doctrine-bridge",
  2710. "version": "v7.1.4",
  2711. "source": {
  2712. "type": "git",
  2713. "url": "https://github.com/symfony/doctrine-bridge.git",
  2714. "reference": "5c31b278a52023970f4ef398e42ab9048483abfa"
  2715. },
  2716. "dist": {
  2717. "type": "zip",
  2718. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/5c31b278a52023970f4ef398e42ab9048483abfa",
  2719. "reference": "5c31b278a52023970f4ef398e42ab9048483abfa",
  2720. "shasum": ""
  2721. },
  2722. "require": {
  2723. "doctrine/event-manager": "^2",
  2724. "doctrine/persistence": "^3.1",
  2725. "php": ">=8.2",
  2726. "symfony/deprecation-contracts": "^2.5|^3",
  2727. "symfony/polyfill-ctype": "~1.8",
  2728. "symfony/polyfill-mbstring": "~1.0",
  2729. "symfony/service-contracts": "^2.5|^3"
  2730. },
  2731. "conflict": {
  2732. "doctrine/dbal": "<3.6",
  2733. "doctrine/lexer": "<1.1",
  2734. "doctrine/orm": "<2.15",
  2735. "symfony/cache": "<6.4",
  2736. "symfony/dependency-injection": "<6.4",
  2737. "symfony/form": "<6.4.6|>=7,<7.0.6",
  2738. "symfony/http-foundation": "<6.4",
  2739. "symfony/http-kernel": "<6.4",
  2740. "symfony/lock": "<6.4",
  2741. "symfony/messenger": "<6.4",
  2742. "symfony/property-info": "<6.4",
  2743. "symfony/security-bundle": "<6.4",
  2744. "symfony/security-core": "<6.4",
  2745. "symfony/validator": "<6.4"
  2746. },
  2747. "require-dev": {
  2748. "doctrine/collections": "^1.0|^2.0",
  2749. "doctrine/data-fixtures": "^1.1",
  2750. "doctrine/dbal": "^3.6|^4",
  2751. "doctrine/orm": "^2.15|^3",
  2752. "psr/log": "^1|^2|^3",
  2753. "symfony/cache": "^6.4|^7.0",
  2754. "symfony/config": "^6.4|^7.0",
  2755. "symfony/dependency-injection": "^6.4|^7.0",
  2756. "symfony/doctrine-messenger": "^6.4|^7.0",
  2757. "symfony/expression-language": "^6.4|^7.0",
  2758. "symfony/form": "^6.4.6|^7.0.6",
  2759. "symfony/http-kernel": "^6.4|^7.0",
  2760. "symfony/lock": "^6.4|^7.0",
  2761. "symfony/messenger": "^6.4|^7.0",
  2762. "symfony/property-access": "^6.4|^7.0",
  2763. "symfony/property-info": "^6.4|^7.0",
  2764. "symfony/security-core": "^6.4|^7.0",
  2765. "symfony/stopwatch": "^6.4|^7.0",
  2766. "symfony/translation": "^6.4|^7.0",
  2767. "symfony/type-info": "^7.1",
  2768. "symfony/uid": "^6.4|^7.0",
  2769. "symfony/validator": "^6.4|^7.0",
  2770. "symfony/var-dumper": "^6.4|^7.0"
  2771. },
  2772. "type": "symfony-bridge",
  2773. "autoload": {
  2774. "psr-4": {
  2775. "Symfony\\Bridge\\Doctrine\\": ""
  2776. },
  2777. "exclude-from-classmap": [
  2778. "/Tests/"
  2779. ]
  2780. },
  2781. "notification-url": "https://packagist.org/downloads/",
  2782. "license": [
  2783. "MIT"
  2784. ],
  2785. "authors": [
  2786. {
  2787. "name": "Fabien Potencier",
  2788. "email": "fabien@symfony.com"
  2789. },
  2790. {
  2791. "name": "Symfony Community",
  2792. "homepage": "https://symfony.com/contributors"
  2793. }
  2794. ],
  2795. "description": "Provides integration for Doctrine with various Symfony components",
  2796. "homepage": "https://symfony.com",
  2797. "support": {
  2798. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.4"
  2799. },
  2800. "funding": [
  2801. {
  2802. "url": "https://symfony.com/sponsor",
  2803. "type": "custom"
  2804. },
  2805. {
  2806. "url": "https://github.com/fabpot",
  2807. "type": "github"
  2808. },
  2809. {
  2810. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2811. "type": "tidelift"
  2812. }
  2813. ],
  2814. "time": "2024-08-13T10:29:23+00:00"
  2815. },
  2816. {
  2817. "name": "symfony/dotenv",
  2818. "version": "v7.1.3",
  2819. "source": {
  2820. "type": "git",
  2821. "url": "https://github.com/symfony/dotenv.git",
  2822. "reference": "a26be30fd61678dab694a18a85084cea7673bbf3"
  2823. },
  2824. "dist": {
  2825. "type": "zip",
  2826. "url": "https://api.github.com/repos/symfony/dotenv/zipball/a26be30fd61678dab694a18a85084cea7673bbf3",
  2827. "reference": "a26be30fd61678dab694a18a85084cea7673bbf3",
  2828. "shasum": ""
  2829. },
  2830. "require": {
  2831. "php": ">=8.2"
  2832. },
  2833. "conflict": {
  2834. "symfony/console": "<6.4",
  2835. "symfony/process": "<6.4"
  2836. },
  2837. "require-dev": {
  2838. "symfony/console": "^6.4|^7.0",
  2839. "symfony/process": "^6.4|^7.0"
  2840. },
  2841. "type": "library",
  2842. "autoload": {
  2843. "psr-4": {
  2844. "Symfony\\Component\\Dotenv\\": ""
  2845. },
  2846. "exclude-from-classmap": [
  2847. "/Tests/"
  2848. ]
  2849. },
  2850. "notification-url": "https://packagist.org/downloads/",
  2851. "license": [
  2852. "MIT"
  2853. ],
  2854. "authors": [
  2855. {
  2856. "name": "Fabien Potencier",
  2857. "email": "fabien@symfony.com"
  2858. },
  2859. {
  2860. "name": "Symfony Community",
  2861. "homepage": "https://symfony.com/contributors"
  2862. }
  2863. ],
  2864. "description": "Registers environment variables from a .env file",
  2865. "homepage": "https://symfony.com",
  2866. "keywords": [
  2867. "dotenv",
  2868. "env",
  2869. "environment"
  2870. ],
  2871. "support": {
  2872. "source": "https://github.com/symfony/dotenv/tree/v7.1.3"
  2873. },
  2874. "funding": [
  2875. {
  2876. "url": "https://symfony.com/sponsor",
  2877. "type": "custom"
  2878. },
  2879. {
  2880. "url": "https://github.com/fabpot",
  2881. "type": "github"
  2882. },
  2883. {
  2884. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2885. "type": "tidelift"
  2886. }
  2887. ],
  2888. "time": "2024-07-09T19:36:07+00:00"
  2889. },
  2890. {
  2891. "name": "symfony/error-handler",
  2892. "version": "v7.1.3",
  2893. "source": {
  2894. "type": "git",
  2895. "url": "https://github.com/symfony/error-handler.git",
  2896. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  2897. },
  2898. "dist": {
  2899. "type": "zip",
  2900. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  2901. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  2902. "shasum": ""
  2903. },
  2904. "require": {
  2905. "php": ">=8.2",
  2906. "psr/log": "^1|^2|^3",
  2907. "symfony/var-dumper": "^6.4|^7.0"
  2908. },
  2909. "conflict": {
  2910. "symfony/deprecation-contracts": "<2.5",
  2911. "symfony/http-kernel": "<6.4"
  2912. },
  2913. "require-dev": {
  2914. "symfony/deprecation-contracts": "^2.5|^3",
  2915. "symfony/http-kernel": "^6.4|^7.0",
  2916. "symfony/serializer": "^6.4|^7.0"
  2917. },
  2918. "bin": [
  2919. "Resources/bin/patch-type-declarations"
  2920. ],
  2921. "type": "library",
  2922. "autoload": {
  2923. "psr-4": {
  2924. "Symfony\\Component\\ErrorHandler\\": ""
  2925. },
  2926. "exclude-from-classmap": [
  2927. "/Tests/"
  2928. ]
  2929. },
  2930. "notification-url": "https://packagist.org/downloads/",
  2931. "license": [
  2932. "MIT"
  2933. ],
  2934. "authors": [
  2935. {
  2936. "name": "Fabien Potencier",
  2937. "email": "fabien@symfony.com"
  2938. },
  2939. {
  2940. "name": "Symfony Community",
  2941. "homepage": "https://symfony.com/contributors"
  2942. }
  2943. ],
  2944. "description": "Provides tools to manage errors and ease debugging PHP code",
  2945. "homepage": "https://symfony.com",
  2946. "support": {
  2947. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  2948. },
  2949. "funding": [
  2950. {
  2951. "url": "https://symfony.com/sponsor",
  2952. "type": "custom"
  2953. },
  2954. {
  2955. "url": "https://github.com/fabpot",
  2956. "type": "github"
  2957. },
  2958. {
  2959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2960. "type": "tidelift"
  2961. }
  2962. ],
  2963. "time": "2024-07-26T13:02:51+00:00"
  2964. },
  2965. {
  2966. "name": "symfony/event-dispatcher",
  2967. "version": "v7.1.1",
  2968. "source": {
  2969. "type": "git",
  2970. "url": "https://github.com/symfony/event-dispatcher.git",
  2971. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  2972. },
  2973. "dist": {
  2974. "type": "zip",
  2975. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  2976. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  2977. "shasum": ""
  2978. },
  2979. "require": {
  2980. "php": ">=8.2",
  2981. "symfony/event-dispatcher-contracts": "^2.5|^3"
  2982. },
  2983. "conflict": {
  2984. "symfony/dependency-injection": "<6.4",
  2985. "symfony/service-contracts": "<2.5"
  2986. },
  2987. "provide": {
  2988. "psr/event-dispatcher-implementation": "1.0",
  2989. "symfony/event-dispatcher-implementation": "2.0|3.0"
  2990. },
  2991. "require-dev": {
  2992. "psr/log": "^1|^2|^3",
  2993. "symfony/config": "^6.4|^7.0",
  2994. "symfony/dependency-injection": "^6.4|^7.0",
  2995. "symfony/error-handler": "^6.4|^7.0",
  2996. "symfony/expression-language": "^6.4|^7.0",
  2997. "symfony/http-foundation": "^6.4|^7.0",
  2998. "symfony/service-contracts": "^2.5|^3",
  2999. "symfony/stopwatch": "^6.4|^7.0"
  3000. },
  3001. "type": "library",
  3002. "autoload": {
  3003. "psr-4": {
  3004. "Symfony\\Component\\EventDispatcher\\": ""
  3005. },
  3006. "exclude-from-classmap": [
  3007. "/Tests/"
  3008. ]
  3009. },
  3010. "notification-url": "https://packagist.org/downloads/",
  3011. "license": [
  3012. "MIT"
  3013. ],
  3014. "authors": [
  3015. {
  3016. "name": "Fabien Potencier",
  3017. "email": "fabien@symfony.com"
  3018. },
  3019. {
  3020. "name": "Symfony Community",
  3021. "homepage": "https://symfony.com/contributors"
  3022. }
  3023. ],
  3024. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3025. "homepage": "https://symfony.com",
  3026. "support": {
  3027. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  3028. },
  3029. "funding": [
  3030. {
  3031. "url": "https://symfony.com/sponsor",
  3032. "type": "custom"
  3033. },
  3034. {
  3035. "url": "https://github.com/fabpot",
  3036. "type": "github"
  3037. },
  3038. {
  3039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3040. "type": "tidelift"
  3041. }
  3042. ],
  3043. "time": "2024-05-31T14:57:53+00:00"
  3044. },
  3045. {
  3046. "name": "symfony/event-dispatcher-contracts",
  3047. "version": "v3.5.0",
  3048. "source": {
  3049. "type": "git",
  3050. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3051. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  3052. },
  3053. "dist": {
  3054. "type": "zip",
  3055. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  3056. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  3057. "shasum": ""
  3058. },
  3059. "require": {
  3060. "php": ">=8.1",
  3061. "psr/event-dispatcher": "^1"
  3062. },
  3063. "type": "library",
  3064. "extra": {
  3065. "branch-alias": {
  3066. "dev-main": "3.5-dev"
  3067. },
  3068. "thanks": {
  3069. "name": "symfony/contracts",
  3070. "url": "https://github.com/symfony/contracts"
  3071. }
  3072. },
  3073. "autoload": {
  3074. "psr-4": {
  3075. "Symfony\\Contracts\\EventDispatcher\\": ""
  3076. }
  3077. },
  3078. "notification-url": "https://packagist.org/downloads/",
  3079. "license": [
  3080. "MIT"
  3081. ],
  3082. "authors": [
  3083. {
  3084. "name": "Nicolas Grekas",
  3085. "email": "p@tchwork.com"
  3086. },
  3087. {
  3088. "name": "Symfony Community",
  3089. "homepage": "https://symfony.com/contributors"
  3090. }
  3091. ],
  3092. "description": "Generic abstractions related to dispatching event",
  3093. "homepage": "https://symfony.com",
  3094. "keywords": [
  3095. "abstractions",
  3096. "contracts",
  3097. "decoupling",
  3098. "interfaces",
  3099. "interoperability",
  3100. "standards"
  3101. ],
  3102. "support": {
  3103. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  3104. },
  3105. "funding": [
  3106. {
  3107. "url": "https://symfony.com/sponsor",
  3108. "type": "custom"
  3109. },
  3110. {
  3111. "url": "https://github.com/fabpot",
  3112. "type": "github"
  3113. },
  3114. {
  3115. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3116. "type": "tidelift"
  3117. }
  3118. ],
  3119. "time": "2024-04-18T09:32:20+00:00"
  3120. },
  3121. {
  3122. "name": "symfony/expression-language",
  3123. "version": "v7.1.4",
  3124. "source": {
  3125. "type": "git",
  3126. "url": "https://github.com/symfony/expression-language.git",
  3127. "reference": "b9e4bc6685d513c10235145ed1042a6081635806"
  3128. },
  3129. "dist": {
  3130. "type": "zip",
  3131. "url": "https://api.github.com/repos/symfony/expression-language/zipball/b9e4bc6685d513c10235145ed1042a6081635806",
  3132. "reference": "b9e4bc6685d513c10235145ed1042a6081635806",
  3133. "shasum": ""
  3134. },
  3135. "require": {
  3136. "php": ">=8.2",
  3137. "symfony/cache": "^6.4|^7.0",
  3138. "symfony/deprecation-contracts": "^2.5|^3",
  3139. "symfony/service-contracts": "^2.5|^3"
  3140. },
  3141. "type": "library",
  3142. "autoload": {
  3143. "psr-4": {
  3144. "Symfony\\Component\\ExpressionLanguage\\": ""
  3145. },
  3146. "exclude-from-classmap": [
  3147. "/Tests/"
  3148. ]
  3149. },
  3150. "notification-url": "https://packagist.org/downloads/",
  3151. "license": [
  3152. "MIT"
  3153. ],
  3154. "authors": [
  3155. {
  3156. "name": "Fabien Potencier",
  3157. "email": "fabien@symfony.com"
  3158. },
  3159. {
  3160. "name": "Symfony Community",
  3161. "homepage": "https://symfony.com/contributors"
  3162. }
  3163. ],
  3164. "description": "Provides an engine that can compile and evaluate expressions",
  3165. "homepage": "https://symfony.com",
  3166. "support": {
  3167. "source": "https://github.com/symfony/expression-language/tree/v7.1.4"
  3168. },
  3169. "funding": [
  3170. {
  3171. "url": "https://symfony.com/sponsor",
  3172. "type": "custom"
  3173. },
  3174. {
  3175. "url": "https://github.com/fabpot",
  3176. "type": "github"
  3177. },
  3178. {
  3179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3180. "type": "tidelift"
  3181. }
  3182. ],
  3183. "time": "2024-08-12T09:59:40+00:00"
  3184. },
  3185. {
  3186. "name": "symfony/filesystem",
  3187. "version": "v7.1.2",
  3188. "source": {
  3189. "type": "git",
  3190. "url": "https://github.com/symfony/filesystem.git",
  3191. "reference": "92a91985250c251de9b947a14bb2c9390b1a562c"
  3192. },
  3193. "dist": {
  3194. "type": "zip",
  3195. "url": "https://api.github.com/repos/symfony/filesystem/zipball/92a91985250c251de9b947a14bb2c9390b1a562c",
  3196. "reference": "92a91985250c251de9b947a14bb2c9390b1a562c",
  3197. "shasum": ""
  3198. },
  3199. "require": {
  3200. "php": ">=8.2",
  3201. "symfony/polyfill-ctype": "~1.8",
  3202. "symfony/polyfill-mbstring": "~1.8"
  3203. },
  3204. "require-dev": {
  3205. "symfony/process": "^6.4|^7.0"
  3206. },
  3207. "type": "library",
  3208. "autoload": {
  3209. "psr-4": {
  3210. "Symfony\\Component\\Filesystem\\": ""
  3211. },
  3212. "exclude-from-classmap": [
  3213. "/Tests/"
  3214. ]
  3215. },
  3216. "notification-url": "https://packagist.org/downloads/",
  3217. "license": [
  3218. "MIT"
  3219. ],
  3220. "authors": [
  3221. {
  3222. "name": "Fabien Potencier",
  3223. "email": "fabien@symfony.com"
  3224. },
  3225. {
  3226. "name": "Symfony Community",
  3227. "homepage": "https://symfony.com/contributors"
  3228. }
  3229. ],
  3230. "description": "Provides basic utilities for the filesystem",
  3231. "homepage": "https://symfony.com",
  3232. "support": {
  3233. "source": "https://github.com/symfony/filesystem/tree/v7.1.2"
  3234. },
  3235. "funding": [
  3236. {
  3237. "url": "https://symfony.com/sponsor",
  3238. "type": "custom"
  3239. },
  3240. {
  3241. "url": "https://github.com/fabpot",
  3242. "type": "github"
  3243. },
  3244. {
  3245. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3246. "type": "tidelift"
  3247. }
  3248. ],
  3249. "time": "2024-06-28T10:03:55+00:00"
  3250. },
  3251. {
  3252. "name": "symfony/finder",
  3253. "version": "v7.1.4",
  3254. "source": {
  3255. "type": "git",
  3256. "url": "https://github.com/symfony/finder.git",
  3257. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823"
  3258. },
  3259. "dist": {
  3260. "type": "zip",
  3261. "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823",
  3262. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823",
  3263. "shasum": ""
  3264. },
  3265. "require": {
  3266. "php": ">=8.2"
  3267. },
  3268. "require-dev": {
  3269. "symfony/filesystem": "^6.4|^7.0"
  3270. },
  3271. "type": "library",
  3272. "autoload": {
  3273. "psr-4": {
  3274. "Symfony\\Component\\Finder\\": ""
  3275. },
  3276. "exclude-from-classmap": [
  3277. "/Tests/"
  3278. ]
  3279. },
  3280. "notification-url": "https://packagist.org/downloads/",
  3281. "license": [
  3282. "MIT"
  3283. ],
  3284. "authors": [
  3285. {
  3286. "name": "Fabien Potencier",
  3287. "email": "fabien@symfony.com"
  3288. },
  3289. {
  3290. "name": "Symfony Community",
  3291. "homepage": "https://symfony.com/contributors"
  3292. }
  3293. ],
  3294. "description": "Finds files and directories via an intuitive fluent interface",
  3295. "homepage": "https://symfony.com",
  3296. "support": {
  3297. "source": "https://github.com/symfony/finder/tree/v7.1.4"
  3298. },
  3299. "funding": [
  3300. {
  3301. "url": "https://symfony.com/sponsor",
  3302. "type": "custom"
  3303. },
  3304. {
  3305. "url": "https://github.com/fabpot",
  3306. "type": "github"
  3307. },
  3308. {
  3309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3310. "type": "tidelift"
  3311. }
  3312. ],
  3313. "time": "2024-08-13T14:28:19+00:00"
  3314. },
  3315. {
  3316. "name": "symfony/flex",
  3317. "version": "v2.4.6",
  3318. "source": {
  3319. "type": "git",
  3320. "url": "https://github.com/symfony/flex.git",
  3321. "reference": "4dc11919791f81d087a12db2ab4c7e044431ef6b"
  3322. },
  3323. "dist": {
  3324. "type": "zip",
  3325. "url": "https://api.github.com/repos/symfony/flex/zipball/4dc11919791f81d087a12db2ab4c7e044431ef6b",
  3326. "reference": "4dc11919791f81d087a12db2ab4c7e044431ef6b",
  3327. "shasum": ""
  3328. },
  3329. "require": {
  3330. "composer-plugin-api": "^2.1",
  3331. "php": ">=8.0"
  3332. },
  3333. "require-dev": {
  3334. "composer/composer": "^2.1",
  3335. "symfony/dotenv": "^5.4|^6.0",
  3336. "symfony/filesystem": "^5.4|^6.0",
  3337. "symfony/phpunit-bridge": "^5.4|^6.0",
  3338. "symfony/process": "^5.4|^6.0"
  3339. },
  3340. "type": "composer-plugin",
  3341. "extra": {
  3342. "class": "Symfony\\Flex\\Flex"
  3343. },
  3344. "autoload": {
  3345. "psr-4": {
  3346. "Symfony\\Flex\\": "src"
  3347. }
  3348. },
  3349. "notification-url": "https://packagist.org/downloads/",
  3350. "license": [
  3351. "MIT"
  3352. ],
  3353. "authors": [
  3354. {
  3355. "name": "Fabien Potencier",
  3356. "email": "fabien.potencier@gmail.com"
  3357. }
  3358. ],
  3359. "description": "Composer plugin for Symfony",
  3360. "support": {
  3361. "issues": "https://github.com/symfony/flex/issues",
  3362. "source": "https://github.com/symfony/flex/tree/v2.4.6"
  3363. },
  3364. "funding": [
  3365. {
  3366. "url": "https://symfony.com/sponsor",
  3367. "type": "custom"
  3368. },
  3369. {
  3370. "url": "https://github.com/fabpot",
  3371. "type": "github"
  3372. },
  3373. {
  3374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3375. "type": "tidelift"
  3376. }
  3377. ],
  3378. "time": "2024-04-27T10:22:22+00:00"
  3379. },
  3380. {
  3381. "name": "symfony/framework-bundle",
  3382. "version": "v7.1.4",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/symfony/framework-bundle.git",
  3386. "reference": "711af4eefcb4054a9c93e44b403626e1826bcddd"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/711af4eefcb4054a9c93e44b403626e1826bcddd",
  3391. "reference": "711af4eefcb4054a9c93e44b403626e1826bcddd",
  3392. "shasum": ""
  3393. },
  3394. "require": {
  3395. "composer-runtime-api": ">=2.1",
  3396. "ext-xml": "*",
  3397. "php": ">=8.2",
  3398. "symfony/cache": "^6.4|^7.0",
  3399. "symfony/config": "^6.4|^7.0",
  3400. "symfony/dependency-injection": "^7.1",
  3401. "symfony/deprecation-contracts": "^2.5|^3",
  3402. "symfony/error-handler": "^6.4|^7.0",
  3403. "symfony/event-dispatcher": "^6.4|^7.0",
  3404. "symfony/filesystem": "^7.1",
  3405. "symfony/finder": "^6.4|^7.0",
  3406. "symfony/http-foundation": "^6.4|^7.0",
  3407. "symfony/http-kernel": "^6.4|^7.0",
  3408. "symfony/polyfill-mbstring": "~1.0",
  3409. "symfony/routing": "^6.4|^7.0"
  3410. },
  3411. "conflict": {
  3412. "doctrine/persistence": "<1.3",
  3413. "phpdocumentor/reflection-docblock": "<3.2.2",
  3414. "phpdocumentor/type-resolver": "<1.4.0",
  3415. "symfony/asset": "<6.4",
  3416. "symfony/asset-mapper": "<6.4",
  3417. "symfony/clock": "<6.4",
  3418. "symfony/console": "<6.4",
  3419. "symfony/dom-crawler": "<6.4",
  3420. "symfony/dotenv": "<6.4",
  3421. "symfony/form": "<6.4",
  3422. "symfony/http-client": "<6.4",
  3423. "symfony/lock": "<6.4",
  3424. "symfony/mailer": "<6.4",
  3425. "symfony/messenger": "<6.4",
  3426. "symfony/mime": "<6.4",
  3427. "symfony/property-access": "<6.4",
  3428. "symfony/property-info": "<6.4",
  3429. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  3430. "symfony/security-core": "<6.4",
  3431. "symfony/security-csrf": "<6.4",
  3432. "symfony/serializer": "<6.4",
  3433. "symfony/stopwatch": "<6.4",
  3434. "symfony/translation": "<6.4",
  3435. "symfony/twig-bridge": "<6.4",
  3436. "symfony/twig-bundle": "<6.4",
  3437. "symfony/validator": "<6.4",
  3438. "symfony/web-profiler-bundle": "<6.4",
  3439. "symfony/workflow": "<6.4"
  3440. },
  3441. "require-dev": {
  3442. "doctrine/persistence": "^1.3|^2|^3",
  3443. "dragonmantank/cron-expression": "^3.1",
  3444. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3445. "seld/jsonlint": "^1.10",
  3446. "symfony/asset": "^6.4|^7.0",
  3447. "symfony/asset-mapper": "^6.4|^7.0",
  3448. "symfony/browser-kit": "^6.4|^7.0",
  3449. "symfony/clock": "^6.4|^7.0",
  3450. "symfony/console": "^6.4|^7.0",
  3451. "symfony/css-selector": "^6.4|^7.0",
  3452. "symfony/dom-crawler": "^6.4|^7.0",
  3453. "symfony/dotenv": "^6.4|^7.0",
  3454. "symfony/expression-language": "^6.4|^7.0",
  3455. "symfony/form": "^6.4|^7.0",
  3456. "symfony/html-sanitizer": "^6.4|^7.0",
  3457. "symfony/http-client": "^6.4|^7.0",
  3458. "symfony/lock": "^6.4|^7.0",
  3459. "symfony/mailer": "^6.4|^7.0",
  3460. "symfony/messenger": "^6.4|^7.0",
  3461. "symfony/mime": "^6.4|^7.0",
  3462. "symfony/notifier": "^6.4|^7.0",
  3463. "symfony/polyfill-intl-icu": "~1.0",
  3464. "symfony/process": "^6.4|^7.0",
  3465. "symfony/property-info": "^6.4|^7.0",
  3466. "symfony/rate-limiter": "^6.4|^7.0",
  3467. "symfony/scheduler": "^6.4.4|^7.0.4",
  3468. "symfony/security-bundle": "^6.4|^7.0",
  3469. "symfony/semaphore": "^6.4|^7.0",
  3470. "symfony/serializer": "^6.4|^7.0",
  3471. "symfony/stopwatch": "^6.4|^7.0",
  3472. "symfony/string": "^6.4|^7.0",
  3473. "symfony/translation": "^6.4|^7.0",
  3474. "symfony/twig-bundle": "^6.4|^7.0",
  3475. "symfony/type-info": "^7.1",
  3476. "symfony/uid": "^6.4|^7.0",
  3477. "symfony/validator": "^6.4|^7.0",
  3478. "symfony/web-link": "^6.4|^7.0",
  3479. "symfony/workflow": "^6.4|^7.0",
  3480. "symfony/yaml": "^6.4|^7.0",
  3481. "twig/twig": "^3.0.4"
  3482. },
  3483. "type": "symfony-bundle",
  3484. "autoload": {
  3485. "psr-4": {
  3486. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3487. },
  3488. "exclude-from-classmap": [
  3489. "/Tests/"
  3490. ]
  3491. },
  3492. "notification-url": "https://packagist.org/downloads/",
  3493. "license": [
  3494. "MIT"
  3495. ],
  3496. "authors": [
  3497. {
  3498. "name": "Fabien Potencier",
  3499. "email": "fabien@symfony.com"
  3500. },
  3501. {
  3502. "name": "Symfony Community",
  3503. "homepage": "https://symfony.com/contributors"
  3504. }
  3505. ],
  3506. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  3507. "homepage": "https://symfony.com",
  3508. "support": {
  3509. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.4"
  3510. },
  3511. "funding": [
  3512. {
  3513. "url": "https://symfony.com/sponsor",
  3514. "type": "custom"
  3515. },
  3516. {
  3517. "url": "https://github.com/fabpot",
  3518. "type": "github"
  3519. },
  3520. {
  3521. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3522. "type": "tidelift"
  3523. }
  3524. ],
  3525. "time": "2024-08-11T16:10:02+00:00"
  3526. },
  3527. {
  3528. "name": "symfony/http-foundation",
  3529. "version": "v7.1.3",
  3530. "source": {
  3531. "type": "git",
  3532. "url": "https://github.com/symfony/http-foundation.git",
  3533. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a"
  3534. },
  3535. "dist": {
  3536. "type": "zip",
  3537. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  3538. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  3539. "shasum": ""
  3540. },
  3541. "require": {
  3542. "php": ">=8.2",
  3543. "symfony/polyfill-mbstring": "~1.1",
  3544. "symfony/polyfill-php83": "^1.27"
  3545. },
  3546. "conflict": {
  3547. "doctrine/dbal": "<3.6",
  3548. "symfony/cache": "<6.4"
  3549. },
  3550. "require-dev": {
  3551. "doctrine/dbal": "^3.6|^4",
  3552. "predis/predis": "^1.1|^2.0",
  3553. "symfony/cache": "^6.4|^7.0",
  3554. "symfony/dependency-injection": "^6.4|^7.0",
  3555. "symfony/expression-language": "^6.4|^7.0",
  3556. "symfony/http-kernel": "^6.4|^7.0",
  3557. "symfony/mime": "^6.4|^7.0",
  3558. "symfony/rate-limiter": "^6.4|^7.0"
  3559. },
  3560. "type": "library",
  3561. "autoload": {
  3562. "psr-4": {
  3563. "Symfony\\Component\\HttpFoundation\\": ""
  3564. },
  3565. "exclude-from-classmap": [
  3566. "/Tests/"
  3567. ]
  3568. },
  3569. "notification-url": "https://packagist.org/downloads/",
  3570. "license": [
  3571. "MIT"
  3572. ],
  3573. "authors": [
  3574. {
  3575. "name": "Fabien Potencier",
  3576. "email": "fabien@symfony.com"
  3577. },
  3578. {
  3579. "name": "Symfony Community",
  3580. "homepage": "https://symfony.com/contributors"
  3581. }
  3582. ],
  3583. "description": "Defines an object-oriented layer for the HTTP specification",
  3584. "homepage": "https://symfony.com",
  3585. "support": {
  3586. "source": "https://github.com/symfony/http-foundation/tree/v7.1.3"
  3587. },
  3588. "funding": [
  3589. {
  3590. "url": "https://symfony.com/sponsor",
  3591. "type": "custom"
  3592. },
  3593. {
  3594. "url": "https://github.com/fabpot",
  3595. "type": "github"
  3596. },
  3597. {
  3598. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3599. "type": "tidelift"
  3600. }
  3601. ],
  3602. "time": "2024-07-26T12:41:01+00:00"
  3603. },
  3604. {
  3605. "name": "symfony/http-kernel",
  3606. "version": "v7.1.4",
  3607. "source": {
  3608. "type": "git",
  3609. "url": "https://github.com/symfony/http-kernel.git",
  3610. "reference": "6efcbd1b3f444f631c386504fc83eeca25963747"
  3611. },
  3612. "dist": {
  3613. "type": "zip",
  3614. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6efcbd1b3f444f631c386504fc83eeca25963747",
  3615. "reference": "6efcbd1b3f444f631c386504fc83eeca25963747",
  3616. "shasum": ""
  3617. },
  3618. "require": {
  3619. "php": ">=8.2",
  3620. "psr/log": "^1|^2|^3",
  3621. "symfony/deprecation-contracts": "^2.5|^3",
  3622. "symfony/error-handler": "^6.4|^7.0",
  3623. "symfony/event-dispatcher": "^6.4|^7.0",
  3624. "symfony/http-foundation": "^6.4|^7.0",
  3625. "symfony/polyfill-ctype": "^1.8"
  3626. },
  3627. "conflict": {
  3628. "symfony/browser-kit": "<6.4",
  3629. "symfony/cache": "<6.4",
  3630. "symfony/config": "<6.4",
  3631. "symfony/console": "<6.4",
  3632. "symfony/dependency-injection": "<6.4",
  3633. "symfony/doctrine-bridge": "<6.4",
  3634. "symfony/form": "<6.4",
  3635. "symfony/http-client": "<6.4",
  3636. "symfony/http-client-contracts": "<2.5",
  3637. "symfony/mailer": "<6.4",
  3638. "symfony/messenger": "<6.4",
  3639. "symfony/translation": "<6.4",
  3640. "symfony/translation-contracts": "<2.5",
  3641. "symfony/twig-bridge": "<6.4",
  3642. "symfony/validator": "<6.4",
  3643. "symfony/var-dumper": "<6.4",
  3644. "twig/twig": "<3.0.4"
  3645. },
  3646. "provide": {
  3647. "psr/log-implementation": "1.0|2.0|3.0"
  3648. },
  3649. "require-dev": {
  3650. "psr/cache": "^1.0|^2.0|^3.0",
  3651. "symfony/browser-kit": "^6.4|^7.0",
  3652. "symfony/clock": "^6.4|^7.0",
  3653. "symfony/config": "^6.4|^7.0",
  3654. "symfony/console": "^6.4|^7.0",
  3655. "symfony/css-selector": "^6.4|^7.0",
  3656. "symfony/dependency-injection": "^6.4|^7.0",
  3657. "symfony/dom-crawler": "^6.4|^7.0",
  3658. "symfony/expression-language": "^6.4|^7.0",
  3659. "symfony/finder": "^6.4|^7.0",
  3660. "symfony/http-client-contracts": "^2.5|^3",
  3661. "symfony/process": "^6.4|^7.0",
  3662. "symfony/property-access": "^7.1",
  3663. "symfony/routing": "^6.4|^7.0",
  3664. "symfony/serializer": "^7.1",
  3665. "symfony/stopwatch": "^6.4|^7.0",
  3666. "symfony/translation": "^6.4|^7.0",
  3667. "symfony/translation-contracts": "^2.5|^3",
  3668. "symfony/uid": "^6.4|^7.0",
  3669. "symfony/validator": "^6.4|^7.0",
  3670. "symfony/var-dumper": "^6.4|^7.0",
  3671. "symfony/var-exporter": "^6.4|^7.0",
  3672. "twig/twig": "^3.0.4"
  3673. },
  3674. "type": "library",
  3675. "autoload": {
  3676. "psr-4": {
  3677. "Symfony\\Component\\HttpKernel\\": ""
  3678. },
  3679. "exclude-from-classmap": [
  3680. "/Tests/"
  3681. ]
  3682. },
  3683. "notification-url": "https://packagist.org/downloads/",
  3684. "license": [
  3685. "MIT"
  3686. ],
  3687. "authors": [
  3688. {
  3689. "name": "Fabien Potencier",
  3690. "email": "fabien@symfony.com"
  3691. },
  3692. {
  3693. "name": "Symfony Community",
  3694. "homepage": "https://symfony.com/contributors"
  3695. }
  3696. ],
  3697. "description": "Provides a structured process for converting a Request into a Response",
  3698. "homepage": "https://symfony.com",
  3699. "support": {
  3700. "source": "https://github.com/symfony/http-kernel/tree/v7.1.4"
  3701. },
  3702. "funding": [
  3703. {
  3704. "url": "https://symfony.com/sponsor",
  3705. "type": "custom"
  3706. },
  3707. {
  3708. "url": "https://github.com/fabpot",
  3709. "type": "github"
  3710. },
  3711. {
  3712. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3713. "type": "tidelift"
  3714. }
  3715. ],
  3716. "time": "2024-08-30T17:02:28+00:00"
  3717. },
  3718. {
  3719. "name": "symfony/mailer",
  3720. "version": "v7.1.2",
  3721. "source": {
  3722. "type": "git",
  3723. "url": "https://github.com/symfony/mailer.git",
  3724. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee"
  3725. },
  3726. "dist": {
  3727. "type": "zip",
  3728. "url": "https://api.github.com/repos/symfony/mailer/zipball/8fcff0af9043c8f8a8e229437cea363e282f9aee",
  3729. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee",
  3730. "shasum": ""
  3731. },
  3732. "require": {
  3733. "egulias/email-validator": "^2.1.10|^3|^4",
  3734. "php": ">=8.2",
  3735. "psr/event-dispatcher": "^1",
  3736. "psr/log": "^1|^2|^3",
  3737. "symfony/event-dispatcher": "^6.4|^7.0",
  3738. "symfony/mime": "^6.4|^7.0",
  3739. "symfony/service-contracts": "^2.5|^3"
  3740. },
  3741. "conflict": {
  3742. "symfony/http-client-contracts": "<2.5",
  3743. "symfony/http-kernel": "<6.4",
  3744. "symfony/messenger": "<6.4",
  3745. "symfony/mime": "<6.4",
  3746. "symfony/twig-bridge": "<6.4"
  3747. },
  3748. "require-dev": {
  3749. "symfony/console": "^6.4|^7.0",
  3750. "symfony/http-client": "^6.4|^7.0",
  3751. "symfony/messenger": "^6.4|^7.0",
  3752. "symfony/twig-bridge": "^6.4|^7.0"
  3753. },
  3754. "type": "library",
  3755. "autoload": {
  3756. "psr-4": {
  3757. "Symfony\\Component\\Mailer\\": ""
  3758. },
  3759. "exclude-from-classmap": [
  3760. "/Tests/"
  3761. ]
  3762. },
  3763. "notification-url": "https://packagist.org/downloads/",
  3764. "license": [
  3765. "MIT"
  3766. ],
  3767. "authors": [
  3768. {
  3769. "name": "Fabien Potencier",
  3770. "email": "fabien@symfony.com"
  3771. },
  3772. {
  3773. "name": "Symfony Community",
  3774. "homepage": "https://symfony.com/contributors"
  3775. }
  3776. ],
  3777. "description": "Helps sending emails",
  3778. "homepage": "https://symfony.com",
  3779. "support": {
  3780. "source": "https://github.com/symfony/mailer/tree/v7.1.2"
  3781. },
  3782. "funding": [
  3783. {
  3784. "url": "https://symfony.com/sponsor",
  3785. "type": "custom"
  3786. },
  3787. {
  3788. "url": "https://github.com/fabpot",
  3789. "type": "github"
  3790. },
  3791. {
  3792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3793. "type": "tidelift"
  3794. }
  3795. ],
  3796. "time": "2024-06-28T08:00:31+00:00"
  3797. },
  3798. {
  3799. "name": "symfony/mime",
  3800. "version": "v7.1.4",
  3801. "source": {
  3802. "type": "git",
  3803. "url": "https://github.com/symfony/mime.git",
  3804. "reference": "ccaa6c2503db867f472a587291e764d6a1e58758"
  3805. },
  3806. "dist": {
  3807. "type": "zip",
  3808. "url": "https://api.github.com/repos/symfony/mime/zipball/ccaa6c2503db867f472a587291e764d6a1e58758",
  3809. "reference": "ccaa6c2503db867f472a587291e764d6a1e58758",
  3810. "shasum": ""
  3811. },
  3812. "require": {
  3813. "php": ">=8.2",
  3814. "symfony/polyfill-intl-idn": "^1.10",
  3815. "symfony/polyfill-mbstring": "^1.0"
  3816. },
  3817. "conflict": {
  3818. "egulias/email-validator": "~3.0.0",
  3819. "phpdocumentor/reflection-docblock": "<3.2.2",
  3820. "phpdocumentor/type-resolver": "<1.4.0",
  3821. "symfony/mailer": "<6.4",
  3822. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  3823. },
  3824. "require-dev": {
  3825. "egulias/email-validator": "^2.1.10|^3.1|^4",
  3826. "league/html-to-markdown": "^5.0",
  3827. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3828. "symfony/dependency-injection": "^6.4|^7.0",
  3829. "symfony/process": "^6.4|^7.0",
  3830. "symfony/property-access": "^6.4|^7.0",
  3831. "symfony/property-info": "^6.4|^7.0",
  3832. "symfony/serializer": "^6.4.3|^7.0.3"
  3833. },
  3834. "type": "library",
  3835. "autoload": {
  3836. "psr-4": {
  3837. "Symfony\\Component\\Mime\\": ""
  3838. },
  3839. "exclude-from-classmap": [
  3840. "/Tests/"
  3841. ]
  3842. },
  3843. "notification-url": "https://packagist.org/downloads/",
  3844. "license": [
  3845. "MIT"
  3846. ],
  3847. "authors": [
  3848. {
  3849. "name": "Fabien Potencier",
  3850. "email": "fabien@symfony.com"
  3851. },
  3852. {
  3853. "name": "Symfony Community",
  3854. "homepage": "https://symfony.com/contributors"
  3855. }
  3856. ],
  3857. "description": "Allows manipulating MIME messages",
  3858. "homepage": "https://symfony.com",
  3859. "keywords": [
  3860. "mime",
  3861. "mime-type"
  3862. ],
  3863. "support": {
  3864. "source": "https://github.com/symfony/mime/tree/v7.1.4"
  3865. },
  3866. "funding": [
  3867. {
  3868. "url": "https://symfony.com/sponsor",
  3869. "type": "custom"
  3870. },
  3871. {
  3872. "url": "https://github.com/fabpot",
  3873. "type": "github"
  3874. },
  3875. {
  3876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3877. "type": "tidelift"
  3878. }
  3879. ],
  3880. "time": "2024-08-13T14:28:19+00:00"
  3881. },
  3882. {
  3883. "name": "symfony/password-hasher",
  3884. "version": "v7.1.1",
  3885. "source": {
  3886. "type": "git",
  3887. "url": "https://github.com/symfony/password-hasher.git",
  3888. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662"
  3889. },
  3890. "dist": {
  3891. "type": "zip",
  3892. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  3893. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  3894. "shasum": ""
  3895. },
  3896. "require": {
  3897. "php": ">=8.2"
  3898. },
  3899. "conflict": {
  3900. "symfony/security-core": "<6.4"
  3901. },
  3902. "require-dev": {
  3903. "symfony/console": "^6.4|^7.0",
  3904. "symfony/security-core": "^6.4|^7.0"
  3905. },
  3906. "type": "library",
  3907. "autoload": {
  3908. "psr-4": {
  3909. "Symfony\\Component\\PasswordHasher\\": ""
  3910. },
  3911. "exclude-from-classmap": [
  3912. "/Tests/"
  3913. ]
  3914. },
  3915. "notification-url": "https://packagist.org/downloads/",
  3916. "license": [
  3917. "MIT"
  3918. ],
  3919. "authors": [
  3920. {
  3921. "name": "Robin Chalas",
  3922. "email": "robin.chalas@gmail.com"
  3923. },
  3924. {
  3925. "name": "Symfony Community",
  3926. "homepage": "https://symfony.com/contributors"
  3927. }
  3928. ],
  3929. "description": "Provides password hashing utilities",
  3930. "homepage": "https://symfony.com",
  3931. "keywords": [
  3932. "hashing",
  3933. "password"
  3934. ],
  3935. "support": {
  3936. "source": "https://github.com/symfony/password-hasher/tree/v7.1.1"
  3937. },
  3938. "funding": [
  3939. {
  3940. "url": "https://symfony.com/sponsor",
  3941. "type": "custom"
  3942. },
  3943. {
  3944. "url": "https://github.com/fabpot",
  3945. "type": "github"
  3946. },
  3947. {
  3948. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3949. "type": "tidelift"
  3950. }
  3951. ],
  3952. "time": "2024-05-31T14:57:53+00:00"
  3953. },
  3954. {
  3955. "name": "symfony/polyfill-intl-grapheme",
  3956. "version": "v1.30.0",
  3957. "source": {
  3958. "type": "git",
  3959. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3960. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a"
  3961. },
  3962. "dist": {
  3963. "type": "zip",
  3964. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a",
  3965. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a",
  3966. "shasum": ""
  3967. },
  3968. "require": {
  3969. "php": ">=7.1"
  3970. },
  3971. "suggest": {
  3972. "ext-intl": "For best performance"
  3973. },
  3974. "type": "library",
  3975. "extra": {
  3976. "thanks": {
  3977. "name": "symfony/polyfill",
  3978. "url": "https://github.com/symfony/polyfill"
  3979. }
  3980. },
  3981. "autoload": {
  3982. "files": [
  3983. "bootstrap.php"
  3984. ],
  3985. "psr-4": {
  3986. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3987. }
  3988. },
  3989. "notification-url": "https://packagist.org/downloads/",
  3990. "license": [
  3991. "MIT"
  3992. ],
  3993. "authors": [
  3994. {
  3995. "name": "Nicolas Grekas",
  3996. "email": "p@tchwork.com"
  3997. },
  3998. {
  3999. "name": "Symfony Community",
  4000. "homepage": "https://symfony.com/contributors"
  4001. }
  4002. ],
  4003. "description": "Symfony polyfill for intl's grapheme_* functions",
  4004. "homepage": "https://symfony.com",
  4005. "keywords": [
  4006. "compatibility",
  4007. "grapheme",
  4008. "intl",
  4009. "polyfill",
  4010. "portable",
  4011. "shim"
  4012. ],
  4013. "support": {
  4014. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0"
  4015. },
  4016. "funding": [
  4017. {
  4018. "url": "https://symfony.com/sponsor",
  4019. "type": "custom"
  4020. },
  4021. {
  4022. "url": "https://github.com/fabpot",
  4023. "type": "github"
  4024. },
  4025. {
  4026. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4027. "type": "tidelift"
  4028. }
  4029. ],
  4030. "time": "2024-05-31T15:07:36+00:00"
  4031. },
  4032. {
  4033. "name": "symfony/polyfill-intl-idn",
  4034. "version": "v1.31.0",
  4035. "source": {
  4036. "type": "git",
  4037. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4038. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  4039. },
  4040. "dist": {
  4041. "type": "zip",
  4042. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  4043. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  4044. "shasum": ""
  4045. },
  4046. "require": {
  4047. "php": ">=7.2",
  4048. "symfony/polyfill-intl-normalizer": "^1.10"
  4049. },
  4050. "suggest": {
  4051. "ext-intl": "For best performance"
  4052. },
  4053. "type": "library",
  4054. "extra": {
  4055. "thanks": {
  4056. "name": "symfony/polyfill",
  4057. "url": "https://github.com/symfony/polyfill"
  4058. }
  4059. },
  4060. "autoload": {
  4061. "files": [
  4062. "bootstrap.php"
  4063. ],
  4064. "psr-4": {
  4065. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4066. }
  4067. },
  4068. "notification-url": "https://packagist.org/downloads/",
  4069. "license": [
  4070. "MIT"
  4071. ],
  4072. "authors": [
  4073. {
  4074. "name": "Laurent Bassin",
  4075. "email": "laurent@bassin.info"
  4076. },
  4077. {
  4078. "name": "Trevor Rowbotham",
  4079. "email": "trevor.rowbotham@pm.me"
  4080. },
  4081. {
  4082. "name": "Symfony Community",
  4083. "homepage": "https://symfony.com/contributors"
  4084. }
  4085. ],
  4086. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4087. "homepage": "https://symfony.com",
  4088. "keywords": [
  4089. "compatibility",
  4090. "idn",
  4091. "intl",
  4092. "polyfill",
  4093. "portable",
  4094. "shim"
  4095. ],
  4096. "support": {
  4097. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  4098. },
  4099. "funding": [
  4100. {
  4101. "url": "https://symfony.com/sponsor",
  4102. "type": "custom"
  4103. },
  4104. {
  4105. "url": "https://github.com/fabpot",
  4106. "type": "github"
  4107. },
  4108. {
  4109. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4110. "type": "tidelift"
  4111. }
  4112. ],
  4113. "time": "2024-09-09T11:45:10+00:00"
  4114. },
  4115. {
  4116. "name": "symfony/polyfill-intl-normalizer",
  4117. "version": "v1.30.0",
  4118. "source": {
  4119. "type": "git",
  4120. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4121. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
  4122. },
  4123. "dist": {
  4124. "type": "zip",
  4125. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  4126. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  4127. "shasum": ""
  4128. },
  4129. "require": {
  4130. "php": ">=7.1"
  4131. },
  4132. "suggest": {
  4133. "ext-intl": "For best performance"
  4134. },
  4135. "type": "library",
  4136. "extra": {
  4137. "thanks": {
  4138. "name": "symfony/polyfill",
  4139. "url": "https://github.com/symfony/polyfill"
  4140. }
  4141. },
  4142. "autoload": {
  4143. "files": [
  4144. "bootstrap.php"
  4145. ],
  4146. "psr-4": {
  4147. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4148. },
  4149. "classmap": [
  4150. "Resources/stubs"
  4151. ]
  4152. },
  4153. "notification-url": "https://packagist.org/downloads/",
  4154. "license": [
  4155. "MIT"
  4156. ],
  4157. "authors": [
  4158. {
  4159. "name": "Nicolas Grekas",
  4160. "email": "p@tchwork.com"
  4161. },
  4162. {
  4163. "name": "Symfony Community",
  4164. "homepage": "https://symfony.com/contributors"
  4165. }
  4166. ],
  4167. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4168. "homepage": "https://symfony.com",
  4169. "keywords": [
  4170. "compatibility",
  4171. "intl",
  4172. "normalizer",
  4173. "polyfill",
  4174. "portable",
  4175. "shim"
  4176. ],
  4177. "support": {
  4178. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
  4179. },
  4180. "funding": [
  4181. {
  4182. "url": "https://symfony.com/sponsor",
  4183. "type": "custom"
  4184. },
  4185. {
  4186. "url": "https://github.com/fabpot",
  4187. "type": "github"
  4188. },
  4189. {
  4190. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4191. "type": "tidelift"
  4192. }
  4193. ],
  4194. "time": "2024-05-31T15:07:36+00:00"
  4195. },
  4196. {
  4197. "name": "symfony/polyfill-mbstring",
  4198. "version": "v1.30.0",
  4199. "source": {
  4200. "type": "git",
  4201. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4202. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  4203. },
  4204. "dist": {
  4205. "type": "zip",
  4206. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  4207. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  4208. "shasum": ""
  4209. },
  4210. "require": {
  4211. "php": ">=7.1"
  4212. },
  4213. "provide": {
  4214. "ext-mbstring": "*"
  4215. },
  4216. "suggest": {
  4217. "ext-mbstring": "For best performance"
  4218. },
  4219. "type": "library",
  4220. "extra": {
  4221. "thanks": {
  4222. "name": "symfony/polyfill",
  4223. "url": "https://github.com/symfony/polyfill"
  4224. }
  4225. },
  4226. "autoload": {
  4227. "files": [
  4228. "bootstrap.php"
  4229. ],
  4230. "psr-4": {
  4231. "Symfony\\Polyfill\\Mbstring\\": ""
  4232. }
  4233. },
  4234. "notification-url": "https://packagist.org/downloads/",
  4235. "license": [
  4236. "MIT"
  4237. ],
  4238. "authors": [
  4239. {
  4240. "name": "Nicolas Grekas",
  4241. "email": "p@tchwork.com"
  4242. },
  4243. {
  4244. "name": "Symfony Community",
  4245. "homepage": "https://symfony.com/contributors"
  4246. }
  4247. ],
  4248. "description": "Symfony polyfill for the Mbstring extension",
  4249. "homepage": "https://symfony.com",
  4250. "keywords": [
  4251. "compatibility",
  4252. "mbstring",
  4253. "polyfill",
  4254. "portable",
  4255. "shim"
  4256. ],
  4257. "support": {
  4258. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  4259. },
  4260. "funding": [
  4261. {
  4262. "url": "https://symfony.com/sponsor",
  4263. "type": "custom"
  4264. },
  4265. {
  4266. "url": "https://github.com/fabpot",
  4267. "type": "github"
  4268. },
  4269. {
  4270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4271. "type": "tidelift"
  4272. }
  4273. ],
  4274. "time": "2024-06-19T12:30:46+00:00"
  4275. },
  4276. {
  4277. "name": "symfony/polyfill-php83",
  4278. "version": "v1.30.0",
  4279. "source": {
  4280. "type": "git",
  4281. "url": "https://github.com/symfony/polyfill-php83.git",
  4282. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9"
  4283. },
  4284. "dist": {
  4285. "type": "zip",
  4286. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  4287. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  4288. "shasum": ""
  4289. },
  4290. "require": {
  4291. "php": ">=7.1"
  4292. },
  4293. "type": "library",
  4294. "extra": {
  4295. "thanks": {
  4296. "name": "symfony/polyfill",
  4297. "url": "https://github.com/symfony/polyfill"
  4298. }
  4299. },
  4300. "autoload": {
  4301. "files": [
  4302. "bootstrap.php"
  4303. ],
  4304. "psr-4": {
  4305. "Symfony\\Polyfill\\Php83\\": ""
  4306. },
  4307. "classmap": [
  4308. "Resources/stubs"
  4309. ]
  4310. },
  4311. "notification-url": "https://packagist.org/downloads/",
  4312. "license": [
  4313. "MIT"
  4314. ],
  4315. "authors": [
  4316. {
  4317. "name": "Nicolas Grekas",
  4318. "email": "p@tchwork.com"
  4319. },
  4320. {
  4321. "name": "Symfony Community",
  4322. "homepage": "https://symfony.com/contributors"
  4323. }
  4324. ],
  4325. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  4326. "homepage": "https://symfony.com",
  4327. "keywords": [
  4328. "compatibility",
  4329. "polyfill",
  4330. "portable",
  4331. "shim"
  4332. ],
  4333. "support": {
  4334. "source": "https://github.com/symfony/polyfill-php83/tree/v1.30.0"
  4335. },
  4336. "funding": [
  4337. {
  4338. "url": "https://symfony.com/sponsor",
  4339. "type": "custom"
  4340. },
  4341. {
  4342. "url": "https://github.com/fabpot",
  4343. "type": "github"
  4344. },
  4345. {
  4346. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4347. "type": "tidelift"
  4348. }
  4349. ],
  4350. "time": "2024-06-19T12:35:24+00:00"
  4351. },
  4352. {
  4353. "name": "symfony/property-access",
  4354. "version": "v7.1.4",
  4355. "source": {
  4356. "type": "git",
  4357. "url": "https://github.com/symfony/property-access.git",
  4358. "reference": "6c709f97103355016e5782d0622437ae381012ad"
  4359. },
  4360. "dist": {
  4361. "type": "zip",
  4362. "url": "https://api.github.com/repos/symfony/property-access/zipball/6c709f97103355016e5782d0622437ae381012ad",
  4363. "reference": "6c709f97103355016e5782d0622437ae381012ad",
  4364. "shasum": ""
  4365. },
  4366. "require": {
  4367. "php": ">=8.2",
  4368. "symfony/property-info": "^6.4|^7.0"
  4369. },
  4370. "require-dev": {
  4371. "symfony/cache": "^6.4|^7.0"
  4372. },
  4373. "type": "library",
  4374. "autoload": {
  4375. "psr-4": {
  4376. "Symfony\\Component\\PropertyAccess\\": ""
  4377. },
  4378. "exclude-from-classmap": [
  4379. "/Tests/"
  4380. ]
  4381. },
  4382. "notification-url": "https://packagist.org/downloads/",
  4383. "license": [
  4384. "MIT"
  4385. ],
  4386. "authors": [
  4387. {
  4388. "name": "Fabien Potencier",
  4389. "email": "fabien@symfony.com"
  4390. },
  4391. {
  4392. "name": "Symfony Community",
  4393. "homepage": "https://symfony.com/contributors"
  4394. }
  4395. ],
  4396. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  4397. "homepage": "https://symfony.com",
  4398. "keywords": [
  4399. "access",
  4400. "array",
  4401. "extraction",
  4402. "index",
  4403. "injection",
  4404. "object",
  4405. "property",
  4406. "property-path",
  4407. "reflection"
  4408. ],
  4409. "support": {
  4410. "source": "https://github.com/symfony/property-access/tree/v7.1.4"
  4411. },
  4412. "funding": [
  4413. {
  4414. "url": "https://symfony.com/sponsor",
  4415. "type": "custom"
  4416. },
  4417. {
  4418. "url": "https://github.com/fabpot",
  4419. "type": "github"
  4420. },
  4421. {
  4422. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4423. "type": "tidelift"
  4424. }
  4425. ],
  4426. "time": "2024-08-30T16:12:47+00:00"
  4427. },
  4428. {
  4429. "name": "symfony/property-info",
  4430. "version": "v7.1.3",
  4431. "source": {
  4432. "type": "git",
  4433. "url": "https://github.com/symfony/property-info.git",
  4434. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b"
  4435. },
  4436. "dist": {
  4437. "type": "zip",
  4438. "url": "https://api.github.com/repos/symfony/property-info/zipball/88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  4439. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  4440. "shasum": ""
  4441. },
  4442. "require": {
  4443. "php": ">=8.2",
  4444. "symfony/string": "^6.4|^7.0",
  4445. "symfony/type-info": "^7.1"
  4446. },
  4447. "conflict": {
  4448. "phpdocumentor/reflection-docblock": "<5.2",
  4449. "phpdocumentor/type-resolver": "<1.5.1",
  4450. "symfony/dependency-injection": "<6.4",
  4451. "symfony/serializer": "<6.4"
  4452. },
  4453. "require-dev": {
  4454. "phpdocumentor/reflection-docblock": "^5.2",
  4455. "phpstan/phpdoc-parser": "^1.0",
  4456. "symfony/cache": "^6.4|^7.0",
  4457. "symfony/dependency-injection": "^6.4|^7.0",
  4458. "symfony/serializer": "^6.4|^7.0"
  4459. },
  4460. "type": "library",
  4461. "autoload": {
  4462. "psr-4": {
  4463. "Symfony\\Component\\PropertyInfo\\": ""
  4464. },
  4465. "exclude-from-classmap": [
  4466. "/Tests/"
  4467. ]
  4468. },
  4469. "notification-url": "https://packagist.org/downloads/",
  4470. "license": [
  4471. "MIT"
  4472. ],
  4473. "authors": [
  4474. {
  4475. "name": "Kévin Dunglas",
  4476. "email": "dunglas@gmail.com"
  4477. },
  4478. {
  4479. "name": "Symfony Community",
  4480. "homepage": "https://symfony.com/contributors"
  4481. }
  4482. ],
  4483. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  4484. "homepage": "https://symfony.com",
  4485. "keywords": [
  4486. "doctrine",
  4487. "phpdoc",
  4488. "property",
  4489. "symfony",
  4490. "type",
  4491. "validator"
  4492. ],
  4493. "support": {
  4494. "source": "https://github.com/symfony/property-info/tree/v7.1.3"
  4495. },
  4496. "funding": [
  4497. {
  4498. "url": "https://symfony.com/sponsor",
  4499. "type": "custom"
  4500. },
  4501. {
  4502. "url": "https://github.com/fabpot",
  4503. "type": "github"
  4504. },
  4505. {
  4506. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4507. "type": "tidelift"
  4508. }
  4509. ],
  4510. "time": "2024-07-26T07:36:36+00:00"
  4511. },
  4512. {
  4513. "name": "symfony/routing",
  4514. "version": "v7.1.4",
  4515. "source": {
  4516. "type": "git",
  4517. "url": "https://github.com/symfony/routing.git",
  4518. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7"
  4519. },
  4520. "dist": {
  4521. "type": "zip",
  4522. "url": "https://api.github.com/repos/symfony/routing/zipball/1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  4523. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  4524. "shasum": ""
  4525. },
  4526. "require": {
  4527. "php": ">=8.2",
  4528. "symfony/deprecation-contracts": "^2.5|^3"
  4529. },
  4530. "conflict": {
  4531. "symfony/config": "<6.4",
  4532. "symfony/dependency-injection": "<6.4",
  4533. "symfony/yaml": "<6.4"
  4534. },
  4535. "require-dev": {
  4536. "psr/log": "^1|^2|^3",
  4537. "symfony/config": "^6.4|^7.0",
  4538. "symfony/dependency-injection": "^6.4|^7.0",
  4539. "symfony/expression-language": "^6.4|^7.0",
  4540. "symfony/http-foundation": "^6.4|^7.0",
  4541. "symfony/yaml": "^6.4|^7.0"
  4542. },
  4543. "type": "library",
  4544. "autoload": {
  4545. "psr-4": {
  4546. "Symfony\\Component\\Routing\\": ""
  4547. },
  4548. "exclude-from-classmap": [
  4549. "/Tests/"
  4550. ]
  4551. },
  4552. "notification-url": "https://packagist.org/downloads/",
  4553. "license": [
  4554. "MIT"
  4555. ],
  4556. "authors": [
  4557. {
  4558. "name": "Fabien Potencier",
  4559. "email": "fabien@symfony.com"
  4560. },
  4561. {
  4562. "name": "Symfony Community",
  4563. "homepage": "https://symfony.com/contributors"
  4564. }
  4565. ],
  4566. "description": "Maps an HTTP request to a set of configuration variables",
  4567. "homepage": "https://symfony.com",
  4568. "keywords": [
  4569. "router",
  4570. "routing",
  4571. "uri",
  4572. "url"
  4573. ],
  4574. "support": {
  4575. "source": "https://github.com/symfony/routing/tree/v7.1.4"
  4576. },
  4577. "funding": [
  4578. {
  4579. "url": "https://symfony.com/sponsor",
  4580. "type": "custom"
  4581. },
  4582. {
  4583. "url": "https://github.com/fabpot",
  4584. "type": "github"
  4585. },
  4586. {
  4587. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4588. "type": "tidelift"
  4589. }
  4590. ],
  4591. "time": "2024-08-29T08:16:25+00:00"
  4592. },
  4593. {
  4594. "name": "symfony/runtime",
  4595. "version": "v7.1.1",
  4596. "source": {
  4597. "type": "git",
  4598. "url": "https://github.com/symfony/runtime.git",
  4599. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6"
  4600. },
  4601. "dist": {
  4602. "type": "zip",
  4603. "url": "https://api.github.com/repos/symfony/runtime/zipball/ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  4604. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  4605. "shasum": ""
  4606. },
  4607. "require": {
  4608. "composer-plugin-api": "^1.0|^2.0",
  4609. "php": ">=8.2"
  4610. },
  4611. "conflict": {
  4612. "symfony/dotenv": "<6.4"
  4613. },
  4614. "require-dev": {
  4615. "composer/composer": "^2.6",
  4616. "symfony/console": "^6.4|^7.0",
  4617. "symfony/dotenv": "^6.4|^7.0",
  4618. "symfony/http-foundation": "^6.4|^7.0",
  4619. "symfony/http-kernel": "^6.4|^7.0"
  4620. },
  4621. "type": "composer-plugin",
  4622. "extra": {
  4623. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  4624. },
  4625. "autoload": {
  4626. "psr-4": {
  4627. "Symfony\\Component\\Runtime\\": "",
  4628. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  4629. },
  4630. "exclude-from-classmap": [
  4631. "/Tests/"
  4632. ]
  4633. },
  4634. "notification-url": "https://packagist.org/downloads/",
  4635. "license": [
  4636. "MIT"
  4637. ],
  4638. "authors": [
  4639. {
  4640. "name": "Nicolas Grekas",
  4641. "email": "p@tchwork.com"
  4642. },
  4643. {
  4644. "name": "Symfony Community",
  4645. "homepage": "https://symfony.com/contributors"
  4646. }
  4647. ],
  4648. "description": "Enables decoupling PHP applications from global state",
  4649. "homepage": "https://symfony.com",
  4650. "keywords": [
  4651. "runtime"
  4652. ],
  4653. "support": {
  4654. "source": "https://github.com/symfony/runtime/tree/v7.1.1"
  4655. },
  4656. "funding": [
  4657. {
  4658. "url": "https://symfony.com/sponsor",
  4659. "type": "custom"
  4660. },
  4661. {
  4662. "url": "https://github.com/fabpot",
  4663. "type": "github"
  4664. },
  4665. {
  4666. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4667. "type": "tidelift"
  4668. }
  4669. ],
  4670. "time": "2024-05-31T14:55:39+00:00"
  4671. },
  4672. {
  4673. "name": "symfony/security-bundle",
  4674. "version": "v7.1.4",
  4675. "source": {
  4676. "type": "git",
  4677. "url": "https://github.com/symfony/security-bundle.git",
  4678. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01"
  4679. },
  4680. "dist": {
  4681. "type": "zip",
  4682. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/5e10107856ff64d477c61fed7bcbb8a16125ea01",
  4683. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01",
  4684. "shasum": ""
  4685. },
  4686. "require": {
  4687. "composer-runtime-api": ">=2.1",
  4688. "ext-xml": "*",
  4689. "php": ">=8.2",
  4690. "symfony/clock": "^6.4|^7.0",
  4691. "symfony/config": "^6.4|^7.0",
  4692. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  4693. "symfony/event-dispatcher": "^6.4|^7.0",
  4694. "symfony/http-foundation": "^6.4|^7.0",
  4695. "symfony/http-kernel": "^6.4|^7.0",
  4696. "symfony/password-hasher": "^6.4|^7.0",
  4697. "symfony/security-core": "^6.4|^7.0",
  4698. "symfony/security-csrf": "^6.4|^7.0",
  4699. "symfony/security-http": "^7.1",
  4700. "symfony/service-contracts": "^2.5|^3"
  4701. },
  4702. "conflict": {
  4703. "symfony/browser-kit": "<6.4",
  4704. "symfony/console": "<6.4",
  4705. "symfony/framework-bundle": "<6.4",
  4706. "symfony/http-client": "<6.4",
  4707. "symfony/ldap": "<6.4",
  4708. "symfony/serializer": "<6.4",
  4709. "symfony/twig-bundle": "<6.4",
  4710. "symfony/validator": "<6.4"
  4711. },
  4712. "require-dev": {
  4713. "symfony/asset": "^6.4|^7.0",
  4714. "symfony/browser-kit": "^6.4|^7.0",
  4715. "symfony/console": "^6.4|^7.0",
  4716. "symfony/css-selector": "^6.4|^7.0",
  4717. "symfony/dom-crawler": "^6.4|^7.0",
  4718. "symfony/expression-language": "^6.4|^7.0",
  4719. "symfony/form": "^6.4|^7.0",
  4720. "symfony/framework-bundle": "^6.4|^7.0",
  4721. "symfony/http-client": "^6.4|^7.0",
  4722. "symfony/ldap": "^6.4|^7.0",
  4723. "symfony/process": "^6.4|^7.0",
  4724. "symfony/rate-limiter": "^6.4|^7.0",
  4725. "symfony/serializer": "^6.4|^7.0",
  4726. "symfony/translation": "^6.4|^7.0",
  4727. "symfony/twig-bridge": "^6.4|^7.0",
  4728. "symfony/twig-bundle": "^6.4|^7.0",
  4729. "symfony/validator": "^6.4|^7.0",
  4730. "symfony/yaml": "^6.4|^7.0",
  4731. "twig/twig": "^3.0.4",
  4732. "web-token/jwt-library": "^3.3.2|^4.0"
  4733. },
  4734. "type": "symfony-bundle",
  4735. "autoload": {
  4736. "psr-4": {
  4737. "Symfony\\Bundle\\SecurityBundle\\": ""
  4738. },
  4739. "exclude-from-classmap": [
  4740. "/Tests/"
  4741. ]
  4742. },
  4743. "notification-url": "https://packagist.org/downloads/",
  4744. "license": [
  4745. "MIT"
  4746. ],
  4747. "authors": [
  4748. {
  4749. "name": "Fabien Potencier",
  4750. "email": "fabien@symfony.com"
  4751. },
  4752. {
  4753. "name": "Symfony Community",
  4754. "homepage": "https://symfony.com/contributors"
  4755. }
  4756. ],
  4757. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  4758. "homepage": "https://symfony.com",
  4759. "support": {
  4760. "source": "https://github.com/symfony/security-bundle/tree/v7.1.4"
  4761. },
  4762. "funding": [
  4763. {
  4764. "url": "https://symfony.com/sponsor",
  4765. "type": "custom"
  4766. },
  4767. {
  4768. "url": "https://github.com/fabpot",
  4769. "type": "github"
  4770. },
  4771. {
  4772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4773. "type": "tidelift"
  4774. }
  4775. ],
  4776. "time": "2024-08-20T11:38:55+00:00"
  4777. },
  4778. {
  4779. "name": "symfony/security-core",
  4780. "version": "v7.1.4",
  4781. "source": {
  4782. "type": "git",
  4783. "url": "https://github.com/symfony/security-core.git",
  4784. "reference": "f5ccd9d005993e5ff7251e57fe4a0615c8535866"
  4785. },
  4786. "dist": {
  4787. "type": "zip",
  4788. "url": "https://api.github.com/repos/symfony/security-core/zipball/f5ccd9d005993e5ff7251e57fe4a0615c8535866",
  4789. "reference": "f5ccd9d005993e5ff7251e57fe4a0615c8535866",
  4790. "shasum": ""
  4791. },
  4792. "require": {
  4793. "php": ">=8.2",
  4794. "symfony/event-dispatcher-contracts": "^2.5|^3",
  4795. "symfony/password-hasher": "^6.4|^7.0",
  4796. "symfony/service-contracts": "^2.5|^3"
  4797. },
  4798. "conflict": {
  4799. "symfony/dependency-injection": "<6.4",
  4800. "symfony/event-dispatcher": "<6.4",
  4801. "symfony/http-foundation": "<6.4",
  4802. "symfony/ldap": "<6.4",
  4803. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4804. "symfony/validator": "<6.4"
  4805. },
  4806. "require-dev": {
  4807. "psr/cache": "^1.0|^2.0|^3.0",
  4808. "psr/container": "^1.1|^2.0",
  4809. "psr/log": "^1|^2|^3",
  4810. "symfony/cache": "^6.4|^7.0",
  4811. "symfony/dependency-injection": "^6.4|^7.0",
  4812. "symfony/event-dispatcher": "^6.4|^7.0",
  4813. "symfony/expression-language": "^6.4|^7.0",
  4814. "symfony/http-foundation": "^6.4|^7.0",
  4815. "symfony/ldap": "^6.4|^7.0",
  4816. "symfony/string": "^6.4|^7.0",
  4817. "symfony/translation": "^6.4.3|^7.0.3",
  4818. "symfony/validator": "^6.4|^7.0"
  4819. },
  4820. "type": "library",
  4821. "autoload": {
  4822. "psr-4": {
  4823. "Symfony\\Component\\Security\\Core\\": ""
  4824. },
  4825. "exclude-from-classmap": [
  4826. "/Tests/"
  4827. ]
  4828. },
  4829. "notification-url": "https://packagist.org/downloads/",
  4830. "license": [
  4831. "MIT"
  4832. ],
  4833. "authors": [
  4834. {
  4835. "name": "Fabien Potencier",
  4836. "email": "fabien@symfony.com"
  4837. },
  4838. {
  4839. "name": "Symfony Community",
  4840. "homepage": "https://symfony.com/contributors"
  4841. }
  4842. ],
  4843. "description": "Symfony Security Component - Core Library",
  4844. "homepage": "https://symfony.com",
  4845. "support": {
  4846. "source": "https://github.com/symfony/security-core/tree/v7.1.4"
  4847. },
  4848. "funding": [
  4849. {
  4850. "url": "https://symfony.com/sponsor",
  4851. "type": "custom"
  4852. },
  4853. {
  4854. "url": "https://github.com/fabpot",
  4855. "type": "github"
  4856. },
  4857. {
  4858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4859. "type": "tidelift"
  4860. }
  4861. ],
  4862. "time": "2024-08-29T08:16:25+00:00"
  4863. },
  4864. {
  4865. "name": "symfony/security-csrf",
  4866. "version": "v7.1.1",
  4867. "source": {
  4868. "type": "git",
  4869. "url": "https://github.com/symfony/security-csrf.git",
  4870. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21"
  4871. },
  4872. "dist": {
  4873. "type": "zip",
  4874. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  4875. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  4876. "shasum": ""
  4877. },
  4878. "require": {
  4879. "php": ">=8.2",
  4880. "symfony/security-core": "^6.4|^7.0"
  4881. },
  4882. "conflict": {
  4883. "symfony/http-foundation": "<6.4"
  4884. },
  4885. "require-dev": {
  4886. "symfony/http-foundation": "^6.4|^7.0"
  4887. },
  4888. "type": "library",
  4889. "autoload": {
  4890. "psr-4": {
  4891. "Symfony\\Component\\Security\\Csrf\\": ""
  4892. },
  4893. "exclude-from-classmap": [
  4894. "/Tests/"
  4895. ]
  4896. },
  4897. "notification-url": "https://packagist.org/downloads/",
  4898. "license": [
  4899. "MIT"
  4900. ],
  4901. "authors": [
  4902. {
  4903. "name": "Fabien Potencier",
  4904. "email": "fabien@symfony.com"
  4905. },
  4906. {
  4907. "name": "Symfony Community",
  4908. "homepage": "https://symfony.com/contributors"
  4909. }
  4910. ],
  4911. "description": "Symfony Security Component - CSRF Library",
  4912. "homepage": "https://symfony.com",
  4913. "support": {
  4914. "source": "https://github.com/symfony/security-csrf/tree/v7.1.1"
  4915. },
  4916. "funding": [
  4917. {
  4918. "url": "https://symfony.com/sponsor",
  4919. "type": "custom"
  4920. },
  4921. {
  4922. "url": "https://github.com/fabpot",
  4923. "type": "github"
  4924. },
  4925. {
  4926. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4927. "type": "tidelift"
  4928. }
  4929. ],
  4930. "time": "2024-05-31T14:57:53+00:00"
  4931. },
  4932. {
  4933. "name": "symfony/security-http",
  4934. "version": "v7.1.4",
  4935. "source": {
  4936. "type": "git",
  4937. "url": "https://github.com/symfony/security-http.git",
  4938. "reference": "acd1ecc807b76b9bdefe53168c3a52a11205fc20"
  4939. },
  4940. "dist": {
  4941. "type": "zip",
  4942. "url": "https://api.github.com/repos/symfony/security-http/zipball/acd1ecc807b76b9bdefe53168c3a52a11205fc20",
  4943. "reference": "acd1ecc807b76b9bdefe53168c3a52a11205fc20",
  4944. "shasum": ""
  4945. },
  4946. "require": {
  4947. "php": ">=8.2",
  4948. "symfony/deprecation-contracts": "^2.5|^3",
  4949. "symfony/http-foundation": "^6.4|^7.0",
  4950. "symfony/http-kernel": "^6.4|^7.0",
  4951. "symfony/polyfill-mbstring": "~1.0",
  4952. "symfony/property-access": "^6.4|^7.0",
  4953. "symfony/security-core": "^6.4|^7.0",
  4954. "symfony/service-contracts": "^2.5|^3"
  4955. },
  4956. "conflict": {
  4957. "symfony/clock": "<6.4",
  4958. "symfony/event-dispatcher": "<6.4",
  4959. "symfony/http-client-contracts": "<3.0",
  4960. "symfony/security-bundle": "<6.4",
  4961. "symfony/security-csrf": "<6.4"
  4962. },
  4963. "require-dev": {
  4964. "psr/log": "^1|^2|^3",
  4965. "symfony/cache": "^6.4|^7.0",
  4966. "symfony/clock": "^6.4|^7.0",
  4967. "symfony/expression-language": "^6.4|^7.0",
  4968. "symfony/http-client": "^6.4|^7.0",
  4969. "symfony/http-client-contracts": "^3.0",
  4970. "symfony/rate-limiter": "^6.4|^7.0",
  4971. "symfony/routing": "^6.4|^7.0",
  4972. "symfony/security-csrf": "^6.4|^7.0",
  4973. "symfony/translation": "^6.4|^7.0",
  4974. "web-token/jwt-library": "^3.3.2|^4.0"
  4975. },
  4976. "type": "library",
  4977. "autoload": {
  4978. "psr-4": {
  4979. "Symfony\\Component\\Security\\Http\\": ""
  4980. },
  4981. "exclude-from-classmap": [
  4982. "/Tests/"
  4983. ]
  4984. },
  4985. "notification-url": "https://packagist.org/downloads/",
  4986. "license": [
  4987. "MIT"
  4988. ],
  4989. "authors": [
  4990. {
  4991. "name": "Fabien Potencier",
  4992. "email": "fabien@symfony.com"
  4993. },
  4994. {
  4995. "name": "Symfony Community",
  4996. "homepage": "https://symfony.com/contributors"
  4997. }
  4998. ],
  4999. "description": "Symfony Security Component - HTTP Integration",
  5000. "homepage": "https://symfony.com",
  5001. "support": {
  5002. "source": "https://github.com/symfony/security-http/tree/v7.1.4"
  5003. },
  5004. "funding": [
  5005. {
  5006. "url": "https://symfony.com/sponsor",
  5007. "type": "custom"
  5008. },
  5009. {
  5010. "url": "https://github.com/fabpot",
  5011. "type": "github"
  5012. },
  5013. {
  5014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5015. "type": "tidelift"
  5016. }
  5017. ],
  5018. "time": "2024-08-15T22:52:38+00:00"
  5019. },
  5020. {
  5021. "name": "symfony/serializer",
  5022. "version": "v7.1.4",
  5023. "source": {
  5024. "type": "git",
  5025. "url": "https://github.com/symfony/serializer.git",
  5026. "reference": "0158b0e91b7cf7e744a6fb9acaeb613d1ca40dbb"
  5027. },
  5028. "dist": {
  5029. "type": "zip",
  5030. "url": "https://api.github.com/repos/symfony/serializer/zipball/0158b0e91b7cf7e744a6fb9acaeb613d1ca40dbb",
  5031. "reference": "0158b0e91b7cf7e744a6fb9acaeb613d1ca40dbb",
  5032. "shasum": ""
  5033. },
  5034. "require": {
  5035. "php": ">=8.2",
  5036. "symfony/deprecation-contracts": "^2.5|^3",
  5037. "symfony/polyfill-ctype": "~1.8"
  5038. },
  5039. "conflict": {
  5040. "phpdocumentor/reflection-docblock": "<3.2.2",
  5041. "phpdocumentor/type-resolver": "<1.4.0",
  5042. "symfony/dependency-injection": "<6.4",
  5043. "symfony/property-access": "<6.4",
  5044. "symfony/property-info": "<6.4",
  5045. "symfony/uid": "<6.4",
  5046. "symfony/validator": "<6.4",
  5047. "symfony/yaml": "<6.4"
  5048. },
  5049. "require-dev": {
  5050. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  5051. "seld/jsonlint": "^1.10",
  5052. "symfony/cache": "^6.4|^7.0",
  5053. "symfony/config": "^6.4|^7.0",
  5054. "symfony/console": "^6.4|^7.0",
  5055. "symfony/dependency-injection": "^6.4|^7.0",
  5056. "symfony/error-handler": "^6.4|^7.0",
  5057. "symfony/filesystem": "^6.4|^7.0",
  5058. "symfony/form": "^6.4|^7.0",
  5059. "symfony/http-foundation": "^6.4|^7.0",
  5060. "symfony/http-kernel": "^6.4|^7.0",
  5061. "symfony/messenger": "^6.4|^7.0",
  5062. "symfony/mime": "^6.4|^7.0",
  5063. "symfony/property-access": "^6.4|^7.0",
  5064. "symfony/property-info": "^6.4|^7.0",
  5065. "symfony/translation-contracts": "^2.5|^3",
  5066. "symfony/type-info": "^7.1",
  5067. "symfony/uid": "^6.4|^7.0",
  5068. "symfony/validator": "^6.4|^7.0",
  5069. "symfony/var-dumper": "^6.4|^7.0",
  5070. "symfony/var-exporter": "^6.4|^7.0",
  5071. "symfony/yaml": "^6.4|^7.0"
  5072. },
  5073. "type": "library",
  5074. "autoload": {
  5075. "psr-4": {
  5076. "Symfony\\Component\\Serializer\\": ""
  5077. },
  5078. "exclude-from-classmap": [
  5079. "/Tests/"
  5080. ]
  5081. },
  5082. "notification-url": "https://packagist.org/downloads/",
  5083. "license": [
  5084. "MIT"
  5085. ],
  5086. "authors": [
  5087. {
  5088. "name": "Fabien Potencier",
  5089. "email": "fabien@symfony.com"
  5090. },
  5091. {
  5092. "name": "Symfony Community",
  5093. "homepage": "https://symfony.com/contributors"
  5094. }
  5095. ],
  5096. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  5097. "homepage": "https://symfony.com",
  5098. "support": {
  5099. "source": "https://github.com/symfony/serializer/tree/v7.1.4"
  5100. },
  5101. "funding": [
  5102. {
  5103. "url": "https://symfony.com/sponsor",
  5104. "type": "custom"
  5105. },
  5106. {
  5107. "url": "https://github.com/fabpot",
  5108. "type": "github"
  5109. },
  5110. {
  5111. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5112. "type": "tidelift"
  5113. }
  5114. ],
  5115. "time": "2024-08-22T09:39:57+00:00"
  5116. },
  5117. {
  5118. "name": "symfony/service-contracts",
  5119. "version": "v3.5.0",
  5120. "source": {
  5121. "type": "git",
  5122. "url": "https://github.com/symfony/service-contracts.git",
  5123. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  5124. },
  5125. "dist": {
  5126. "type": "zip",
  5127. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  5128. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  5129. "shasum": ""
  5130. },
  5131. "require": {
  5132. "php": ">=8.1",
  5133. "psr/container": "^1.1|^2.0",
  5134. "symfony/deprecation-contracts": "^2.5|^3"
  5135. },
  5136. "conflict": {
  5137. "ext-psr": "<1.1|>=2"
  5138. },
  5139. "type": "library",
  5140. "extra": {
  5141. "branch-alias": {
  5142. "dev-main": "3.5-dev"
  5143. },
  5144. "thanks": {
  5145. "name": "symfony/contracts",
  5146. "url": "https://github.com/symfony/contracts"
  5147. }
  5148. },
  5149. "autoload": {
  5150. "psr-4": {
  5151. "Symfony\\Contracts\\Service\\": ""
  5152. },
  5153. "exclude-from-classmap": [
  5154. "/Test/"
  5155. ]
  5156. },
  5157. "notification-url": "https://packagist.org/downloads/",
  5158. "license": [
  5159. "MIT"
  5160. ],
  5161. "authors": [
  5162. {
  5163. "name": "Nicolas Grekas",
  5164. "email": "p@tchwork.com"
  5165. },
  5166. {
  5167. "name": "Symfony Community",
  5168. "homepage": "https://symfony.com/contributors"
  5169. }
  5170. ],
  5171. "description": "Generic abstractions related to writing services",
  5172. "homepage": "https://symfony.com",
  5173. "keywords": [
  5174. "abstractions",
  5175. "contracts",
  5176. "decoupling",
  5177. "interfaces",
  5178. "interoperability",
  5179. "standards"
  5180. ],
  5181. "support": {
  5182. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  5183. },
  5184. "funding": [
  5185. {
  5186. "url": "https://symfony.com/sponsor",
  5187. "type": "custom"
  5188. },
  5189. {
  5190. "url": "https://github.com/fabpot",
  5191. "type": "github"
  5192. },
  5193. {
  5194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5195. "type": "tidelift"
  5196. }
  5197. ],
  5198. "time": "2024-04-18T09:32:20+00:00"
  5199. },
  5200. {
  5201. "name": "symfony/stopwatch",
  5202. "version": "v7.1.1",
  5203. "source": {
  5204. "type": "git",
  5205. "url": "https://github.com/symfony/stopwatch.git",
  5206. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
  5207. },
  5208. "dist": {
  5209. "type": "zip",
  5210. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  5211. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  5212. "shasum": ""
  5213. },
  5214. "require": {
  5215. "php": ">=8.2",
  5216. "symfony/service-contracts": "^2.5|^3"
  5217. },
  5218. "type": "library",
  5219. "autoload": {
  5220. "psr-4": {
  5221. "Symfony\\Component\\Stopwatch\\": ""
  5222. },
  5223. "exclude-from-classmap": [
  5224. "/Tests/"
  5225. ]
  5226. },
  5227. "notification-url": "https://packagist.org/downloads/",
  5228. "license": [
  5229. "MIT"
  5230. ],
  5231. "authors": [
  5232. {
  5233. "name": "Fabien Potencier",
  5234. "email": "fabien@symfony.com"
  5235. },
  5236. {
  5237. "name": "Symfony Community",
  5238. "homepage": "https://symfony.com/contributors"
  5239. }
  5240. ],
  5241. "description": "Provides a way to profile code",
  5242. "homepage": "https://symfony.com",
  5243. "support": {
  5244. "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
  5245. },
  5246. "funding": [
  5247. {
  5248. "url": "https://symfony.com/sponsor",
  5249. "type": "custom"
  5250. },
  5251. {
  5252. "url": "https://github.com/fabpot",
  5253. "type": "github"
  5254. },
  5255. {
  5256. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5257. "type": "tidelift"
  5258. }
  5259. ],
  5260. "time": "2024-05-31T14:57:53+00:00"
  5261. },
  5262. {
  5263. "name": "symfony/string",
  5264. "version": "v7.1.4",
  5265. "source": {
  5266. "type": "git",
  5267. "url": "https://github.com/symfony/string.git",
  5268. "reference": "6cd670a6d968eaeb1c77c2e76091c45c56bc367b"
  5269. },
  5270. "dist": {
  5271. "type": "zip",
  5272. "url": "https://api.github.com/repos/symfony/string/zipball/6cd670a6d968eaeb1c77c2e76091c45c56bc367b",
  5273. "reference": "6cd670a6d968eaeb1c77c2e76091c45c56bc367b",
  5274. "shasum": ""
  5275. },
  5276. "require": {
  5277. "php": ">=8.2",
  5278. "symfony/polyfill-ctype": "~1.8",
  5279. "symfony/polyfill-intl-grapheme": "~1.0",
  5280. "symfony/polyfill-intl-normalizer": "~1.0",
  5281. "symfony/polyfill-mbstring": "~1.0"
  5282. },
  5283. "conflict": {
  5284. "symfony/translation-contracts": "<2.5"
  5285. },
  5286. "require-dev": {
  5287. "symfony/emoji": "^7.1",
  5288. "symfony/error-handler": "^6.4|^7.0",
  5289. "symfony/http-client": "^6.4|^7.0",
  5290. "symfony/intl": "^6.4|^7.0",
  5291. "symfony/translation-contracts": "^2.5|^3.0",
  5292. "symfony/var-exporter": "^6.4|^7.0"
  5293. },
  5294. "type": "library",
  5295. "autoload": {
  5296. "files": [
  5297. "Resources/functions.php"
  5298. ],
  5299. "psr-4": {
  5300. "Symfony\\Component\\String\\": ""
  5301. },
  5302. "exclude-from-classmap": [
  5303. "/Tests/"
  5304. ]
  5305. },
  5306. "notification-url": "https://packagist.org/downloads/",
  5307. "license": [
  5308. "MIT"
  5309. ],
  5310. "authors": [
  5311. {
  5312. "name": "Nicolas Grekas",
  5313. "email": "p@tchwork.com"
  5314. },
  5315. {
  5316. "name": "Symfony Community",
  5317. "homepage": "https://symfony.com/contributors"
  5318. }
  5319. ],
  5320. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  5321. "homepage": "https://symfony.com",
  5322. "keywords": [
  5323. "grapheme",
  5324. "i18n",
  5325. "string",
  5326. "unicode",
  5327. "utf-8",
  5328. "utf8"
  5329. ],
  5330. "support": {
  5331. "source": "https://github.com/symfony/string/tree/v7.1.4"
  5332. },
  5333. "funding": [
  5334. {
  5335. "url": "https://symfony.com/sponsor",
  5336. "type": "custom"
  5337. },
  5338. {
  5339. "url": "https://github.com/fabpot",
  5340. "type": "github"
  5341. },
  5342. {
  5343. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5344. "type": "tidelift"
  5345. }
  5346. ],
  5347. "time": "2024-08-12T09:59:40+00:00"
  5348. },
  5349. {
  5350. "name": "symfony/translation-contracts",
  5351. "version": "v3.5.0",
  5352. "source": {
  5353. "type": "git",
  5354. "url": "https://github.com/symfony/translation-contracts.git",
  5355. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  5356. },
  5357. "dist": {
  5358. "type": "zip",
  5359. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  5360. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  5361. "shasum": ""
  5362. },
  5363. "require": {
  5364. "php": ">=8.1"
  5365. },
  5366. "type": "library",
  5367. "extra": {
  5368. "branch-alias": {
  5369. "dev-main": "3.5-dev"
  5370. },
  5371. "thanks": {
  5372. "name": "symfony/contracts",
  5373. "url": "https://github.com/symfony/contracts"
  5374. }
  5375. },
  5376. "autoload": {
  5377. "psr-4": {
  5378. "Symfony\\Contracts\\Translation\\": ""
  5379. },
  5380. "exclude-from-classmap": [
  5381. "/Test/"
  5382. ]
  5383. },
  5384. "notification-url": "https://packagist.org/downloads/",
  5385. "license": [
  5386. "MIT"
  5387. ],
  5388. "authors": [
  5389. {
  5390. "name": "Nicolas Grekas",
  5391. "email": "p@tchwork.com"
  5392. },
  5393. {
  5394. "name": "Symfony Community",
  5395. "homepage": "https://symfony.com/contributors"
  5396. }
  5397. ],
  5398. "description": "Generic abstractions related to translation",
  5399. "homepage": "https://symfony.com",
  5400. "keywords": [
  5401. "abstractions",
  5402. "contracts",
  5403. "decoupling",
  5404. "interfaces",
  5405. "interoperability",
  5406. "standards"
  5407. ],
  5408. "support": {
  5409. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  5410. },
  5411. "funding": [
  5412. {
  5413. "url": "https://symfony.com/sponsor",
  5414. "type": "custom"
  5415. },
  5416. {
  5417. "url": "https://github.com/fabpot",
  5418. "type": "github"
  5419. },
  5420. {
  5421. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5422. "type": "tidelift"
  5423. }
  5424. ],
  5425. "time": "2024-04-18T09:32:20+00:00"
  5426. },
  5427. {
  5428. "name": "symfony/twig-bridge",
  5429. "version": "v7.1.4",
  5430. "source": {
  5431. "type": "git",
  5432. "url": "https://github.com/symfony/twig-bridge.git",
  5433. "reference": "2db32cfe8fc57797908ef0bee232b90dbe42af66"
  5434. },
  5435. "dist": {
  5436. "type": "zip",
  5437. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/2db32cfe8fc57797908ef0bee232b90dbe42af66",
  5438. "reference": "2db32cfe8fc57797908ef0bee232b90dbe42af66",
  5439. "shasum": ""
  5440. },
  5441. "require": {
  5442. "php": ">=8.2",
  5443. "symfony/translation-contracts": "^2.5|^3",
  5444. "twig/twig": "^3.9"
  5445. },
  5446. "conflict": {
  5447. "phpdocumentor/reflection-docblock": "<3.2.2",
  5448. "phpdocumentor/type-resolver": "<1.4.0",
  5449. "symfony/console": "<6.4",
  5450. "symfony/form": "<6.4",
  5451. "symfony/http-foundation": "<6.4",
  5452. "symfony/http-kernel": "<6.4",
  5453. "symfony/mime": "<6.4",
  5454. "symfony/serializer": "<6.4",
  5455. "symfony/translation": "<6.4",
  5456. "symfony/workflow": "<6.4"
  5457. },
  5458. "require-dev": {
  5459. "egulias/email-validator": "^2.1.10|^3|^4",
  5460. "league/html-to-markdown": "^5.0",
  5461. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5462. "symfony/asset": "^6.4|^7.0",
  5463. "symfony/asset-mapper": "^6.4|^7.0",
  5464. "symfony/console": "^6.4|^7.0",
  5465. "symfony/dependency-injection": "^6.4|^7.0",
  5466. "symfony/emoji": "^7.1",
  5467. "symfony/expression-language": "^6.4|^7.0",
  5468. "symfony/finder": "^6.4|^7.0",
  5469. "symfony/form": "^6.4|^7.0",
  5470. "symfony/html-sanitizer": "^6.4|^7.0",
  5471. "symfony/http-foundation": "^6.4|^7.0",
  5472. "symfony/http-kernel": "^6.4|^7.0",
  5473. "symfony/intl": "^6.4|^7.0",
  5474. "symfony/mime": "^6.4|^7.0",
  5475. "symfony/polyfill-intl-icu": "~1.0",
  5476. "symfony/property-info": "^6.4|^7.0",
  5477. "symfony/routing": "^6.4|^7.0",
  5478. "symfony/security-acl": "^2.8|^3.0",
  5479. "symfony/security-core": "^6.4|^7.0",
  5480. "symfony/security-csrf": "^6.4|^7.0",
  5481. "symfony/security-http": "^6.4|^7.0",
  5482. "symfony/serializer": "^6.4.3|^7.0.3",
  5483. "symfony/stopwatch": "^6.4|^7.0",
  5484. "symfony/translation": "^6.4|^7.0",
  5485. "symfony/web-link": "^6.4|^7.0",
  5486. "symfony/workflow": "^6.4|^7.0",
  5487. "symfony/yaml": "^6.4|^7.0",
  5488. "twig/cssinliner-extra": "^2.12|^3",
  5489. "twig/inky-extra": "^2.12|^3",
  5490. "twig/markdown-extra": "^2.12|^3"
  5491. },
  5492. "type": "symfony-bridge",
  5493. "autoload": {
  5494. "psr-4": {
  5495. "Symfony\\Bridge\\Twig\\": ""
  5496. },
  5497. "exclude-from-classmap": [
  5498. "/Tests/"
  5499. ]
  5500. },
  5501. "notification-url": "https://packagist.org/downloads/",
  5502. "license": [
  5503. "MIT"
  5504. ],
  5505. "authors": [
  5506. {
  5507. "name": "Fabien Potencier",
  5508. "email": "fabien@symfony.com"
  5509. },
  5510. {
  5511. "name": "Symfony Community",
  5512. "homepage": "https://symfony.com/contributors"
  5513. }
  5514. ],
  5515. "description": "Provides integration for Twig with various Symfony components",
  5516. "homepage": "https://symfony.com",
  5517. "support": {
  5518. "source": "https://github.com/symfony/twig-bridge/tree/v7.1.4"
  5519. },
  5520. "funding": [
  5521. {
  5522. "url": "https://symfony.com/sponsor",
  5523. "type": "custom"
  5524. },
  5525. {
  5526. "url": "https://github.com/fabpot",
  5527. "type": "github"
  5528. },
  5529. {
  5530. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5531. "type": "tidelift"
  5532. }
  5533. ],
  5534. "time": "2024-08-29T08:16:25+00:00"
  5535. },
  5536. {
  5537. "name": "symfony/twig-bundle",
  5538. "version": "v7.1.1",
  5539. "source": {
  5540. "type": "git",
  5541. "url": "https://github.com/symfony/twig-bundle.git",
  5542. "reference": "d48c2f08c2f315e749f0e18fc4945b7be8afe1e5"
  5543. },
  5544. "dist": {
  5545. "type": "zip",
  5546. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/d48c2f08c2f315e749f0e18fc4945b7be8afe1e5",
  5547. "reference": "d48c2f08c2f315e749f0e18fc4945b7be8afe1e5",
  5548. "shasum": ""
  5549. },
  5550. "require": {
  5551. "composer-runtime-api": ">=2.1",
  5552. "php": ">=8.2",
  5553. "symfony/config": "^6.4|^7.0",
  5554. "symfony/dependency-injection": "^6.4|^7.0",
  5555. "symfony/http-foundation": "^6.4|^7.0",
  5556. "symfony/http-kernel": "^6.4|^7.0",
  5557. "symfony/twig-bridge": "^6.4|^7.0",
  5558. "twig/twig": "^3.0.4"
  5559. },
  5560. "conflict": {
  5561. "symfony/framework-bundle": "<6.4",
  5562. "symfony/translation": "<6.4"
  5563. },
  5564. "require-dev": {
  5565. "symfony/asset": "^6.4|^7.0",
  5566. "symfony/expression-language": "^6.4|^7.0",
  5567. "symfony/finder": "^6.4|^7.0",
  5568. "symfony/form": "^6.4|^7.0",
  5569. "symfony/framework-bundle": "^6.4|^7.0",
  5570. "symfony/routing": "^6.4|^7.0",
  5571. "symfony/stopwatch": "^6.4|^7.0",
  5572. "symfony/translation": "^6.4|^7.0",
  5573. "symfony/web-link": "^6.4|^7.0",
  5574. "symfony/yaml": "^6.4|^7.0"
  5575. },
  5576. "type": "symfony-bundle",
  5577. "autoload": {
  5578. "psr-4": {
  5579. "Symfony\\Bundle\\TwigBundle\\": ""
  5580. },
  5581. "exclude-from-classmap": [
  5582. "/Tests/"
  5583. ]
  5584. },
  5585. "notification-url": "https://packagist.org/downloads/",
  5586. "license": [
  5587. "MIT"
  5588. ],
  5589. "authors": [
  5590. {
  5591. "name": "Fabien Potencier",
  5592. "email": "fabien@symfony.com"
  5593. },
  5594. {
  5595. "name": "Symfony Community",
  5596. "homepage": "https://symfony.com/contributors"
  5597. }
  5598. ],
  5599. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  5600. "homepage": "https://symfony.com",
  5601. "support": {
  5602. "source": "https://github.com/symfony/twig-bundle/tree/v7.1.1"
  5603. },
  5604. "funding": [
  5605. {
  5606. "url": "https://symfony.com/sponsor",
  5607. "type": "custom"
  5608. },
  5609. {
  5610. "url": "https://github.com/fabpot",
  5611. "type": "github"
  5612. },
  5613. {
  5614. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5615. "type": "tidelift"
  5616. }
  5617. ],
  5618. "time": "2024-05-31T14:57:53+00:00"
  5619. },
  5620. {
  5621. "name": "symfony/type-info",
  5622. "version": "v7.1.1",
  5623. "source": {
  5624. "type": "git",
  5625. "url": "https://github.com/symfony/type-info.git",
  5626. "reference": "60b28eb733f1453287f1263ed305b96091e0d1dc"
  5627. },
  5628. "dist": {
  5629. "type": "zip",
  5630. "url": "https://api.github.com/repos/symfony/type-info/zipball/60b28eb733f1453287f1263ed305b96091e0d1dc",
  5631. "reference": "60b28eb733f1453287f1263ed305b96091e0d1dc",
  5632. "shasum": ""
  5633. },
  5634. "require": {
  5635. "php": ">=8.2",
  5636. "psr/container": "^1.1|^2.0"
  5637. },
  5638. "conflict": {
  5639. "phpstan/phpdoc-parser": "<1.0",
  5640. "symfony/dependency-injection": "<6.4",
  5641. "symfony/property-info": "<6.4"
  5642. },
  5643. "require-dev": {
  5644. "phpstan/phpdoc-parser": "^1.0",
  5645. "symfony/dependency-injection": "^6.4|^7.0",
  5646. "symfony/property-info": "^6.4|^7.0"
  5647. },
  5648. "type": "library",
  5649. "autoload": {
  5650. "psr-4": {
  5651. "Symfony\\Component\\TypeInfo\\": ""
  5652. },
  5653. "exclude-from-classmap": [
  5654. "/Tests/"
  5655. ]
  5656. },
  5657. "notification-url": "https://packagist.org/downloads/",
  5658. "license": [
  5659. "MIT"
  5660. ],
  5661. "authors": [
  5662. {
  5663. "name": "Mathias Arlaud",
  5664. "email": "mathias.arlaud@gmail.com"
  5665. },
  5666. {
  5667. "name": "Baptiste LEDUC",
  5668. "email": "baptiste.leduc@gmail.com"
  5669. },
  5670. {
  5671. "name": "Symfony Community",
  5672. "homepage": "https://symfony.com/contributors"
  5673. }
  5674. ],
  5675. "description": "Extracts PHP types information.",
  5676. "homepage": "https://symfony.com",
  5677. "keywords": [
  5678. "PHPStan",
  5679. "phpdoc",
  5680. "symfony",
  5681. "type"
  5682. ],
  5683. "support": {
  5684. "source": "https://github.com/symfony/type-info/tree/v7.1.1"
  5685. },
  5686. "funding": [
  5687. {
  5688. "url": "https://symfony.com/sponsor",
  5689. "type": "custom"
  5690. },
  5691. {
  5692. "url": "https://github.com/fabpot",
  5693. "type": "github"
  5694. },
  5695. {
  5696. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5697. "type": "tidelift"
  5698. }
  5699. ],
  5700. "time": "2024-05-31T14:59:31+00:00"
  5701. },
  5702. {
  5703. "name": "symfony/validator",
  5704. "version": "v7.1.4",
  5705. "source": {
  5706. "type": "git",
  5707. "url": "https://github.com/symfony/validator.git",
  5708. "reference": "0d7e0dfd41702d6b9356214b76110421c1e74368"
  5709. },
  5710. "dist": {
  5711. "type": "zip",
  5712. "url": "https://api.github.com/repos/symfony/validator/zipball/0d7e0dfd41702d6b9356214b76110421c1e74368",
  5713. "reference": "0d7e0dfd41702d6b9356214b76110421c1e74368",
  5714. "shasum": ""
  5715. },
  5716. "require": {
  5717. "php": ">=8.2",
  5718. "symfony/deprecation-contracts": "^2.5|^3",
  5719. "symfony/polyfill-ctype": "~1.8",
  5720. "symfony/polyfill-mbstring": "~1.0",
  5721. "symfony/polyfill-php83": "^1.27",
  5722. "symfony/translation-contracts": "^2.5|^3"
  5723. },
  5724. "conflict": {
  5725. "doctrine/lexer": "<1.1",
  5726. "symfony/dependency-injection": "<6.4",
  5727. "symfony/doctrine-bridge": "<7.0",
  5728. "symfony/expression-language": "<6.4",
  5729. "symfony/http-kernel": "<6.4",
  5730. "symfony/intl": "<6.4",
  5731. "symfony/property-info": "<6.4",
  5732. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  5733. "symfony/yaml": "<6.4"
  5734. },
  5735. "require-dev": {
  5736. "egulias/email-validator": "^2.1.10|^3|^4",
  5737. "symfony/cache": "^6.4|^7.0",
  5738. "symfony/config": "^6.4|^7.0",
  5739. "symfony/console": "^6.4|^7.0",
  5740. "symfony/dependency-injection": "^6.4|^7.0",
  5741. "symfony/expression-language": "^6.4|^7.0",
  5742. "symfony/finder": "^6.4|^7.0",
  5743. "symfony/http-client": "^6.4|^7.0",
  5744. "symfony/http-foundation": "^6.4|^7.0",
  5745. "symfony/http-kernel": "^6.4|^7.0",
  5746. "symfony/intl": "^6.4|^7.0",
  5747. "symfony/mime": "^6.4|^7.0",
  5748. "symfony/property-access": "^6.4|^7.0",
  5749. "symfony/property-info": "^6.4|^7.0",
  5750. "symfony/translation": "^6.4.3|^7.0.3",
  5751. "symfony/type-info": "^7.1",
  5752. "symfony/yaml": "^6.4|^7.0"
  5753. },
  5754. "type": "library",
  5755. "autoload": {
  5756. "psr-4": {
  5757. "Symfony\\Component\\Validator\\": ""
  5758. },
  5759. "exclude-from-classmap": [
  5760. "/Tests/",
  5761. "/Resources/bin/"
  5762. ]
  5763. },
  5764. "notification-url": "https://packagist.org/downloads/",
  5765. "license": [
  5766. "MIT"
  5767. ],
  5768. "authors": [
  5769. {
  5770. "name": "Fabien Potencier",
  5771. "email": "fabien@symfony.com"
  5772. },
  5773. {
  5774. "name": "Symfony Community",
  5775. "homepage": "https://symfony.com/contributors"
  5776. }
  5777. ],
  5778. "description": "Provides tools to validate values",
  5779. "homepage": "https://symfony.com",
  5780. "support": {
  5781. "source": "https://github.com/symfony/validator/tree/v7.1.4"
  5782. },
  5783. "funding": [
  5784. {
  5785. "url": "https://symfony.com/sponsor",
  5786. "type": "custom"
  5787. },
  5788. {
  5789. "url": "https://github.com/fabpot",
  5790. "type": "github"
  5791. },
  5792. {
  5793. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5794. "type": "tidelift"
  5795. }
  5796. ],
  5797. "time": "2024-08-30T15:58:06+00:00"
  5798. },
  5799. {
  5800. "name": "symfony/var-dumper",
  5801. "version": "v7.1.4",
  5802. "source": {
  5803. "type": "git",
  5804. "url": "https://github.com/symfony/var-dumper.git",
  5805. "reference": "a5fa7481b199090964d6fd5dab6294d5a870c7aa"
  5806. },
  5807. "dist": {
  5808. "type": "zip",
  5809. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a5fa7481b199090964d6fd5dab6294d5a870c7aa",
  5810. "reference": "a5fa7481b199090964d6fd5dab6294d5a870c7aa",
  5811. "shasum": ""
  5812. },
  5813. "require": {
  5814. "php": ">=8.2",
  5815. "symfony/polyfill-mbstring": "~1.0"
  5816. },
  5817. "conflict": {
  5818. "symfony/console": "<6.4"
  5819. },
  5820. "require-dev": {
  5821. "ext-iconv": "*",
  5822. "symfony/console": "^6.4|^7.0",
  5823. "symfony/http-kernel": "^6.4|^7.0",
  5824. "symfony/process": "^6.4|^7.0",
  5825. "symfony/uid": "^6.4|^7.0",
  5826. "twig/twig": "^3.0.4"
  5827. },
  5828. "bin": [
  5829. "Resources/bin/var-dump-server"
  5830. ],
  5831. "type": "library",
  5832. "autoload": {
  5833. "files": [
  5834. "Resources/functions/dump.php"
  5835. ],
  5836. "psr-4": {
  5837. "Symfony\\Component\\VarDumper\\": ""
  5838. },
  5839. "exclude-from-classmap": [
  5840. "/Tests/"
  5841. ]
  5842. },
  5843. "notification-url": "https://packagist.org/downloads/",
  5844. "license": [
  5845. "MIT"
  5846. ],
  5847. "authors": [
  5848. {
  5849. "name": "Nicolas Grekas",
  5850. "email": "p@tchwork.com"
  5851. },
  5852. {
  5853. "name": "Symfony Community",
  5854. "homepage": "https://symfony.com/contributors"
  5855. }
  5856. ],
  5857. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5858. "homepage": "https://symfony.com",
  5859. "keywords": [
  5860. "debug",
  5861. "dump"
  5862. ],
  5863. "support": {
  5864. "source": "https://github.com/symfony/var-dumper/tree/v7.1.4"
  5865. },
  5866. "funding": [
  5867. {
  5868. "url": "https://symfony.com/sponsor",
  5869. "type": "custom"
  5870. },
  5871. {
  5872. "url": "https://github.com/fabpot",
  5873. "type": "github"
  5874. },
  5875. {
  5876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5877. "type": "tidelift"
  5878. }
  5879. ],
  5880. "time": "2024-08-30T16:12:47+00:00"
  5881. },
  5882. {
  5883. "name": "symfony/var-exporter",
  5884. "version": "v7.1.2",
  5885. "source": {
  5886. "type": "git",
  5887. "url": "https://github.com/symfony/var-exporter.git",
  5888. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c"
  5889. },
  5890. "dist": {
  5891. "type": "zip",
  5892. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b80a669a2264609f07f1667f891dbfca25eba44c",
  5893. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c",
  5894. "shasum": ""
  5895. },
  5896. "require": {
  5897. "php": ">=8.2"
  5898. },
  5899. "require-dev": {
  5900. "symfony/property-access": "^6.4|^7.0",
  5901. "symfony/serializer": "^6.4|^7.0",
  5902. "symfony/var-dumper": "^6.4|^7.0"
  5903. },
  5904. "type": "library",
  5905. "autoload": {
  5906. "psr-4": {
  5907. "Symfony\\Component\\VarExporter\\": ""
  5908. },
  5909. "exclude-from-classmap": [
  5910. "/Tests/"
  5911. ]
  5912. },
  5913. "notification-url": "https://packagist.org/downloads/",
  5914. "license": [
  5915. "MIT"
  5916. ],
  5917. "authors": [
  5918. {
  5919. "name": "Nicolas Grekas",
  5920. "email": "p@tchwork.com"
  5921. },
  5922. {
  5923. "name": "Symfony Community",
  5924. "homepage": "https://symfony.com/contributors"
  5925. }
  5926. ],
  5927. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  5928. "homepage": "https://symfony.com",
  5929. "keywords": [
  5930. "clone",
  5931. "construct",
  5932. "export",
  5933. "hydrate",
  5934. "instantiate",
  5935. "lazy-loading",
  5936. "proxy",
  5937. "serialize"
  5938. ],
  5939. "support": {
  5940. "source": "https://github.com/symfony/var-exporter/tree/v7.1.2"
  5941. },
  5942. "funding": [
  5943. {
  5944. "url": "https://symfony.com/sponsor",
  5945. "type": "custom"
  5946. },
  5947. {
  5948. "url": "https://github.com/fabpot",
  5949. "type": "github"
  5950. },
  5951. {
  5952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5953. "type": "tidelift"
  5954. }
  5955. ],
  5956. "time": "2024-06-28T08:00:31+00:00"
  5957. },
  5958. {
  5959. "name": "symfony/web-link",
  5960. "version": "v7.1.1",
  5961. "source": {
  5962. "type": "git",
  5963. "url": "https://github.com/symfony/web-link.git",
  5964. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f"
  5965. },
  5966. "dist": {
  5967. "type": "zip",
  5968. "url": "https://api.github.com/repos/symfony/web-link/zipball/63f90aa0054bfd9a091d2f5cf465958f1030638f",
  5969. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f",
  5970. "shasum": ""
  5971. },
  5972. "require": {
  5973. "php": ">=8.2",
  5974. "psr/link": "^1.1|^2.0"
  5975. },
  5976. "conflict": {
  5977. "symfony/http-kernel": "<6.4"
  5978. },
  5979. "provide": {
  5980. "psr/link-implementation": "1.0|2.0"
  5981. },
  5982. "require-dev": {
  5983. "symfony/http-kernel": "^6.4|^7.0"
  5984. },
  5985. "type": "library",
  5986. "autoload": {
  5987. "psr-4": {
  5988. "Symfony\\Component\\WebLink\\": ""
  5989. },
  5990. "exclude-from-classmap": [
  5991. "/Tests/"
  5992. ]
  5993. },
  5994. "notification-url": "https://packagist.org/downloads/",
  5995. "license": [
  5996. "MIT"
  5997. ],
  5998. "authors": [
  5999. {
  6000. "name": "Kévin Dunglas",
  6001. "email": "dunglas@gmail.com"
  6002. },
  6003. {
  6004. "name": "Symfony Community",
  6005. "homepage": "https://symfony.com/contributors"
  6006. }
  6007. ],
  6008. "description": "Manages links between resources",
  6009. "homepage": "https://symfony.com",
  6010. "keywords": [
  6011. "dns-prefetch",
  6012. "http",
  6013. "http2",
  6014. "link",
  6015. "performance",
  6016. "prefetch",
  6017. "preload",
  6018. "prerender",
  6019. "psr13",
  6020. "push"
  6021. ],
  6022. "support": {
  6023. "source": "https://github.com/symfony/web-link/tree/v7.1.1"
  6024. },
  6025. "funding": [
  6026. {
  6027. "url": "https://symfony.com/sponsor",
  6028. "type": "custom"
  6029. },
  6030. {
  6031. "url": "https://github.com/fabpot",
  6032. "type": "github"
  6033. },
  6034. {
  6035. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6036. "type": "tidelift"
  6037. }
  6038. ],
  6039. "time": "2024-05-31T14:57:53+00:00"
  6040. },
  6041. {
  6042. "name": "symfony/yaml",
  6043. "version": "v7.1.4",
  6044. "source": {
  6045. "type": "git",
  6046. "url": "https://github.com/symfony/yaml.git",
  6047. "reference": "92e080b851c1c655c786a2da77f188f2dccd0f4b"
  6048. },
  6049. "dist": {
  6050. "type": "zip",
  6051. "url": "https://api.github.com/repos/symfony/yaml/zipball/92e080b851c1c655c786a2da77f188f2dccd0f4b",
  6052. "reference": "92e080b851c1c655c786a2da77f188f2dccd0f4b",
  6053. "shasum": ""
  6054. },
  6055. "require": {
  6056. "php": ">=8.2",
  6057. "symfony/polyfill-ctype": "^1.8"
  6058. },
  6059. "conflict": {
  6060. "symfony/console": "<6.4"
  6061. },
  6062. "require-dev": {
  6063. "symfony/console": "^6.4|^7.0"
  6064. },
  6065. "bin": [
  6066. "Resources/bin/yaml-lint"
  6067. ],
  6068. "type": "library",
  6069. "autoload": {
  6070. "psr-4": {
  6071. "Symfony\\Component\\Yaml\\": ""
  6072. },
  6073. "exclude-from-classmap": [
  6074. "/Tests/"
  6075. ]
  6076. },
  6077. "notification-url": "https://packagist.org/downloads/",
  6078. "license": [
  6079. "MIT"
  6080. ],
  6081. "authors": [
  6082. {
  6083. "name": "Fabien Potencier",
  6084. "email": "fabien@symfony.com"
  6085. },
  6086. {
  6087. "name": "Symfony Community",
  6088. "homepage": "https://symfony.com/contributors"
  6089. }
  6090. ],
  6091. "description": "Loads and dumps YAML files",
  6092. "homepage": "https://symfony.com",
  6093. "support": {
  6094. "source": "https://github.com/symfony/yaml/tree/v7.1.4"
  6095. },
  6096. "funding": [
  6097. {
  6098. "url": "https://symfony.com/sponsor",
  6099. "type": "custom"
  6100. },
  6101. {
  6102. "url": "https://github.com/fabpot",
  6103. "type": "github"
  6104. },
  6105. {
  6106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6107. "type": "tidelift"
  6108. }
  6109. ],
  6110. "time": "2024-08-12T09:59:40+00:00"
  6111. },
  6112. {
  6113. "name": "twig/twig",
  6114. "version": "v3.13.0",
  6115. "source": {
  6116. "type": "git",
  6117. "url": "https://github.com/twigphp/Twig.git",
  6118. "reference": "afc0eb63dc66c248c5a94504dc2b255bc9b86575"
  6119. },
  6120. "dist": {
  6121. "type": "zip",
  6122. "url": "https://api.github.com/repos/twigphp/Twig/zipball/afc0eb63dc66c248c5a94504dc2b255bc9b86575",
  6123. "reference": "afc0eb63dc66c248c5a94504dc2b255bc9b86575",
  6124. "shasum": ""
  6125. },
  6126. "require": {
  6127. "php": ">=8.0.2",
  6128. "symfony/deprecation-contracts": "^2.5|^3",
  6129. "symfony/polyfill-ctype": "^1.8",
  6130. "symfony/polyfill-mbstring": "^1.3",
  6131. "symfony/polyfill-php81": "^1.29"
  6132. },
  6133. "require-dev": {
  6134. "psr/container": "^1.0|^2.0",
  6135. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  6136. },
  6137. "type": "library",
  6138. "autoload": {
  6139. "files": [
  6140. "src/Resources/core.php",
  6141. "src/Resources/debug.php",
  6142. "src/Resources/escaper.php",
  6143. "src/Resources/string_loader.php"
  6144. ],
  6145. "psr-4": {
  6146. "Twig\\": "src/"
  6147. }
  6148. },
  6149. "notification-url": "https://packagist.org/downloads/",
  6150. "license": [
  6151. "BSD-3-Clause"
  6152. ],
  6153. "authors": [
  6154. {
  6155. "name": "Fabien Potencier",
  6156. "email": "fabien@symfony.com",
  6157. "homepage": "http://fabien.potencier.org",
  6158. "role": "Lead Developer"
  6159. },
  6160. {
  6161. "name": "Twig Team",
  6162. "role": "Contributors"
  6163. },
  6164. {
  6165. "name": "Armin Ronacher",
  6166. "email": "armin.ronacher@active-4.com",
  6167. "role": "Project Founder"
  6168. }
  6169. ],
  6170. "description": "Twig, the flexible, fast, and secure template language for PHP",
  6171. "homepage": "https://twig.symfony.com",
  6172. "keywords": [
  6173. "templating"
  6174. ],
  6175. "support": {
  6176. "issues": "https://github.com/twigphp/Twig/issues",
  6177. "source": "https://github.com/twigphp/Twig/tree/v3.13.0"
  6178. },
  6179. "funding": [
  6180. {
  6181. "url": "https://github.com/fabpot",
  6182. "type": "github"
  6183. },
  6184. {
  6185. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  6186. "type": "tidelift"
  6187. }
  6188. ],
  6189. "time": "2024-09-07T08:01:12+00:00"
  6190. },
  6191. {
  6192. "name": "webmozart/assert",
  6193. "version": "1.11.0",
  6194. "source": {
  6195. "type": "git",
  6196. "url": "https://github.com/webmozarts/assert.git",
  6197. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6198. },
  6199. "dist": {
  6200. "type": "zip",
  6201. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6202. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6203. "shasum": ""
  6204. },
  6205. "require": {
  6206. "ext-ctype": "*",
  6207. "php": "^7.2 || ^8.0"
  6208. },
  6209. "conflict": {
  6210. "phpstan/phpstan": "<0.12.20",
  6211. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6212. },
  6213. "require-dev": {
  6214. "phpunit/phpunit": "^8.5.13"
  6215. },
  6216. "type": "library",
  6217. "extra": {
  6218. "branch-alias": {
  6219. "dev-master": "1.10-dev"
  6220. }
  6221. },
  6222. "autoload": {
  6223. "psr-4": {
  6224. "Webmozart\\Assert\\": "src/"
  6225. }
  6226. },
  6227. "notification-url": "https://packagist.org/downloads/",
  6228. "license": [
  6229. "MIT"
  6230. ],
  6231. "authors": [
  6232. {
  6233. "name": "Bernhard Schussek",
  6234. "email": "bschussek@gmail.com"
  6235. }
  6236. ],
  6237. "description": "Assertions to validate method input/output with nice error messages.",
  6238. "keywords": [
  6239. "assert",
  6240. "check",
  6241. "validate"
  6242. ],
  6243. "support": {
  6244. "issues": "https://github.com/webmozarts/assert/issues",
  6245. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  6246. },
  6247. "time": "2022-06-03T18:03:27+00:00"
  6248. },
  6249. {
  6250. "name": "willdurand/negotiation",
  6251. "version": "3.1.0",
  6252. "source": {
  6253. "type": "git",
  6254. "url": "https://github.com/willdurand/Negotiation.git",
  6255. "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2"
  6256. },
  6257. "dist": {
  6258. "type": "zip",
  6259. "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
  6260. "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
  6261. "shasum": ""
  6262. },
  6263. "require": {
  6264. "php": ">=7.1.0"
  6265. },
  6266. "require-dev": {
  6267. "symfony/phpunit-bridge": "^5.0"
  6268. },
  6269. "type": "library",
  6270. "extra": {
  6271. "branch-alias": {
  6272. "dev-master": "3.0-dev"
  6273. }
  6274. },
  6275. "autoload": {
  6276. "psr-4": {
  6277. "Negotiation\\": "src/Negotiation"
  6278. }
  6279. },
  6280. "notification-url": "https://packagist.org/downloads/",
  6281. "license": [
  6282. "MIT"
  6283. ],
  6284. "authors": [
  6285. {
  6286. "name": "William Durand",
  6287. "email": "will+git@drnd.me"
  6288. }
  6289. ],
  6290. "description": "Content Negotiation tools for PHP provided as a standalone library.",
  6291. "homepage": "http://williamdurand.fr/Negotiation/",
  6292. "keywords": [
  6293. "accept",
  6294. "content",
  6295. "format",
  6296. "header",
  6297. "negotiation"
  6298. ],
  6299. "support": {
  6300. "issues": "https://github.com/willdurand/Negotiation/issues",
  6301. "source": "https://github.com/willdurand/Negotiation/tree/3.1.0"
  6302. },
  6303. "time": "2022-01-30T20:08:53+00:00"
  6304. }
  6305. ],
  6306. "packages-dev": [],
  6307. "aliases": [],
  6308. "minimum-stability": "stable",
  6309. "stability-flags": [],
  6310. "prefer-stable": true,
  6311. "prefer-lowest": false,
  6312. "platform": {
  6313. "php": ">=8.2",
  6314. "ext-ctype": "*",
  6315. "ext-iconv": "*"
  6316. },
  6317. "platform-dev": [],
  6318. "plugin-api-version": "2.6.0"
  6319. }