composer.lock 232 KB

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