composer.lock 364 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079
  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": "3ec795619f12a12c89ef1c6569260bf3",
  8. "packages": [
  9. {
  10. "name": "composer/semver",
  11. "version": "3.4.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/semver.git",
  15. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  20. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^5.3.2 || ^7.0 || ^8.0"
  25. },
  26. "require-dev": {
  27. "phpstan/phpstan": "^1.11",
  28. "symfony/phpunit-bridge": "^3 || ^7"
  29. },
  30. "type": "library",
  31. "extra": {
  32. "branch-alias": {
  33. "dev-main": "3.x-dev"
  34. }
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Composer\\Semver\\": "src"
  39. }
  40. },
  41. "notification-url": "https://packagist.org/downloads/",
  42. "license": [
  43. "MIT"
  44. ],
  45. "authors": [
  46. {
  47. "name": "Nils Adermann",
  48. "email": "naderman@naderman.de",
  49. "homepage": "http://www.naderman.de"
  50. },
  51. {
  52. "name": "Jordi Boggiano",
  53. "email": "j.boggiano@seld.be",
  54. "homepage": "http://seld.be"
  55. },
  56. {
  57. "name": "Rob Bast",
  58. "email": "rob.bast@gmail.com",
  59. "homepage": "http://robbast.nl"
  60. }
  61. ],
  62. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  63. "keywords": [
  64. "semantic",
  65. "semver",
  66. "validation",
  67. "versioning"
  68. ],
  69. "support": {
  70. "irc": "ircs://irc.libera.chat:6697/composer",
  71. "issues": "https://github.com/composer/semver/issues",
  72. "source": "https://github.com/composer/semver/tree/3.4.3"
  73. },
  74. "funding": [
  75. {
  76. "url": "https://packagist.com",
  77. "type": "custom"
  78. },
  79. {
  80. "url": "https://github.com/composer",
  81. "type": "github"
  82. },
  83. {
  84. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  85. "type": "tidelift"
  86. }
  87. ],
  88. "time": "2024-09-19T14:15:21+00:00"
  89. },
  90. {
  91. "name": "doctrine/cache",
  92. "version": "2.2.0",
  93. "source": {
  94. "type": "git",
  95. "url": "https://github.com/doctrine/cache.git",
  96. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  97. },
  98. "dist": {
  99. "type": "zip",
  100. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  101. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  102. "shasum": ""
  103. },
  104. "require": {
  105. "php": "~7.1 || ^8.0"
  106. },
  107. "conflict": {
  108. "doctrine/common": ">2.2,<2.4"
  109. },
  110. "require-dev": {
  111. "cache/integration-tests": "dev-master",
  112. "doctrine/coding-standard": "^9",
  113. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  114. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  115. "symfony/cache": "^4.4 || ^5.4 || ^6",
  116. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  117. },
  118. "type": "library",
  119. "autoload": {
  120. "psr-4": {
  121. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  122. }
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "MIT"
  127. ],
  128. "authors": [
  129. {
  130. "name": "Guilherme Blanco",
  131. "email": "guilhermeblanco@gmail.com"
  132. },
  133. {
  134. "name": "Roman Borschel",
  135. "email": "roman@code-factory.org"
  136. },
  137. {
  138. "name": "Benjamin Eberlei",
  139. "email": "kontakt@beberlei.de"
  140. },
  141. {
  142. "name": "Jonathan Wage",
  143. "email": "jonwage@gmail.com"
  144. },
  145. {
  146. "name": "Johannes Schmitt",
  147. "email": "schmittjoh@gmail.com"
  148. }
  149. ],
  150. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  151. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  152. "keywords": [
  153. "abstraction",
  154. "apcu",
  155. "cache",
  156. "caching",
  157. "couchdb",
  158. "memcached",
  159. "php",
  160. "redis",
  161. "xcache"
  162. ],
  163. "support": {
  164. "issues": "https://github.com/doctrine/cache/issues",
  165. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  166. },
  167. "funding": [
  168. {
  169. "url": "https://www.doctrine-project.org/sponsorship.html",
  170. "type": "custom"
  171. },
  172. {
  173. "url": "https://www.patreon.com/phpdoctrine",
  174. "type": "patreon"
  175. },
  176. {
  177. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  178. "type": "tidelift"
  179. }
  180. ],
  181. "time": "2022-05-20T20:07:39+00:00"
  182. },
  183. {
  184. "name": "doctrine/collections",
  185. "version": "2.2.2",
  186. "source": {
  187. "type": "git",
  188. "url": "https://github.com/doctrine/collections.git",
  189. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59"
  190. },
  191. "dist": {
  192. "type": "zip",
  193. "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59",
  194. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  195. "shasum": ""
  196. },
  197. "require": {
  198. "doctrine/deprecations": "^1",
  199. "php": "^8.1"
  200. },
  201. "require-dev": {
  202. "doctrine/coding-standard": "^12",
  203. "ext-json": "*",
  204. "phpstan/phpstan": "^1.8",
  205. "phpstan/phpstan-phpunit": "^1.0",
  206. "phpunit/phpunit": "^10.5",
  207. "vimeo/psalm": "^5.11"
  208. },
  209. "type": "library",
  210. "autoload": {
  211. "psr-4": {
  212. "Doctrine\\Common\\Collections\\": "src"
  213. }
  214. },
  215. "notification-url": "https://packagist.org/downloads/",
  216. "license": [
  217. "MIT"
  218. ],
  219. "authors": [
  220. {
  221. "name": "Guilherme Blanco",
  222. "email": "guilhermeblanco@gmail.com"
  223. },
  224. {
  225. "name": "Roman Borschel",
  226. "email": "roman@code-factory.org"
  227. },
  228. {
  229. "name": "Benjamin Eberlei",
  230. "email": "kontakt@beberlei.de"
  231. },
  232. {
  233. "name": "Jonathan Wage",
  234. "email": "jonwage@gmail.com"
  235. },
  236. {
  237. "name": "Johannes Schmitt",
  238. "email": "schmittjoh@gmail.com"
  239. }
  240. ],
  241. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  242. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  243. "keywords": [
  244. "array",
  245. "collections",
  246. "iterators",
  247. "php"
  248. ],
  249. "support": {
  250. "issues": "https://github.com/doctrine/collections/issues",
  251. "source": "https://github.com/doctrine/collections/tree/2.2.2"
  252. },
  253. "funding": [
  254. {
  255. "url": "https://www.doctrine-project.org/sponsorship.html",
  256. "type": "custom"
  257. },
  258. {
  259. "url": "https://www.patreon.com/phpdoctrine",
  260. "type": "patreon"
  261. },
  262. {
  263. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  264. "type": "tidelift"
  265. }
  266. ],
  267. "time": "2024-04-18T06:56:21+00:00"
  268. },
  269. {
  270. "name": "doctrine/dbal",
  271. "version": "3.9.3",
  272. "source": {
  273. "type": "git",
  274. "url": "https://github.com/doctrine/dbal.git",
  275. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba"
  276. },
  277. "dist": {
  278. "type": "zip",
  279. "url": "https://api.github.com/repos/doctrine/dbal/zipball/61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  280. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  281. "shasum": ""
  282. },
  283. "require": {
  284. "composer-runtime-api": "^2",
  285. "doctrine/cache": "^1.11|^2.0",
  286. "doctrine/deprecations": "^0.5.3|^1",
  287. "doctrine/event-manager": "^1|^2",
  288. "php": "^7.4 || ^8.0",
  289. "psr/cache": "^1|^2|^3",
  290. "psr/log": "^1|^2|^3"
  291. },
  292. "require-dev": {
  293. "doctrine/coding-standard": "12.0.0",
  294. "fig/log-test": "^1",
  295. "jetbrains/phpstorm-stubs": "2023.1",
  296. "phpstan/phpstan": "1.12.6",
  297. "phpstan/phpstan-strict-rules": "^1.6",
  298. "phpunit/phpunit": "9.6.20",
  299. "psalm/plugin-phpunit": "0.18.4",
  300. "slevomat/coding-standard": "8.13.1",
  301. "squizlabs/php_codesniffer": "3.10.2",
  302. "symfony/cache": "^5.4|^6.0|^7.0",
  303. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  304. "vimeo/psalm": "4.30.0"
  305. },
  306. "suggest": {
  307. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  308. },
  309. "bin": [
  310. "bin/doctrine-dbal"
  311. ],
  312. "type": "library",
  313. "autoload": {
  314. "psr-4": {
  315. "Doctrine\\DBAL\\": "src"
  316. }
  317. },
  318. "notification-url": "https://packagist.org/downloads/",
  319. "license": [
  320. "MIT"
  321. ],
  322. "authors": [
  323. {
  324. "name": "Guilherme Blanco",
  325. "email": "guilhermeblanco@gmail.com"
  326. },
  327. {
  328. "name": "Roman Borschel",
  329. "email": "roman@code-factory.org"
  330. },
  331. {
  332. "name": "Benjamin Eberlei",
  333. "email": "kontakt@beberlei.de"
  334. },
  335. {
  336. "name": "Jonathan Wage",
  337. "email": "jonwage@gmail.com"
  338. }
  339. ],
  340. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  341. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  342. "keywords": [
  343. "abstraction",
  344. "database",
  345. "db2",
  346. "dbal",
  347. "mariadb",
  348. "mssql",
  349. "mysql",
  350. "oci8",
  351. "oracle",
  352. "pdo",
  353. "pgsql",
  354. "postgresql",
  355. "queryobject",
  356. "sasql",
  357. "sql",
  358. "sqlite",
  359. "sqlserver",
  360. "sqlsrv"
  361. ],
  362. "support": {
  363. "issues": "https://github.com/doctrine/dbal/issues",
  364. "source": "https://github.com/doctrine/dbal/tree/3.9.3"
  365. },
  366. "funding": [
  367. {
  368. "url": "https://www.doctrine-project.org/sponsorship.html",
  369. "type": "custom"
  370. },
  371. {
  372. "url": "https://www.patreon.com/phpdoctrine",
  373. "type": "patreon"
  374. },
  375. {
  376. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  377. "type": "tidelift"
  378. }
  379. ],
  380. "time": "2024-10-10T17:56:43+00:00"
  381. },
  382. {
  383. "name": "doctrine/deprecations",
  384. "version": "1.1.3",
  385. "source": {
  386. "type": "git",
  387. "url": "https://github.com/doctrine/deprecations.git",
  388. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  389. },
  390. "dist": {
  391. "type": "zip",
  392. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  393. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  394. "shasum": ""
  395. },
  396. "require": {
  397. "php": "^7.1 || ^8.0"
  398. },
  399. "require-dev": {
  400. "doctrine/coding-standard": "^9",
  401. "phpstan/phpstan": "1.4.10 || 1.10.15",
  402. "phpstan/phpstan-phpunit": "^1.0",
  403. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  404. "psalm/plugin-phpunit": "0.18.4",
  405. "psr/log": "^1 || ^2 || ^3",
  406. "vimeo/psalm": "4.30.0 || 5.12.0"
  407. },
  408. "suggest": {
  409. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  410. },
  411. "type": "library",
  412. "autoload": {
  413. "psr-4": {
  414. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  415. }
  416. },
  417. "notification-url": "https://packagist.org/downloads/",
  418. "license": [
  419. "MIT"
  420. ],
  421. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  422. "homepage": "https://www.doctrine-project.org/",
  423. "support": {
  424. "issues": "https://github.com/doctrine/deprecations/issues",
  425. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  426. },
  427. "time": "2024-01-30T19:34:25+00:00"
  428. },
  429. {
  430. "name": "doctrine/doctrine-bundle",
  431. "version": "2.13.0",
  432. "source": {
  433. "type": "git",
  434. "url": "https://github.com/doctrine/DoctrineBundle.git",
  435. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563"
  436. },
  437. "dist": {
  438. "type": "zip",
  439. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563",
  440. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563",
  441. "shasum": ""
  442. },
  443. "require": {
  444. "doctrine/cache": "^1.11 || ^2.0",
  445. "doctrine/dbal": "^3.7.0 || ^4.0",
  446. "doctrine/persistence": "^2.2 || ^3",
  447. "doctrine/sql-formatter": "^1.0.1",
  448. "php": "^7.4 || ^8.0",
  449. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  450. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  451. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  452. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  453. "symfony/deprecation-contracts": "^2.1 || ^3",
  454. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  455. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  456. "symfony/polyfill-php80": "^1.15",
  457. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  458. },
  459. "conflict": {
  460. "doctrine/annotations": ">=3.0",
  461. "doctrine/orm": "<2.17 || >=4.0",
  462. "twig/twig": "<1.34 || >=2.0 <2.4"
  463. },
  464. "require-dev": {
  465. "doctrine/annotations": "^1 || ^2",
  466. "doctrine/coding-standard": "^12",
  467. "doctrine/deprecations": "^1.0",
  468. "doctrine/orm": "^2.17 || ^3.0",
  469. "friendsofphp/proxy-manager-lts": "^1.0",
  470. "phpunit/phpunit": "^9.5.26",
  471. "psalm/plugin-phpunit": "^0.18.4",
  472. "psalm/plugin-symfony": "^5",
  473. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  474. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  475. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  476. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  477. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  478. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  479. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  480. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  481. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  482. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  483. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  484. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  485. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  486. "vimeo/psalm": "^5.15"
  487. },
  488. "suggest": {
  489. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  490. "ext-pdo": "*",
  491. "symfony/web-profiler-bundle": "To use the data collector."
  492. },
  493. "type": "symfony-bundle",
  494. "autoload": {
  495. "psr-4": {
  496. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  497. }
  498. },
  499. "notification-url": "https://packagist.org/downloads/",
  500. "license": [
  501. "MIT"
  502. ],
  503. "authors": [
  504. {
  505. "name": "Fabien Potencier",
  506. "email": "fabien@symfony.com"
  507. },
  508. {
  509. "name": "Benjamin Eberlei",
  510. "email": "kontakt@beberlei.de"
  511. },
  512. {
  513. "name": "Symfony Community",
  514. "homepage": "https://symfony.com/contributors"
  515. },
  516. {
  517. "name": "Doctrine Project",
  518. "homepage": "https://www.doctrine-project.org/"
  519. }
  520. ],
  521. "description": "Symfony DoctrineBundle",
  522. "homepage": "https://www.doctrine-project.org",
  523. "keywords": [
  524. "database",
  525. "dbal",
  526. "orm",
  527. "persistence"
  528. ],
  529. "support": {
  530. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  531. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0"
  532. },
  533. "funding": [
  534. {
  535. "url": "https://www.doctrine-project.org/sponsorship.html",
  536. "type": "custom"
  537. },
  538. {
  539. "url": "https://www.patreon.com/phpdoctrine",
  540. "type": "patreon"
  541. },
  542. {
  543. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  544. "type": "tidelift"
  545. }
  546. ],
  547. "time": "2024-09-01T09:46:40+00:00"
  548. },
  549. {
  550. "name": "doctrine/doctrine-migrations-bundle",
  551. "version": "3.3.1",
  552. "source": {
  553. "type": "git",
  554. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  555. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
  556. },
  557. "dist": {
  558. "type": "zip",
  559. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  560. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  561. "shasum": ""
  562. },
  563. "require": {
  564. "doctrine/doctrine-bundle": "^2.4",
  565. "doctrine/migrations": "^3.2",
  566. "php": "^7.2|^8.0",
  567. "symfony/deprecation-contracts": "^2.1 || ^3",
  568. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  569. },
  570. "require-dev": {
  571. "composer/semver": "^3.0",
  572. "doctrine/coding-standard": "^12",
  573. "doctrine/orm": "^2.6 || ^3",
  574. "doctrine/persistence": "^2.0 || ^3 ",
  575. "phpstan/phpstan": "^1.4",
  576. "phpstan/phpstan-deprecation-rules": "^1",
  577. "phpstan/phpstan-phpunit": "^1",
  578. "phpstan/phpstan-strict-rules": "^1.1",
  579. "phpstan/phpstan-symfony": "^1.3",
  580. "phpunit/phpunit": "^8.5|^9.5",
  581. "psalm/plugin-phpunit": "^0.18.4",
  582. "psalm/plugin-symfony": "^3 || ^5",
  583. "symfony/phpunit-bridge": "^6.3 || ^7",
  584. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  585. "vimeo/psalm": "^4.30 || ^5.15"
  586. },
  587. "type": "symfony-bundle",
  588. "autoload": {
  589. "psr-4": {
  590. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  591. },
  592. "exclude-from-classmap": [
  593. "/Tests/"
  594. ]
  595. },
  596. "notification-url": "https://packagist.org/downloads/",
  597. "license": [
  598. "MIT"
  599. ],
  600. "authors": [
  601. {
  602. "name": "Fabien Potencier",
  603. "email": "fabien@symfony.com"
  604. },
  605. {
  606. "name": "Doctrine Project",
  607. "homepage": "https://www.doctrine-project.org"
  608. },
  609. {
  610. "name": "Symfony Community",
  611. "homepage": "https://symfony.com/contributors"
  612. }
  613. ],
  614. "description": "Symfony DoctrineMigrationsBundle",
  615. "homepage": "https://www.doctrine-project.org",
  616. "keywords": [
  617. "dbal",
  618. "migrations",
  619. "schema"
  620. ],
  621. "support": {
  622. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  623. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
  624. },
  625. "funding": [
  626. {
  627. "url": "https://www.doctrine-project.org/sponsorship.html",
  628. "type": "custom"
  629. },
  630. {
  631. "url": "https://www.patreon.com/phpdoctrine",
  632. "type": "patreon"
  633. },
  634. {
  635. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  636. "type": "tidelift"
  637. }
  638. ],
  639. "time": "2024-05-14T20:32:18+00:00"
  640. },
  641. {
  642. "name": "doctrine/event-manager",
  643. "version": "2.0.1",
  644. "source": {
  645. "type": "git",
  646. "url": "https://github.com/doctrine/event-manager.git",
  647. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  648. },
  649. "dist": {
  650. "type": "zip",
  651. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  652. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  653. "shasum": ""
  654. },
  655. "require": {
  656. "php": "^8.1"
  657. },
  658. "conflict": {
  659. "doctrine/common": "<2.9"
  660. },
  661. "require-dev": {
  662. "doctrine/coding-standard": "^12",
  663. "phpstan/phpstan": "^1.8.8",
  664. "phpunit/phpunit": "^10.5",
  665. "vimeo/psalm": "^5.24"
  666. },
  667. "type": "library",
  668. "autoload": {
  669. "psr-4": {
  670. "Doctrine\\Common\\": "src"
  671. }
  672. },
  673. "notification-url": "https://packagist.org/downloads/",
  674. "license": [
  675. "MIT"
  676. ],
  677. "authors": [
  678. {
  679. "name": "Guilherme Blanco",
  680. "email": "guilhermeblanco@gmail.com"
  681. },
  682. {
  683. "name": "Roman Borschel",
  684. "email": "roman@code-factory.org"
  685. },
  686. {
  687. "name": "Benjamin Eberlei",
  688. "email": "kontakt@beberlei.de"
  689. },
  690. {
  691. "name": "Jonathan Wage",
  692. "email": "jonwage@gmail.com"
  693. },
  694. {
  695. "name": "Johannes Schmitt",
  696. "email": "schmittjoh@gmail.com"
  697. },
  698. {
  699. "name": "Marco Pivetta",
  700. "email": "ocramius@gmail.com"
  701. }
  702. ],
  703. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  704. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  705. "keywords": [
  706. "event",
  707. "event dispatcher",
  708. "event manager",
  709. "event system",
  710. "events"
  711. ],
  712. "support": {
  713. "issues": "https://github.com/doctrine/event-manager/issues",
  714. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  715. },
  716. "funding": [
  717. {
  718. "url": "https://www.doctrine-project.org/sponsorship.html",
  719. "type": "custom"
  720. },
  721. {
  722. "url": "https://www.patreon.com/phpdoctrine",
  723. "type": "patreon"
  724. },
  725. {
  726. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  727. "type": "tidelift"
  728. }
  729. ],
  730. "time": "2024-05-22T20:47:39+00:00"
  731. },
  732. {
  733. "name": "doctrine/inflector",
  734. "version": "2.0.10",
  735. "source": {
  736. "type": "git",
  737. "url": "https://github.com/doctrine/inflector.git",
  738. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  739. },
  740. "dist": {
  741. "type": "zip",
  742. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  743. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  744. "shasum": ""
  745. },
  746. "require": {
  747. "php": "^7.2 || ^8.0"
  748. },
  749. "require-dev": {
  750. "doctrine/coding-standard": "^11.0",
  751. "phpstan/phpstan": "^1.8",
  752. "phpstan/phpstan-phpunit": "^1.1",
  753. "phpstan/phpstan-strict-rules": "^1.3",
  754. "phpunit/phpunit": "^8.5 || ^9.5",
  755. "vimeo/psalm": "^4.25 || ^5.4"
  756. },
  757. "type": "library",
  758. "autoload": {
  759. "psr-4": {
  760. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  761. }
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Guilherme Blanco",
  770. "email": "guilhermeblanco@gmail.com"
  771. },
  772. {
  773. "name": "Roman Borschel",
  774. "email": "roman@code-factory.org"
  775. },
  776. {
  777. "name": "Benjamin Eberlei",
  778. "email": "kontakt@beberlei.de"
  779. },
  780. {
  781. "name": "Jonathan Wage",
  782. "email": "jonwage@gmail.com"
  783. },
  784. {
  785. "name": "Johannes Schmitt",
  786. "email": "schmittjoh@gmail.com"
  787. }
  788. ],
  789. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  790. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  791. "keywords": [
  792. "inflection",
  793. "inflector",
  794. "lowercase",
  795. "manipulation",
  796. "php",
  797. "plural",
  798. "singular",
  799. "strings",
  800. "uppercase",
  801. "words"
  802. ],
  803. "support": {
  804. "issues": "https://github.com/doctrine/inflector/issues",
  805. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  806. },
  807. "funding": [
  808. {
  809. "url": "https://www.doctrine-project.org/sponsorship.html",
  810. "type": "custom"
  811. },
  812. {
  813. "url": "https://www.patreon.com/phpdoctrine",
  814. "type": "patreon"
  815. },
  816. {
  817. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  818. "type": "tidelift"
  819. }
  820. ],
  821. "time": "2024-02-18T20:23:39+00:00"
  822. },
  823. {
  824. "name": "doctrine/instantiator",
  825. "version": "2.0.0",
  826. "source": {
  827. "type": "git",
  828. "url": "https://github.com/doctrine/instantiator.git",
  829. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  830. },
  831. "dist": {
  832. "type": "zip",
  833. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  834. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  835. "shasum": ""
  836. },
  837. "require": {
  838. "php": "^8.1"
  839. },
  840. "require-dev": {
  841. "doctrine/coding-standard": "^11",
  842. "ext-pdo": "*",
  843. "ext-phar": "*",
  844. "phpbench/phpbench": "^1.2",
  845. "phpstan/phpstan": "^1.9.4",
  846. "phpstan/phpstan-phpunit": "^1.3",
  847. "phpunit/phpunit": "^9.5.27",
  848. "vimeo/psalm": "^5.4"
  849. },
  850. "type": "library",
  851. "autoload": {
  852. "psr-4": {
  853. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  854. }
  855. },
  856. "notification-url": "https://packagist.org/downloads/",
  857. "license": [
  858. "MIT"
  859. ],
  860. "authors": [
  861. {
  862. "name": "Marco Pivetta",
  863. "email": "ocramius@gmail.com",
  864. "homepage": "https://ocramius.github.io/"
  865. }
  866. ],
  867. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  868. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  869. "keywords": [
  870. "constructor",
  871. "instantiate"
  872. ],
  873. "support": {
  874. "issues": "https://github.com/doctrine/instantiator/issues",
  875. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  876. },
  877. "funding": [
  878. {
  879. "url": "https://www.doctrine-project.org/sponsorship.html",
  880. "type": "custom"
  881. },
  882. {
  883. "url": "https://www.patreon.com/phpdoctrine",
  884. "type": "patreon"
  885. },
  886. {
  887. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  888. "type": "tidelift"
  889. }
  890. ],
  891. "time": "2022-12-30T00:23:10+00:00"
  892. },
  893. {
  894. "name": "doctrine/lexer",
  895. "version": "3.0.1",
  896. "source": {
  897. "type": "git",
  898. "url": "https://github.com/doctrine/lexer.git",
  899. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  900. },
  901. "dist": {
  902. "type": "zip",
  903. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  904. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  905. "shasum": ""
  906. },
  907. "require": {
  908. "php": "^8.1"
  909. },
  910. "require-dev": {
  911. "doctrine/coding-standard": "^12",
  912. "phpstan/phpstan": "^1.10",
  913. "phpunit/phpunit": "^10.5",
  914. "psalm/plugin-phpunit": "^0.18.3",
  915. "vimeo/psalm": "^5.21"
  916. },
  917. "type": "library",
  918. "autoload": {
  919. "psr-4": {
  920. "Doctrine\\Common\\Lexer\\": "src"
  921. }
  922. },
  923. "notification-url": "https://packagist.org/downloads/",
  924. "license": [
  925. "MIT"
  926. ],
  927. "authors": [
  928. {
  929. "name": "Guilherme Blanco",
  930. "email": "guilhermeblanco@gmail.com"
  931. },
  932. {
  933. "name": "Roman Borschel",
  934. "email": "roman@code-factory.org"
  935. },
  936. {
  937. "name": "Johannes Schmitt",
  938. "email": "schmittjoh@gmail.com"
  939. }
  940. ],
  941. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  942. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  943. "keywords": [
  944. "annotations",
  945. "docblock",
  946. "lexer",
  947. "parser",
  948. "php"
  949. ],
  950. "support": {
  951. "issues": "https://github.com/doctrine/lexer/issues",
  952. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  953. },
  954. "funding": [
  955. {
  956. "url": "https://www.doctrine-project.org/sponsorship.html",
  957. "type": "custom"
  958. },
  959. {
  960. "url": "https://www.patreon.com/phpdoctrine",
  961. "type": "patreon"
  962. },
  963. {
  964. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  965. "type": "tidelift"
  966. }
  967. ],
  968. "time": "2024-02-05T11:56:58+00:00"
  969. },
  970. {
  971. "name": "doctrine/migrations",
  972. "version": "3.8.2",
  973. "source": {
  974. "type": "git",
  975. "url": "https://github.com/doctrine/migrations.git",
  976. "reference": "5007eb1168691225ac305fe16856755c20860842"
  977. },
  978. "dist": {
  979. "type": "zip",
  980. "url": "https://api.github.com/repos/doctrine/migrations/zipball/5007eb1168691225ac305fe16856755c20860842",
  981. "reference": "5007eb1168691225ac305fe16856755c20860842",
  982. "shasum": ""
  983. },
  984. "require": {
  985. "composer-runtime-api": "^2",
  986. "doctrine/dbal": "^3.6 || ^4",
  987. "doctrine/deprecations": "^0.5.3 || ^1",
  988. "doctrine/event-manager": "^1.2 || ^2.0",
  989. "php": "^8.1",
  990. "psr/log": "^1.1.3 || ^2 || ^3",
  991. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  992. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  993. "symfony/var-exporter": "^6.2 || ^7.0"
  994. },
  995. "conflict": {
  996. "doctrine/orm": "<2.12 || >=4"
  997. },
  998. "require-dev": {
  999. "doctrine/coding-standard": "^12",
  1000. "doctrine/orm": "^2.13 || ^3",
  1001. "doctrine/persistence": "^2 || ^3",
  1002. "doctrine/sql-formatter": "^1.0",
  1003. "ext-pdo_sqlite": "*",
  1004. "fig/log-test": "^1",
  1005. "phpstan/phpstan": "^1.10",
  1006. "phpstan/phpstan-deprecation-rules": "^1.1",
  1007. "phpstan/phpstan-phpunit": "^1.3",
  1008. "phpstan/phpstan-strict-rules": "^1.4",
  1009. "phpstan/phpstan-symfony": "^1.3",
  1010. "phpunit/phpunit": "^10.3",
  1011. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1012. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1013. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1014. },
  1015. "suggest": {
  1016. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1017. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1018. },
  1019. "bin": [
  1020. "bin/doctrine-migrations"
  1021. ],
  1022. "type": "library",
  1023. "autoload": {
  1024. "psr-4": {
  1025. "Doctrine\\Migrations\\": "src"
  1026. }
  1027. },
  1028. "notification-url": "https://packagist.org/downloads/",
  1029. "license": [
  1030. "MIT"
  1031. ],
  1032. "authors": [
  1033. {
  1034. "name": "Benjamin Eberlei",
  1035. "email": "kontakt@beberlei.de"
  1036. },
  1037. {
  1038. "name": "Jonathan Wage",
  1039. "email": "jonwage@gmail.com"
  1040. },
  1041. {
  1042. "name": "Michael Simonson",
  1043. "email": "contact@mikesimonson.com"
  1044. }
  1045. ],
  1046. "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.",
  1047. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1048. "keywords": [
  1049. "database",
  1050. "dbal",
  1051. "migrations"
  1052. ],
  1053. "support": {
  1054. "issues": "https://github.com/doctrine/migrations/issues",
  1055. "source": "https://github.com/doctrine/migrations/tree/3.8.2"
  1056. },
  1057. "funding": [
  1058. {
  1059. "url": "https://www.doctrine-project.org/sponsorship.html",
  1060. "type": "custom"
  1061. },
  1062. {
  1063. "url": "https://www.patreon.com/phpdoctrine",
  1064. "type": "patreon"
  1065. },
  1066. {
  1067. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1068. "type": "tidelift"
  1069. }
  1070. ],
  1071. "time": "2024-10-10T21:35:27+00:00"
  1072. },
  1073. {
  1074. "name": "doctrine/orm",
  1075. "version": "3.3.0",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/doctrine/orm.git",
  1079. "reference": "69958152e661aa9c14e80d1ee4962863485aa60b"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/doctrine/orm/zipball/69958152e661aa9c14e80d1ee4962863485aa60b",
  1084. "reference": "69958152e661aa9c14e80d1ee4962863485aa60b",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "composer-runtime-api": "^2",
  1089. "doctrine/collections": "^2.2",
  1090. "doctrine/dbal": "^3.8.2 || ^4",
  1091. "doctrine/deprecations": "^0.5.3 || ^1",
  1092. "doctrine/event-manager": "^1.2 || ^2",
  1093. "doctrine/inflector": "^1.4 || ^2.0",
  1094. "doctrine/instantiator": "^1.3 || ^2",
  1095. "doctrine/lexer": "^3",
  1096. "doctrine/persistence": "^3.3.1",
  1097. "ext-ctype": "*",
  1098. "php": "^8.1",
  1099. "psr/cache": "^1 || ^2 || ^3",
  1100. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1101. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1102. },
  1103. "require-dev": {
  1104. "doctrine/coding-standard": "^12.0",
  1105. "phpbench/phpbench": "^1.0",
  1106. "phpdocumentor/guides-cli": "^1.4",
  1107. "phpstan/extension-installer": "^1.4",
  1108. "phpstan/phpstan": "1.12.6",
  1109. "phpstan/phpstan-deprecation-rules": "^1.2",
  1110. "phpunit/phpunit": "^10.4.0",
  1111. "psr/log": "^1 || ^2 || ^3",
  1112. "squizlabs/php_codesniffer": "3.7.2",
  1113. "symfony/cache": "^5.4 || ^6.2 || ^7.0",
  1114. "vimeo/psalm": "5.24.0"
  1115. },
  1116. "suggest": {
  1117. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1118. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1119. },
  1120. "type": "library",
  1121. "autoload": {
  1122. "psr-4": {
  1123. "Doctrine\\ORM\\": "src"
  1124. }
  1125. },
  1126. "notification-url": "https://packagist.org/downloads/",
  1127. "license": [
  1128. "MIT"
  1129. ],
  1130. "authors": [
  1131. {
  1132. "name": "Guilherme Blanco",
  1133. "email": "guilhermeblanco@gmail.com"
  1134. },
  1135. {
  1136. "name": "Roman Borschel",
  1137. "email": "roman@code-factory.org"
  1138. },
  1139. {
  1140. "name": "Benjamin Eberlei",
  1141. "email": "kontakt@beberlei.de"
  1142. },
  1143. {
  1144. "name": "Jonathan Wage",
  1145. "email": "jonwage@gmail.com"
  1146. },
  1147. {
  1148. "name": "Marco Pivetta",
  1149. "email": "ocramius@gmail.com"
  1150. }
  1151. ],
  1152. "description": "Object-Relational-Mapper for PHP",
  1153. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1154. "keywords": [
  1155. "database",
  1156. "orm"
  1157. ],
  1158. "support": {
  1159. "issues": "https://github.com/doctrine/orm/issues",
  1160. "source": "https://github.com/doctrine/orm/tree/3.3.0"
  1161. },
  1162. "time": "2024-10-12T20:07:18+00:00"
  1163. },
  1164. {
  1165. "name": "doctrine/persistence",
  1166. "version": "3.3.3",
  1167. "source": {
  1168. "type": "git",
  1169. "url": "https://github.com/doctrine/persistence.git",
  1170. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1171. },
  1172. "dist": {
  1173. "type": "zip",
  1174. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1175. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1176. "shasum": ""
  1177. },
  1178. "require": {
  1179. "doctrine/event-manager": "^1 || ^2",
  1180. "php": "^7.2 || ^8.0",
  1181. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1182. },
  1183. "conflict": {
  1184. "doctrine/common": "<2.10"
  1185. },
  1186. "require-dev": {
  1187. "doctrine/coding-standard": "^12",
  1188. "doctrine/common": "^3.0",
  1189. "phpstan/phpstan": "1.11.1",
  1190. "phpstan/phpstan-phpunit": "^1",
  1191. "phpstan/phpstan-strict-rules": "^1.1",
  1192. "phpunit/phpunit": "^8.5 || ^9.5",
  1193. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1194. "vimeo/psalm": "4.30.0 || 5.24.0"
  1195. },
  1196. "type": "library",
  1197. "autoload": {
  1198. "psr-4": {
  1199. "Doctrine\\Persistence\\": "src/Persistence"
  1200. }
  1201. },
  1202. "notification-url": "https://packagist.org/downloads/",
  1203. "license": [
  1204. "MIT"
  1205. ],
  1206. "authors": [
  1207. {
  1208. "name": "Guilherme Blanco",
  1209. "email": "guilhermeblanco@gmail.com"
  1210. },
  1211. {
  1212. "name": "Roman Borschel",
  1213. "email": "roman@code-factory.org"
  1214. },
  1215. {
  1216. "name": "Benjamin Eberlei",
  1217. "email": "kontakt@beberlei.de"
  1218. },
  1219. {
  1220. "name": "Jonathan Wage",
  1221. "email": "jonwage@gmail.com"
  1222. },
  1223. {
  1224. "name": "Johannes Schmitt",
  1225. "email": "schmittjoh@gmail.com"
  1226. },
  1227. {
  1228. "name": "Marco Pivetta",
  1229. "email": "ocramius@gmail.com"
  1230. }
  1231. ],
  1232. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1233. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1234. "keywords": [
  1235. "mapper",
  1236. "object",
  1237. "odm",
  1238. "orm",
  1239. "persistence"
  1240. ],
  1241. "support": {
  1242. "issues": "https://github.com/doctrine/persistence/issues",
  1243. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1244. },
  1245. "funding": [
  1246. {
  1247. "url": "https://www.doctrine-project.org/sponsorship.html",
  1248. "type": "custom"
  1249. },
  1250. {
  1251. "url": "https://www.patreon.com/phpdoctrine",
  1252. "type": "patreon"
  1253. },
  1254. {
  1255. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1256. "type": "tidelift"
  1257. }
  1258. ],
  1259. "time": "2024-06-20T10:14:30+00:00"
  1260. },
  1261. {
  1262. "name": "doctrine/sql-formatter",
  1263. "version": "1.5.1",
  1264. "source": {
  1265. "type": "git",
  1266. "url": "https://github.com/doctrine/sql-formatter.git",
  1267. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86"
  1268. },
  1269. "dist": {
  1270. "type": "zip",
  1271. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/b784cbde727cf806721451dde40eff4fec3bbe86",
  1272. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86",
  1273. "shasum": ""
  1274. },
  1275. "require": {
  1276. "php": "^8.1"
  1277. },
  1278. "require-dev": {
  1279. "doctrine/coding-standard": "^12",
  1280. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1281. "phpstan/phpstan": "^1.10",
  1282. "phpunit/phpunit": "^10.5",
  1283. "vimeo/psalm": "^5.24"
  1284. },
  1285. "bin": [
  1286. "bin/sql-formatter"
  1287. ],
  1288. "type": "library",
  1289. "autoload": {
  1290. "psr-4": {
  1291. "Doctrine\\SqlFormatter\\": "src"
  1292. }
  1293. },
  1294. "notification-url": "https://packagist.org/downloads/",
  1295. "license": [
  1296. "MIT"
  1297. ],
  1298. "authors": [
  1299. {
  1300. "name": "Jeremy Dorn",
  1301. "email": "jeremy@jeremydorn.com",
  1302. "homepage": "https://jeremydorn.com/"
  1303. }
  1304. ],
  1305. "description": "a PHP SQL highlighting library",
  1306. "homepage": "https://github.com/doctrine/sql-formatter/",
  1307. "keywords": [
  1308. "highlight",
  1309. "sql"
  1310. ],
  1311. "support": {
  1312. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1313. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.1"
  1314. },
  1315. "time": "2024-10-21T18:21:57+00:00"
  1316. },
  1317. {
  1318. "name": "egulias/email-validator",
  1319. "version": "4.0.2",
  1320. "source": {
  1321. "type": "git",
  1322. "url": "https://github.com/egulias/EmailValidator.git",
  1323. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1324. },
  1325. "dist": {
  1326. "type": "zip",
  1327. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1328. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1329. "shasum": ""
  1330. },
  1331. "require": {
  1332. "doctrine/lexer": "^2.0 || ^3.0",
  1333. "php": ">=8.1",
  1334. "symfony/polyfill-intl-idn": "^1.26"
  1335. },
  1336. "require-dev": {
  1337. "phpunit/phpunit": "^10.2",
  1338. "vimeo/psalm": "^5.12"
  1339. },
  1340. "suggest": {
  1341. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1342. },
  1343. "type": "library",
  1344. "extra": {
  1345. "branch-alias": {
  1346. "dev-master": "4.0.x-dev"
  1347. }
  1348. },
  1349. "autoload": {
  1350. "psr-4": {
  1351. "Egulias\\EmailValidator\\": "src"
  1352. }
  1353. },
  1354. "notification-url": "https://packagist.org/downloads/",
  1355. "license": [
  1356. "MIT"
  1357. ],
  1358. "authors": [
  1359. {
  1360. "name": "Eduardo Gulias Davis"
  1361. }
  1362. ],
  1363. "description": "A library for validating emails against several RFCs",
  1364. "homepage": "https://github.com/egulias/EmailValidator",
  1365. "keywords": [
  1366. "email",
  1367. "emailvalidation",
  1368. "emailvalidator",
  1369. "validation",
  1370. "validator"
  1371. ],
  1372. "support": {
  1373. "issues": "https://github.com/egulias/EmailValidator/issues",
  1374. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1375. },
  1376. "funding": [
  1377. {
  1378. "url": "https://github.com/egulias",
  1379. "type": "github"
  1380. }
  1381. ],
  1382. "time": "2023-10-06T06:47:41+00:00"
  1383. },
  1384. {
  1385. "name": "friendsofsymfony/ckeditor-bundle",
  1386. "version": "2.5.0",
  1387. "source": {
  1388. "type": "git",
  1389. "url": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle.git",
  1390. "reference": "9d4cd4f2db4d800164b9c3051e4bfdee21acb27f"
  1391. },
  1392. "dist": {
  1393. "type": "zip",
  1394. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSCKEditorBundle/zipball/9d4cd4f2db4d800164b9c3051e4bfdee21acb27f",
  1395. "reference": "9d4cd4f2db4d800164b9c3051e4bfdee21acb27f",
  1396. "shasum": ""
  1397. },
  1398. "require": {
  1399. "ext-json": "*",
  1400. "ext-zip": "*",
  1401. "php": "^8.0",
  1402. "symfony/asset": "^5.4 || ^6.0 || ^7.0",
  1403. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  1404. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  1405. "symfony/expression-language": "^5.4 || ^6.0 || ^7.0",
  1406. "symfony/form": "^5.4 || ^6.0 || ^7.0",
  1407. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  1408. "symfony/http-foundation": "^5.4 || ^6.0 || ^7.0",
  1409. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  1410. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  1411. "symfony/property-access": "^5.4 || ^6.0 || ^7.0",
  1412. "symfony/routing": "^5.4 || ^6.0 || ^7.0",
  1413. "symfony/twig-bundle": "^5.4 || ^6.0 || ^7.0",
  1414. "twig/twig": "^2.4 || ^3.0"
  1415. },
  1416. "conflict": {
  1417. "sebastian/environment": "<1.3.4",
  1418. "sebastian/exporter": "<2.0.0"
  1419. },
  1420. "require-dev": {
  1421. "friendsofphp/php-cs-fixer": "^3.41",
  1422. "matthiasnoback/symfony-dependency-injection-test": "^4.0 || ^5.0",
  1423. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1424. "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0",
  1425. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1426. },
  1427. "suggest": {
  1428. "egeloen/form-extra-bundle": "Allows to load CKEditor asynchronously"
  1429. },
  1430. "type": "symfony-bundle",
  1431. "extra": {
  1432. "branch-alias": {
  1433. "dev-master": "3.x-dev"
  1434. }
  1435. },
  1436. "autoload": {
  1437. "psr-4": {
  1438. "FOS\\CKEditorBundle\\": "src/"
  1439. }
  1440. },
  1441. "notification-url": "https://packagist.org/downloads/",
  1442. "license": [
  1443. "MIT"
  1444. ],
  1445. "authors": [
  1446. {
  1447. "name": "Eric GELOEN",
  1448. "email": "geloen.eric@gmail.com"
  1449. },
  1450. {
  1451. "name": "FriendsOfSymfony Community",
  1452. "homepage": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle/graphs/contributors"
  1453. }
  1454. ],
  1455. "description": "Provides a CKEditor integration for your Symfony project.",
  1456. "keywords": [
  1457. "CKEditor"
  1458. ],
  1459. "support": {
  1460. "issues": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle/issues",
  1461. "source": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle/tree/2.5.0"
  1462. },
  1463. "time": "2024-01-23T15:35:55+00:00"
  1464. },
  1465. {
  1466. "name": "monolog/monolog",
  1467. "version": "3.7.0",
  1468. "source": {
  1469. "type": "git",
  1470. "url": "https://github.com/Seldaek/monolog.git",
  1471. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  1472. },
  1473. "dist": {
  1474. "type": "zip",
  1475. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  1476. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  1477. "shasum": ""
  1478. },
  1479. "require": {
  1480. "php": ">=8.1",
  1481. "psr/log": "^2.0 || ^3.0"
  1482. },
  1483. "provide": {
  1484. "psr/log-implementation": "3.0.0"
  1485. },
  1486. "require-dev": {
  1487. "aws/aws-sdk-php": "^3.0",
  1488. "doctrine/couchdb": "~1.0@dev",
  1489. "elasticsearch/elasticsearch": "^7 || ^8",
  1490. "ext-json": "*",
  1491. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1492. "guzzlehttp/guzzle": "^7.4.5",
  1493. "guzzlehttp/psr7": "^2.2",
  1494. "mongodb/mongodb": "^1.8",
  1495. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1496. "phpstan/phpstan": "^1.9",
  1497. "phpstan/phpstan-deprecation-rules": "^1.0",
  1498. "phpstan/phpstan-strict-rules": "^1.4",
  1499. "phpunit/phpunit": "^10.5.17",
  1500. "predis/predis": "^1.1 || ^2",
  1501. "ruflin/elastica": "^7",
  1502. "symfony/mailer": "^5.4 || ^6",
  1503. "symfony/mime": "^5.4 || ^6"
  1504. },
  1505. "suggest": {
  1506. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1507. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1508. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1509. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1510. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1511. "ext-mbstring": "Allow to work properly with unicode symbols",
  1512. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1513. "ext-openssl": "Required to send log messages using SSL",
  1514. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1515. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1516. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1517. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1518. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1519. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1520. },
  1521. "type": "library",
  1522. "extra": {
  1523. "branch-alias": {
  1524. "dev-main": "3.x-dev"
  1525. }
  1526. },
  1527. "autoload": {
  1528. "psr-4": {
  1529. "Monolog\\": "src/Monolog"
  1530. }
  1531. },
  1532. "notification-url": "https://packagist.org/downloads/",
  1533. "license": [
  1534. "MIT"
  1535. ],
  1536. "authors": [
  1537. {
  1538. "name": "Jordi Boggiano",
  1539. "email": "j.boggiano@seld.be",
  1540. "homepage": "https://seld.be"
  1541. }
  1542. ],
  1543. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1544. "homepage": "https://github.com/Seldaek/monolog",
  1545. "keywords": [
  1546. "log",
  1547. "logging",
  1548. "psr-3"
  1549. ],
  1550. "support": {
  1551. "issues": "https://github.com/Seldaek/monolog/issues",
  1552. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  1553. },
  1554. "funding": [
  1555. {
  1556. "url": "https://github.com/Seldaek",
  1557. "type": "github"
  1558. },
  1559. {
  1560. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1561. "type": "tidelift"
  1562. }
  1563. ],
  1564. "time": "2024-06-28T09:40:51+00:00"
  1565. },
  1566. {
  1567. "name": "phpdocumentor/reflection-common",
  1568. "version": "2.2.0",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1572. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1577. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "php": "^7.2 || ^8.0"
  1582. },
  1583. "type": "library",
  1584. "extra": {
  1585. "branch-alias": {
  1586. "dev-2.x": "2.x-dev"
  1587. }
  1588. },
  1589. "autoload": {
  1590. "psr-4": {
  1591. "phpDocumentor\\Reflection\\": "src/"
  1592. }
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Jaap van Otterdijk",
  1601. "email": "opensource@ijaap.nl"
  1602. }
  1603. ],
  1604. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1605. "homepage": "http://www.phpdoc.org",
  1606. "keywords": [
  1607. "FQSEN",
  1608. "phpDocumentor",
  1609. "phpdoc",
  1610. "reflection",
  1611. "static analysis"
  1612. ],
  1613. "support": {
  1614. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1615. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1616. },
  1617. "time": "2020-06-27T09:03:43+00:00"
  1618. },
  1619. {
  1620. "name": "phpdocumentor/reflection-docblock",
  1621. "version": "5.4.1",
  1622. "source": {
  1623. "type": "git",
  1624. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1625. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
  1626. },
  1627. "dist": {
  1628. "type": "zip",
  1629. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  1630. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  1631. "shasum": ""
  1632. },
  1633. "require": {
  1634. "doctrine/deprecations": "^1.1",
  1635. "ext-filter": "*",
  1636. "php": "^7.4 || ^8.0",
  1637. "phpdocumentor/reflection-common": "^2.2",
  1638. "phpdocumentor/type-resolver": "^1.7",
  1639. "phpstan/phpdoc-parser": "^1.7",
  1640. "webmozart/assert": "^1.9.1"
  1641. },
  1642. "require-dev": {
  1643. "mockery/mockery": "~1.3.5",
  1644. "phpstan/extension-installer": "^1.1",
  1645. "phpstan/phpstan": "^1.8",
  1646. "phpstan/phpstan-mockery": "^1.1",
  1647. "phpstan/phpstan-webmozart-assert": "^1.2",
  1648. "phpunit/phpunit": "^9.5",
  1649. "vimeo/psalm": "^5.13"
  1650. },
  1651. "type": "library",
  1652. "extra": {
  1653. "branch-alias": {
  1654. "dev-master": "5.x-dev"
  1655. }
  1656. },
  1657. "autoload": {
  1658. "psr-4": {
  1659. "phpDocumentor\\Reflection\\": "src"
  1660. }
  1661. },
  1662. "notification-url": "https://packagist.org/downloads/",
  1663. "license": [
  1664. "MIT"
  1665. ],
  1666. "authors": [
  1667. {
  1668. "name": "Mike van Riel",
  1669. "email": "me@mikevanriel.com"
  1670. },
  1671. {
  1672. "name": "Jaap van Otterdijk",
  1673. "email": "opensource@ijaap.nl"
  1674. }
  1675. ],
  1676. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1677. "support": {
  1678. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1679. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
  1680. },
  1681. "time": "2024-05-21T05:55:05+00:00"
  1682. },
  1683. {
  1684. "name": "phpdocumentor/type-resolver",
  1685. "version": "1.8.2",
  1686. "source": {
  1687. "type": "git",
  1688. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1689. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  1690. },
  1691. "dist": {
  1692. "type": "zip",
  1693. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  1694. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  1695. "shasum": ""
  1696. },
  1697. "require": {
  1698. "doctrine/deprecations": "^1.0",
  1699. "php": "^7.3 || ^8.0",
  1700. "phpdocumentor/reflection-common": "^2.0",
  1701. "phpstan/phpdoc-parser": "^1.13"
  1702. },
  1703. "require-dev": {
  1704. "ext-tokenizer": "*",
  1705. "phpbench/phpbench": "^1.2",
  1706. "phpstan/extension-installer": "^1.1",
  1707. "phpstan/phpstan": "^1.8",
  1708. "phpstan/phpstan-phpunit": "^1.1",
  1709. "phpunit/phpunit": "^9.5",
  1710. "rector/rector": "^0.13.9",
  1711. "vimeo/psalm": "^4.25"
  1712. },
  1713. "type": "library",
  1714. "extra": {
  1715. "branch-alias": {
  1716. "dev-1.x": "1.x-dev"
  1717. }
  1718. },
  1719. "autoload": {
  1720. "psr-4": {
  1721. "phpDocumentor\\Reflection\\": "src"
  1722. }
  1723. },
  1724. "notification-url": "https://packagist.org/downloads/",
  1725. "license": [
  1726. "MIT"
  1727. ],
  1728. "authors": [
  1729. {
  1730. "name": "Mike van Riel",
  1731. "email": "me@mikevanriel.com"
  1732. }
  1733. ],
  1734. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1735. "support": {
  1736. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1737. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  1738. },
  1739. "time": "2024-02-23T11:10:43+00:00"
  1740. },
  1741. {
  1742. "name": "phpstan/phpdoc-parser",
  1743. "version": "1.33.0",
  1744. "source": {
  1745. "type": "git",
  1746. "url": "https://github.com/phpstan/phpdoc-parser.git",
  1747. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140"
  1748. },
  1749. "dist": {
  1750. "type": "zip",
  1751. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  1752. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  1753. "shasum": ""
  1754. },
  1755. "require": {
  1756. "php": "^7.2 || ^8.0"
  1757. },
  1758. "require-dev": {
  1759. "doctrine/annotations": "^2.0",
  1760. "nikic/php-parser": "^4.15",
  1761. "php-parallel-lint/php-parallel-lint": "^1.2",
  1762. "phpstan/extension-installer": "^1.0",
  1763. "phpstan/phpstan": "^1.5",
  1764. "phpstan/phpstan-phpunit": "^1.1",
  1765. "phpstan/phpstan-strict-rules": "^1.0",
  1766. "phpunit/phpunit": "^9.5",
  1767. "symfony/process": "^5.2"
  1768. },
  1769. "type": "library",
  1770. "autoload": {
  1771. "psr-4": {
  1772. "PHPStan\\PhpDocParser\\": [
  1773. "src/"
  1774. ]
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  1782. "support": {
  1783. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  1784. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.33.0"
  1785. },
  1786. "time": "2024-10-13T11:25:22+00:00"
  1787. },
  1788. {
  1789. "name": "psr/cache",
  1790. "version": "3.0.0",
  1791. "source": {
  1792. "type": "git",
  1793. "url": "https://github.com/php-fig/cache.git",
  1794. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  1795. },
  1796. "dist": {
  1797. "type": "zip",
  1798. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1799. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1800. "shasum": ""
  1801. },
  1802. "require": {
  1803. "php": ">=8.0.0"
  1804. },
  1805. "type": "library",
  1806. "extra": {
  1807. "branch-alias": {
  1808. "dev-master": "1.0.x-dev"
  1809. }
  1810. },
  1811. "autoload": {
  1812. "psr-4": {
  1813. "Psr\\Cache\\": "src/"
  1814. }
  1815. },
  1816. "notification-url": "https://packagist.org/downloads/",
  1817. "license": [
  1818. "MIT"
  1819. ],
  1820. "authors": [
  1821. {
  1822. "name": "PHP-FIG",
  1823. "homepage": "https://www.php-fig.org/"
  1824. }
  1825. ],
  1826. "description": "Common interface for caching libraries",
  1827. "keywords": [
  1828. "cache",
  1829. "psr",
  1830. "psr-6"
  1831. ],
  1832. "support": {
  1833. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  1834. },
  1835. "time": "2021-02-03T23:26:27+00:00"
  1836. },
  1837. {
  1838. "name": "psr/clock",
  1839. "version": "1.0.0",
  1840. "source": {
  1841. "type": "git",
  1842. "url": "https://github.com/php-fig/clock.git",
  1843. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  1844. },
  1845. "dist": {
  1846. "type": "zip",
  1847. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1848. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1849. "shasum": ""
  1850. },
  1851. "require": {
  1852. "php": "^7.0 || ^8.0"
  1853. },
  1854. "type": "library",
  1855. "autoload": {
  1856. "psr-4": {
  1857. "Psr\\Clock\\": "src/"
  1858. }
  1859. },
  1860. "notification-url": "https://packagist.org/downloads/",
  1861. "license": [
  1862. "MIT"
  1863. ],
  1864. "authors": [
  1865. {
  1866. "name": "PHP-FIG",
  1867. "homepage": "https://www.php-fig.org/"
  1868. }
  1869. ],
  1870. "description": "Common interface for reading the clock.",
  1871. "homepage": "https://github.com/php-fig/clock",
  1872. "keywords": [
  1873. "clock",
  1874. "now",
  1875. "psr",
  1876. "psr-20",
  1877. "time"
  1878. ],
  1879. "support": {
  1880. "issues": "https://github.com/php-fig/clock/issues",
  1881. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  1882. },
  1883. "time": "2022-11-25T14:36:26+00:00"
  1884. },
  1885. {
  1886. "name": "psr/container",
  1887. "version": "2.0.2",
  1888. "source": {
  1889. "type": "git",
  1890. "url": "https://github.com/php-fig/container.git",
  1891. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1892. },
  1893. "dist": {
  1894. "type": "zip",
  1895. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1896. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1897. "shasum": ""
  1898. },
  1899. "require": {
  1900. "php": ">=7.4.0"
  1901. },
  1902. "type": "library",
  1903. "extra": {
  1904. "branch-alias": {
  1905. "dev-master": "2.0.x-dev"
  1906. }
  1907. },
  1908. "autoload": {
  1909. "psr-4": {
  1910. "Psr\\Container\\": "src/"
  1911. }
  1912. },
  1913. "notification-url": "https://packagist.org/downloads/",
  1914. "license": [
  1915. "MIT"
  1916. ],
  1917. "authors": [
  1918. {
  1919. "name": "PHP-FIG",
  1920. "homepage": "https://www.php-fig.org/"
  1921. }
  1922. ],
  1923. "description": "Common Container Interface (PHP FIG PSR-11)",
  1924. "homepage": "https://github.com/php-fig/container",
  1925. "keywords": [
  1926. "PSR-11",
  1927. "container",
  1928. "container-interface",
  1929. "container-interop",
  1930. "psr"
  1931. ],
  1932. "support": {
  1933. "issues": "https://github.com/php-fig/container/issues",
  1934. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1935. },
  1936. "time": "2021-11-05T16:47:00+00:00"
  1937. },
  1938. {
  1939. "name": "psr/event-dispatcher",
  1940. "version": "1.0.0",
  1941. "source": {
  1942. "type": "git",
  1943. "url": "https://github.com/php-fig/event-dispatcher.git",
  1944. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1945. },
  1946. "dist": {
  1947. "type": "zip",
  1948. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1949. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1950. "shasum": ""
  1951. },
  1952. "require": {
  1953. "php": ">=7.2.0"
  1954. },
  1955. "type": "library",
  1956. "extra": {
  1957. "branch-alias": {
  1958. "dev-master": "1.0.x-dev"
  1959. }
  1960. },
  1961. "autoload": {
  1962. "psr-4": {
  1963. "Psr\\EventDispatcher\\": "src/"
  1964. }
  1965. },
  1966. "notification-url": "https://packagist.org/downloads/",
  1967. "license": [
  1968. "MIT"
  1969. ],
  1970. "authors": [
  1971. {
  1972. "name": "PHP-FIG",
  1973. "homepage": "http://www.php-fig.org/"
  1974. }
  1975. ],
  1976. "description": "Standard interfaces for event handling.",
  1977. "keywords": [
  1978. "events",
  1979. "psr",
  1980. "psr-14"
  1981. ],
  1982. "support": {
  1983. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1984. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1985. },
  1986. "time": "2019-01-08T18:20:26+00:00"
  1987. },
  1988. {
  1989. "name": "psr/link",
  1990. "version": "2.0.1",
  1991. "source": {
  1992. "type": "git",
  1993. "url": "https://github.com/php-fig/link.git",
  1994. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  1995. },
  1996. "dist": {
  1997. "type": "zip",
  1998. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  1999. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2000. "shasum": ""
  2001. },
  2002. "require": {
  2003. "php": ">=8.0.0"
  2004. },
  2005. "suggest": {
  2006. "fig/link-util": "Provides some useful PSR-13 utilities"
  2007. },
  2008. "type": "library",
  2009. "extra": {
  2010. "branch-alias": {
  2011. "dev-master": "2.0.x-dev"
  2012. }
  2013. },
  2014. "autoload": {
  2015. "psr-4": {
  2016. "Psr\\Link\\": "src/"
  2017. }
  2018. },
  2019. "notification-url": "https://packagist.org/downloads/",
  2020. "license": [
  2021. "MIT"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "PHP-FIG",
  2026. "homepage": "http://www.php-fig.org/"
  2027. }
  2028. ],
  2029. "description": "Common interfaces for HTTP links",
  2030. "homepage": "https://github.com/php-fig/link",
  2031. "keywords": [
  2032. "http",
  2033. "http-link",
  2034. "link",
  2035. "psr",
  2036. "psr-13",
  2037. "rest"
  2038. ],
  2039. "support": {
  2040. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2041. },
  2042. "time": "2021-03-11T23:00:27+00:00"
  2043. },
  2044. {
  2045. "name": "psr/log",
  2046. "version": "3.0.2",
  2047. "source": {
  2048. "type": "git",
  2049. "url": "https://github.com/php-fig/log.git",
  2050. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2051. },
  2052. "dist": {
  2053. "type": "zip",
  2054. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2055. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2056. "shasum": ""
  2057. },
  2058. "require": {
  2059. "php": ">=8.0.0"
  2060. },
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": {
  2064. "dev-master": "3.x-dev"
  2065. }
  2066. },
  2067. "autoload": {
  2068. "psr-4": {
  2069. "Psr\\Log\\": "src"
  2070. }
  2071. },
  2072. "notification-url": "https://packagist.org/downloads/",
  2073. "license": [
  2074. "MIT"
  2075. ],
  2076. "authors": [
  2077. {
  2078. "name": "PHP-FIG",
  2079. "homepage": "https://www.php-fig.org/"
  2080. }
  2081. ],
  2082. "description": "Common interface for logging libraries",
  2083. "homepage": "https://github.com/php-fig/log",
  2084. "keywords": [
  2085. "log",
  2086. "psr",
  2087. "psr-3"
  2088. ],
  2089. "support": {
  2090. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2091. },
  2092. "time": "2024-09-11T13:17:53+00:00"
  2093. },
  2094. {
  2095. "name": "symfony/asset",
  2096. "version": "v7.1.1",
  2097. "source": {
  2098. "type": "git",
  2099. "url": "https://github.com/symfony/asset.git",
  2100. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43"
  2101. },
  2102. "dist": {
  2103. "type": "zip",
  2104. "url": "https://api.github.com/repos/symfony/asset/zipball/8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2105. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43",
  2106. "shasum": ""
  2107. },
  2108. "require": {
  2109. "php": ">=8.2"
  2110. },
  2111. "conflict": {
  2112. "symfony/http-foundation": "<6.4"
  2113. },
  2114. "require-dev": {
  2115. "symfony/http-client": "^6.4|^7.0",
  2116. "symfony/http-foundation": "^6.4|^7.0",
  2117. "symfony/http-kernel": "^6.4|^7.0"
  2118. },
  2119. "type": "library",
  2120. "autoload": {
  2121. "psr-4": {
  2122. "Symfony\\Component\\Asset\\": ""
  2123. },
  2124. "exclude-from-classmap": [
  2125. "/Tests/"
  2126. ]
  2127. },
  2128. "notification-url": "https://packagist.org/downloads/",
  2129. "license": [
  2130. "MIT"
  2131. ],
  2132. "authors": [
  2133. {
  2134. "name": "Fabien Potencier",
  2135. "email": "fabien@symfony.com"
  2136. },
  2137. {
  2138. "name": "Symfony Community",
  2139. "homepage": "https://symfony.com/contributors"
  2140. }
  2141. ],
  2142. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2143. "homepage": "https://symfony.com",
  2144. "support": {
  2145. "source": "https://github.com/symfony/asset/tree/v7.1.1"
  2146. },
  2147. "funding": [
  2148. {
  2149. "url": "https://symfony.com/sponsor",
  2150. "type": "custom"
  2151. },
  2152. {
  2153. "url": "https://github.com/fabpot",
  2154. "type": "github"
  2155. },
  2156. {
  2157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2158. "type": "tidelift"
  2159. }
  2160. ],
  2161. "time": "2024-05-31T14:57:53+00:00"
  2162. },
  2163. {
  2164. "name": "symfony/asset-mapper",
  2165. "version": "v7.1.5",
  2166. "source": {
  2167. "type": "git",
  2168. "url": "https://github.com/symfony/asset-mapper.git",
  2169. "reference": "e3ae56f965f1fe503db1f604756a44d40e6dea16"
  2170. },
  2171. "dist": {
  2172. "type": "zip",
  2173. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/e3ae56f965f1fe503db1f604756a44d40e6dea16",
  2174. "reference": "e3ae56f965f1fe503db1f604756a44d40e6dea16",
  2175. "shasum": ""
  2176. },
  2177. "require": {
  2178. "composer/semver": "^3.0",
  2179. "php": ">=8.2",
  2180. "symfony/deprecation-contracts": "^2.1|^3",
  2181. "symfony/filesystem": "^7.1",
  2182. "symfony/http-client": "^6.4|^7.0"
  2183. },
  2184. "conflict": {
  2185. "symfony/framework-bundle": "<6.4"
  2186. },
  2187. "require-dev": {
  2188. "symfony/asset": "^6.4|^7.0",
  2189. "symfony/browser-kit": "^6.4|^7.0",
  2190. "symfony/console": "^6.4|^7.0",
  2191. "symfony/event-dispatcher-contracts": "^3.0",
  2192. "symfony/finder": "^6.4|^7.0",
  2193. "symfony/framework-bundle": "^6.4|^7.0",
  2194. "symfony/http-foundation": "^6.4|^7.0",
  2195. "symfony/http-kernel": "^6.4|^7.0",
  2196. "symfony/web-link": "^6.4|^7.0"
  2197. },
  2198. "type": "library",
  2199. "autoload": {
  2200. "psr-4": {
  2201. "Symfony\\Component\\AssetMapper\\": ""
  2202. },
  2203. "exclude-from-classmap": [
  2204. "/Tests/"
  2205. ]
  2206. },
  2207. "notification-url": "https://packagist.org/downloads/",
  2208. "license": [
  2209. "MIT"
  2210. ],
  2211. "authors": [
  2212. {
  2213. "name": "Fabien Potencier",
  2214. "email": "fabien@symfony.com"
  2215. },
  2216. {
  2217. "name": "Symfony Community",
  2218. "homepage": "https://symfony.com/contributors"
  2219. }
  2220. ],
  2221. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  2222. "homepage": "https://symfony.com",
  2223. "support": {
  2224. "source": "https://github.com/symfony/asset-mapper/tree/v7.1.5"
  2225. },
  2226. "funding": [
  2227. {
  2228. "url": "https://symfony.com/sponsor",
  2229. "type": "custom"
  2230. },
  2231. {
  2232. "url": "https://github.com/fabpot",
  2233. "type": "github"
  2234. },
  2235. {
  2236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2237. "type": "tidelift"
  2238. }
  2239. ],
  2240. "time": "2024-09-19T08:57:32+00:00"
  2241. },
  2242. {
  2243. "name": "symfony/cache",
  2244. "version": "v7.1.5",
  2245. "source": {
  2246. "type": "git",
  2247. "url": "https://github.com/symfony/cache.git",
  2248. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a"
  2249. },
  2250. "dist": {
  2251. "type": "zip",
  2252. "url": "https://api.github.com/repos/symfony/cache/zipball/86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  2253. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  2254. "shasum": ""
  2255. },
  2256. "require": {
  2257. "php": ">=8.2",
  2258. "psr/cache": "^2.0|^3.0",
  2259. "psr/log": "^1.1|^2|^3",
  2260. "symfony/cache-contracts": "^2.5|^3",
  2261. "symfony/deprecation-contracts": "^2.5|^3.0",
  2262. "symfony/service-contracts": "^2.5|^3",
  2263. "symfony/var-exporter": "^6.4|^7.0"
  2264. },
  2265. "conflict": {
  2266. "doctrine/dbal": "<3.6",
  2267. "symfony/dependency-injection": "<6.4",
  2268. "symfony/http-kernel": "<6.4",
  2269. "symfony/var-dumper": "<6.4"
  2270. },
  2271. "provide": {
  2272. "psr/cache-implementation": "2.0|3.0",
  2273. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2274. "symfony/cache-implementation": "1.1|2.0|3.0"
  2275. },
  2276. "require-dev": {
  2277. "cache/integration-tests": "dev-master",
  2278. "doctrine/dbal": "^3.6|^4",
  2279. "predis/predis": "^1.1|^2.0",
  2280. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2281. "symfony/config": "^6.4|^7.0",
  2282. "symfony/dependency-injection": "^6.4|^7.0",
  2283. "symfony/filesystem": "^6.4|^7.0",
  2284. "symfony/http-kernel": "^6.4|^7.0",
  2285. "symfony/messenger": "^6.4|^7.0",
  2286. "symfony/var-dumper": "^6.4|^7.0"
  2287. },
  2288. "type": "library",
  2289. "autoload": {
  2290. "psr-4": {
  2291. "Symfony\\Component\\Cache\\": ""
  2292. },
  2293. "classmap": [
  2294. "Traits/ValueWrapper.php"
  2295. ],
  2296. "exclude-from-classmap": [
  2297. "/Tests/"
  2298. ]
  2299. },
  2300. "notification-url": "https://packagist.org/downloads/",
  2301. "license": [
  2302. "MIT"
  2303. ],
  2304. "authors": [
  2305. {
  2306. "name": "Nicolas Grekas",
  2307. "email": "p@tchwork.com"
  2308. },
  2309. {
  2310. "name": "Symfony Community",
  2311. "homepage": "https://symfony.com/contributors"
  2312. }
  2313. ],
  2314. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2315. "homepage": "https://symfony.com",
  2316. "keywords": [
  2317. "caching",
  2318. "psr6"
  2319. ],
  2320. "support": {
  2321. "source": "https://github.com/symfony/cache/tree/v7.1.5"
  2322. },
  2323. "funding": [
  2324. {
  2325. "url": "https://symfony.com/sponsor",
  2326. "type": "custom"
  2327. },
  2328. {
  2329. "url": "https://github.com/fabpot",
  2330. "type": "github"
  2331. },
  2332. {
  2333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2334. "type": "tidelift"
  2335. }
  2336. ],
  2337. "time": "2024-09-17T09:16:35+00:00"
  2338. },
  2339. {
  2340. "name": "symfony/cache-contracts",
  2341. "version": "v3.5.0",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://github.com/symfony/cache-contracts.git",
  2345. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  2350. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  2351. "shasum": ""
  2352. },
  2353. "require": {
  2354. "php": ">=8.1",
  2355. "psr/cache": "^3.0"
  2356. },
  2357. "type": "library",
  2358. "extra": {
  2359. "branch-alias": {
  2360. "dev-main": "3.5-dev"
  2361. },
  2362. "thanks": {
  2363. "name": "symfony/contracts",
  2364. "url": "https://github.com/symfony/contracts"
  2365. }
  2366. },
  2367. "autoload": {
  2368. "psr-4": {
  2369. "Symfony\\Contracts\\Cache\\": ""
  2370. }
  2371. },
  2372. "notification-url": "https://packagist.org/downloads/",
  2373. "license": [
  2374. "MIT"
  2375. ],
  2376. "authors": [
  2377. {
  2378. "name": "Nicolas Grekas",
  2379. "email": "p@tchwork.com"
  2380. },
  2381. {
  2382. "name": "Symfony Community",
  2383. "homepage": "https://symfony.com/contributors"
  2384. }
  2385. ],
  2386. "description": "Generic abstractions related to caching",
  2387. "homepage": "https://symfony.com",
  2388. "keywords": [
  2389. "abstractions",
  2390. "contracts",
  2391. "decoupling",
  2392. "interfaces",
  2393. "interoperability",
  2394. "standards"
  2395. ],
  2396. "support": {
  2397. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  2398. },
  2399. "funding": [
  2400. {
  2401. "url": "https://symfony.com/sponsor",
  2402. "type": "custom"
  2403. },
  2404. {
  2405. "url": "https://github.com/fabpot",
  2406. "type": "github"
  2407. },
  2408. {
  2409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2410. "type": "tidelift"
  2411. }
  2412. ],
  2413. "time": "2024-04-18T09:32:20+00:00"
  2414. },
  2415. {
  2416. "name": "symfony/clock",
  2417. "version": "v7.1.1",
  2418. "source": {
  2419. "type": "git",
  2420. "url": "https://github.com/symfony/clock.git",
  2421. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  2422. },
  2423. "dist": {
  2424. "type": "zip",
  2425. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  2426. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  2427. "shasum": ""
  2428. },
  2429. "require": {
  2430. "php": ">=8.2",
  2431. "psr/clock": "^1.0",
  2432. "symfony/polyfill-php83": "^1.28"
  2433. },
  2434. "provide": {
  2435. "psr/clock-implementation": "1.0"
  2436. },
  2437. "type": "library",
  2438. "autoload": {
  2439. "files": [
  2440. "Resources/now.php"
  2441. ],
  2442. "psr-4": {
  2443. "Symfony\\Component\\Clock\\": ""
  2444. },
  2445. "exclude-from-classmap": [
  2446. "/Tests/"
  2447. ]
  2448. },
  2449. "notification-url": "https://packagist.org/downloads/",
  2450. "license": [
  2451. "MIT"
  2452. ],
  2453. "authors": [
  2454. {
  2455. "name": "Nicolas Grekas",
  2456. "email": "p@tchwork.com"
  2457. },
  2458. {
  2459. "name": "Symfony Community",
  2460. "homepage": "https://symfony.com/contributors"
  2461. }
  2462. ],
  2463. "description": "Decouples applications from the system clock",
  2464. "homepage": "https://symfony.com",
  2465. "keywords": [
  2466. "clock",
  2467. "psr20",
  2468. "time"
  2469. ],
  2470. "support": {
  2471. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  2472. },
  2473. "funding": [
  2474. {
  2475. "url": "https://symfony.com/sponsor",
  2476. "type": "custom"
  2477. },
  2478. {
  2479. "url": "https://github.com/fabpot",
  2480. "type": "github"
  2481. },
  2482. {
  2483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2484. "type": "tidelift"
  2485. }
  2486. ],
  2487. "time": "2024-05-31T14:57:53+00:00"
  2488. },
  2489. {
  2490. "name": "symfony/config",
  2491. "version": "v7.1.1",
  2492. "source": {
  2493. "type": "git",
  2494. "url": "https://github.com/symfony/config.git",
  2495. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2"
  2496. },
  2497. "dist": {
  2498. "type": "zip",
  2499. "url": "https://api.github.com/repos/symfony/config/zipball/2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  2500. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  2501. "shasum": ""
  2502. },
  2503. "require": {
  2504. "php": ">=8.2",
  2505. "symfony/deprecation-contracts": "^2.5|^3",
  2506. "symfony/filesystem": "^7.1",
  2507. "symfony/polyfill-ctype": "~1.8"
  2508. },
  2509. "conflict": {
  2510. "symfony/finder": "<6.4",
  2511. "symfony/service-contracts": "<2.5"
  2512. },
  2513. "require-dev": {
  2514. "symfony/event-dispatcher": "^6.4|^7.0",
  2515. "symfony/finder": "^6.4|^7.0",
  2516. "symfony/messenger": "^6.4|^7.0",
  2517. "symfony/service-contracts": "^2.5|^3",
  2518. "symfony/yaml": "^6.4|^7.0"
  2519. },
  2520. "type": "library",
  2521. "autoload": {
  2522. "psr-4": {
  2523. "Symfony\\Component\\Config\\": ""
  2524. },
  2525. "exclude-from-classmap": [
  2526. "/Tests/"
  2527. ]
  2528. },
  2529. "notification-url": "https://packagist.org/downloads/",
  2530. "license": [
  2531. "MIT"
  2532. ],
  2533. "authors": [
  2534. {
  2535. "name": "Fabien Potencier",
  2536. "email": "fabien@symfony.com"
  2537. },
  2538. {
  2539. "name": "Symfony Community",
  2540. "homepage": "https://symfony.com/contributors"
  2541. }
  2542. ],
  2543. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2544. "homepage": "https://symfony.com",
  2545. "support": {
  2546. "source": "https://github.com/symfony/config/tree/v7.1.1"
  2547. },
  2548. "funding": [
  2549. {
  2550. "url": "https://symfony.com/sponsor",
  2551. "type": "custom"
  2552. },
  2553. {
  2554. "url": "https://github.com/fabpot",
  2555. "type": "github"
  2556. },
  2557. {
  2558. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2559. "type": "tidelift"
  2560. }
  2561. ],
  2562. "time": "2024-05-31T14:57:53+00:00"
  2563. },
  2564. {
  2565. "name": "symfony/console",
  2566. "version": "v7.1.5",
  2567. "source": {
  2568. "type": "git",
  2569. "url": "https://github.com/symfony/console.git",
  2570. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee"
  2571. },
  2572. "dist": {
  2573. "type": "zip",
  2574. "url": "https://api.github.com/repos/symfony/console/zipball/0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  2575. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  2576. "shasum": ""
  2577. },
  2578. "require": {
  2579. "php": ">=8.2",
  2580. "symfony/polyfill-mbstring": "~1.0",
  2581. "symfony/service-contracts": "^2.5|^3",
  2582. "symfony/string": "^6.4|^7.0"
  2583. },
  2584. "conflict": {
  2585. "symfony/dependency-injection": "<6.4",
  2586. "symfony/dotenv": "<6.4",
  2587. "symfony/event-dispatcher": "<6.4",
  2588. "symfony/lock": "<6.4",
  2589. "symfony/process": "<6.4"
  2590. },
  2591. "provide": {
  2592. "psr/log-implementation": "1.0|2.0|3.0"
  2593. },
  2594. "require-dev": {
  2595. "psr/log": "^1|^2|^3",
  2596. "symfony/config": "^6.4|^7.0",
  2597. "symfony/dependency-injection": "^6.4|^7.0",
  2598. "symfony/event-dispatcher": "^6.4|^7.0",
  2599. "symfony/http-foundation": "^6.4|^7.0",
  2600. "symfony/http-kernel": "^6.4|^7.0",
  2601. "symfony/lock": "^6.4|^7.0",
  2602. "symfony/messenger": "^6.4|^7.0",
  2603. "symfony/process": "^6.4|^7.0",
  2604. "symfony/stopwatch": "^6.4|^7.0",
  2605. "symfony/var-dumper": "^6.4|^7.0"
  2606. },
  2607. "type": "library",
  2608. "autoload": {
  2609. "psr-4": {
  2610. "Symfony\\Component\\Console\\": ""
  2611. },
  2612. "exclude-from-classmap": [
  2613. "/Tests/"
  2614. ]
  2615. },
  2616. "notification-url": "https://packagist.org/downloads/",
  2617. "license": [
  2618. "MIT"
  2619. ],
  2620. "authors": [
  2621. {
  2622. "name": "Fabien Potencier",
  2623. "email": "fabien@symfony.com"
  2624. },
  2625. {
  2626. "name": "Symfony Community",
  2627. "homepage": "https://symfony.com/contributors"
  2628. }
  2629. ],
  2630. "description": "Eases the creation of beautiful and testable command line interfaces",
  2631. "homepage": "https://symfony.com",
  2632. "keywords": [
  2633. "cli",
  2634. "command-line",
  2635. "console",
  2636. "terminal"
  2637. ],
  2638. "support": {
  2639. "source": "https://github.com/symfony/console/tree/v7.1.5"
  2640. },
  2641. "funding": [
  2642. {
  2643. "url": "https://symfony.com/sponsor",
  2644. "type": "custom"
  2645. },
  2646. {
  2647. "url": "https://github.com/fabpot",
  2648. "type": "github"
  2649. },
  2650. {
  2651. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2652. "type": "tidelift"
  2653. }
  2654. ],
  2655. "time": "2024-09-20T08:28:38+00:00"
  2656. },
  2657. {
  2658. "name": "symfony/dependency-injection",
  2659. "version": "v7.1.5",
  2660. "source": {
  2661. "type": "git",
  2662. "url": "https://github.com/symfony/dependency-injection.git",
  2663. "reference": "38465f925ec4e0707b090e9147c65869837d639d"
  2664. },
  2665. "dist": {
  2666. "type": "zip",
  2667. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/38465f925ec4e0707b090e9147c65869837d639d",
  2668. "reference": "38465f925ec4e0707b090e9147c65869837d639d",
  2669. "shasum": ""
  2670. },
  2671. "require": {
  2672. "php": ">=8.2",
  2673. "psr/container": "^1.1|^2.0",
  2674. "symfony/deprecation-contracts": "^2.5|^3",
  2675. "symfony/service-contracts": "^3.5",
  2676. "symfony/var-exporter": "^6.4|^7.0"
  2677. },
  2678. "conflict": {
  2679. "ext-psr": "<1.1|>=2",
  2680. "symfony/config": "<6.4",
  2681. "symfony/finder": "<6.4",
  2682. "symfony/yaml": "<6.4"
  2683. },
  2684. "provide": {
  2685. "psr/container-implementation": "1.1|2.0",
  2686. "symfony/service-implementation": "1.1|2.0|3.0"
  2687. },
  2688. "require-dev": {
  2689. "symfony/config": "^6.4|^7.0",
  2690. "symfony/expression-language": "^6.4|^7.0",
  2691. "symfony/yaml": "^6.4|^7.0"
  2692. },
  2693. "type": "library",
  2694. "autoload": {
  2695. "psr-4": {
  2696. "Symfony\\Component\\DependencyInjection\\": ""
  2697. },
  2698. "exclude-from-classmap": [
  2699. "/Tests/"
  2700. ]
  2701. },
  2702. "notification-url": "https://packagist.org/downloads/",
  2703. "license": [
  2704. "MIT"
  2705. ],
  2706. "authors": [
  2707. {
  2708. "name": "Fabien Potencier",
  2709. "email": "fabien@symfony.com"
  2710. },
  2711. {
  2712. "name": "Symfony Community",
  2713. "homepage": "https://symfony.com/contributors"
  2714. }
  2715. ],
  2716. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2717. "homepage": "https://symfony.com",
  2718. "support": {
  2719. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.5"
  2720. },
  2721. "funding": [
  2722. {
  2723. "url": "https://symfony.com/sponsor",
  2724. "type": "custom"
  2725. },
  2726. {
  2727. "url": "https://github.com/fabpot",
  2728. "type": "github"
  2729. },
  2730. {
  2731. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2732. "type": "tidelift"
  2733. }
  2734. ],
  2735. "time": "2024-09-20T08:28:38+00:00"
  2736. },
  2737. {
  2738. "name": "symfony/deprecation-contracts",
  2739. "version": "v3.5.0",
  2740. "source": {
  2741. "type": "git",
  2742. "url": "https://github.com/symfony/deprecation-contracts.git",
  2743. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  2744. },
  2745. "dist": {
  2746. "type": "zip",
  2747. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  2748. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  2749. "shasum": ""
  2750. },
  2751. "require": {
  2752. "php": ">=8.1"
  2753. },
  2754. "type": "library",
  2755. "extra": {
  2756. "branch-alias": {
  2757. "dev-main": "3.5-dev"
  2758. },
  2759. "thanks": {
  2760. "name": "symfony/contracts",
  2761. "url": "https://github.com/symfony/contracts"
  2762. }
  2763. },
  2764. "autoload": {
  2765. "files": [
  2766. "function.php"
  2767. ]
  2768. },
  2769. "notification-url": "https://packagist.org/downloads/",
  2770. "license": [
  2771. "MIT"
  2772. ],
  2773. "authors": [
  2774. {
  2775. "name": "Nicolas Grekas",
  2776. "email": "p@tchwork.com"
  2777. },
  2778. {
  2779. "name": "Symfony Community",
  2780. "homepage": "https://symfony.com/contributors"
  2781. }
  2782. ],
  2783. "description": "A generic function and convention to trigger deprecation notices",
  2784. "homepage": "https://symfony.com",
  2785. "support": {
  2786. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  2787. },
  2788. "funding": [
  2789. {
  2790. "url": "https://symfony.com/sponsor",
  2791. "type": "custom"
  2792. },
  2793. {
  2794. "url": "https://github.com/fabpot",
  2795. "type": "github"
  2796. },
  2797. {
  2798. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2799. "type": "tidelift"
  2800. }
  2801. ],
  2802. "time": "2024-04-18T09:32:20+00:00"
  2803. },
  2804. {
  2805. "name": "symfony/doctrine-bridge",
  2806. "version": "v7.1.5",
  2807. "source": {
  2808. "type": "git",
  2809. "url": "https://github.com/symfony/doctrine-bridge.git",
  2810. "reference": "2568d0adaa5b0018b07beaa90363b880a43cc957"
  2811. },
  2812. "dist": {
  2813. "type": "zip",
  2814. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/2568d0adaa5b0018b07beaa90363b880a43cc957",
  2815. "reference": "2568d0adaa5b0018b07beaa90363b880a43cc957",
  2816. "shasum": ""
  2817. },
  2818. "require": {
  2819. "doctrine/event-manager": "^2",
  2820. "doctrine/persistence": "^3.1",
  2821. "php": ">=8.2",
  2822. "symfony/deprecation-contracts": "^2.5|^3",
  2823. "symfony/polyfill-ctype": "~1.8",
  2824. "symfony/polyfill-mbstring": "~1.0",
  2825. "symfony/service-contracts": "^2.5|^3"
  2826. },
  2827. "conflict": {
  2828. "doctrine/dbal": "<3.6",
  2829. "doctrine/lexer": "<1.1",
  2830. "doctrine/orm": "<2.15",
  2831. "symfony/cache": "<6.4",
  2832. "symfony/dependency-injection": "<6.4",
  2833. "symfony/form": "<6.4.6|>=7,<7.0.6",
  2834. "symfony/http-foundation": "<6.4",
  2835. "symfony/http-kernel": "<6.4",
  2836. "symfony/lock": "<6.4",
  2837. "symfony/messenger": "<6.4",
  2838. "symfony/property-info": "<6.4",
  2839. "symfony/security-bundle": "<6.4",
  2840. "symfony/security-core": "<6.4",
  2841. "symfony/validator": "<6.4"
  2842. },
  2843. "require-dev": {
  2844. "doctrine/collections": "^1.0|^2.0",
  2845. "doctrine/data-fixtures": "^1.1",
  2846. "doctrine/dbal": "^3.6|^4",
  2847. "doctrine/orm": "^2.15|^3",
  2848. "psr/log": "^1|^2|^3",
  2849. "symfony/cache": "^6.4|^7.0",
  2850. "symfony/config": "^6.4|^7.0",
  2851. "symfony/dependency-injection": "^6.4|^7.0",
  2852. "symfony/doctrine-messenger": "^6.4|^7.0",
  2853. "symfony/expression-language": "^6.4|^7.0",
  2854. "symfony/form": "^6.4.6|^7.0.6",
  2855. "symfony/http-kernel": "^6.4|^7.0",
  2856. "symfony/lock": "^6.4|^7.0",
  2857. "symfony/messenger": "^6.4|^7.0",
  2858. "symfony/property-access": "^6.4|^7.0",
  2859. "symfony/property-info": "^6.4|^7.0",
  2860. "symfony/security-core": "^6.4|^7.0",
  2861. "symfony/stopwatch": "^6.4|^7.0",
  2862. "symfony/translation": "^6.4|^7.0",
  2863. "symfony/type-info": "^7.1",
  2864. "symfony/uid": "^6.4|^7.0",
  2865. "symfony/validator": "^6.4|^7.0",
  2866. "symfony/var-dumper": "^6.4|^7.0"
  2867. },
  2868. "type": "symfony-bridge",
  2869. "autoload": {
  2870. "psr-4": {
  2871. "Symfony\\Bridge\\Doctrine\\": ""
  2872. },
  2873. "exclude-from-classmap": [
  2874. "/Tests/"
  2875. ]
  2876. },
  2877. "notification-url": "https://packagist.org/downloads/",
  2878. "license": [
  2879. "MIT"
  2880. ],
  2881. "authors": [
  2882. {
  2883. "name": "Fabien Potencier",
  2884. "email": "fabien@symfony.com"
  2885. },
  2886. {
  2887. "name": "Symfony Community",
  2888. "homepage": "https://symfony.com/contributors"
  2889. }
  2890. ],
  2891. "description": "Provides integration for Doctrine with various Symfony components",
  2892. "homepage": "https://symfony.com",
  2893. "support": {
  2894. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.5"
  2895. },
  2896. "funding": [
  2897. {
  2898. "url": "https://symfony.com/sponsor",
  2899. "type": "custom"
  2900. },
  2901. {
  2902. "url": "https://github.com/fabpot",
  2903. "type": "github"
  2904. },
  2905. {
  2906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2907. "type": "tidelift"
  2908. }
  2909. ],
  2910. "time": "2024-09-08T12:32:26+00:00"
  2911. },
  2912. {
  2913. "name": "symfony/doctrine-messenger",
  2914. "version": "v7.1.5",
  2915. "source": {
  2916. "type": "git",
  2917. "url": "https://github.com/symfony/doctrine-messenger.git",
  2918. "reference": "29015027fb63461e035246e07d74eeab9cb03304"
  2919. },
  2920. "dist": {
  2921. "type": "zip",
  2922. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/29015027fb63461e035246e07d74eeab9cb03304",
  2923. "reference": "29015027fb63461e035246e07d74eeab9cb03304",
  2924. "shasum": ""
  2925. },
  2926. "require": {
  2927. "doctrine/dbal": "^3.6|^4",
  2928. "php": ">=8.2",
  2929. "symfony/messenger": "^6.4|^7.0",
  2930. "symfony/service-contracts": "^2.5|^3"
  2931. },
  2932. "conflict": {
  2933. "doctrine/persistence": "<1.3"
  2934. },
  2935. "require-dev": {
  2936. "doctrine/persistence": "^1.3|^2|^3",
  2937. "symfony/property-access": "^6.4|^7.0",
  2938. "symfony/serializer": "^6.4|^7.0"
  2939. },
  2940. "type": "symfony-messenger-bridge",
  2941. "autoload": {
  2942. "psr-4": {
  2943. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  2944. },
  2945. "exclude-from-classmap": [
  2946. "/Tests/"
  2947. ]
  2948. },
  2949. "notification-url": "https://packagist.org/downloads/",
  2950. "license": [
  2951. "MIT"
  2952. ],
  2953. "authors": [
  2954. {
  2955. "name": "Fabien Potencier",
  2956. "email": "fabien@symfony.com"
  2957. },
  2958. {
  2959. "name": "Symfony Community",
  2960. "homepage": "https://symfony.com/contributors"
  2961. }
  2962. ],
  2963. "description": "Symfony Doctrine Messenger Bridge",
  2964. "homepage": "https://symfony.com",
  2965. "support": {
  2966. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.1.5"
  2967. },
  2968. "funding": [
  2969. {
  2970. "url": "https://symfony.com/sponsor",
  2971. "type": "custom"
  2972. },
  2973. {
  2974. "url": "https://github.com/fabpot",
  2975. "type": "github"
  2976. },
  2977. {
  2978. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2979. "type": "tidelift"
  2980. }
  2981. ],
  2982. "time": "2024-09-20T08:28:38+00:00"
  2983. },
  2984. {
  2985. "name": "symfony/dotenv",
  2986. "version": "v7.1.5",
  2987. "source": {
  2988. "type": "git",
  2989. "url": "https://github.com/symfony/dotenv.git",
  2990. "reference": "6d966200b399fa59759286f3fc7c919f0677c449"
  2991. },
  2992. "dist": {
  2993. "type": "zip",
  2994. "url": "https://api.github.com/repos/symfony/dotenv/zipball/6d966200b399fa59759286f3fc7c919f0677c449",
  2995. "reference": "6d966200b399fa59759286f3fc7c919f0677c449",
  2996. "shasum": ""
  2997. },
  2998. "require": {
  2999. "php": ">=8.2"
  3000. },
  3001. "conflict": {
  3002. "symfony/console": "<6.4",
  3003. "symfony/process": "<6.4"
  3004. },
  3005. "require-dev": {
  3006. "symfony/console": "^6.4|^7.0",
  3007. "symfony/process": "^6.4|^7.0"
  3008. },
  3009. "type": "library",
  3010. "autoload": {
  3011. "psr-4": {
  3012. "Symfony\\Component\\Dotenv\\": ""
  3013. },
  3014. "exclude-from-classmap": [
  3015. "/Tests/"
  3016. ]
  3017. },
  3018. "notification-url": "https://packagist.org/downloads/",
  3019. "license": [
  3020. "MIT"
  3021. ],
  3022. "authors": [
  3023. {
  3024. "name": "Fabien Potencier",
  3025. "email": "fabien@symfony.com"
  3026. },
  3027. {
  3028. "name": "Symfony Community",
  3029. "homepage": "https://symfony.com/contributors"
  3030. }
  3031. ],
  3032. "description": "Registers environment variables from a .env file",
  3033. "homepage": "https://symfony.com",
  3034. "keywords": [
  3035. "dotenv",
  3036. "env",
  3037. "environment"
  3038. ],
  3039. "support": {
  3040. "source": "https://github.com/symfony/dotenv/tree/v7.1.5"
  3041. },
  3042. "funding": [
  3043. {
  3044. "url": "https://symfony.com/sponsor",
  3045. "type": "custom"
  3046. },
  3047. {
  3048. "url": "https://github.com/fabpot",
  3049. "type": "github"
  3050. },
  3051. {
  3052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3053. "type": "tidelift"
  3054. }
  3055. ],
  3056. "time": "2024-09-17T09:16:35+00:00"
  3057. },
  3058. {
  3059. "name": "symfony/error-handler",
  3060. "version": "v7.1.3",
  3061. "source": {
  3062. "type": "git",
  3063. "url": "https://github.com/symfony/error-handler.git",
  3064. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  3065. },
  3066. "dist": {
  3067. "type": "zip",
  3068. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  3069. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  3070. "shasum": ""
  3071. },
  3072. "require": {
  3073. "php": ">=8.2",
  3074. "psr/log": "^1|^2|^3",
  3075. "symfony/var-dumper": "^6.4|^7.0"
  3076. },
  3077. "conflict": {
  3078. "symfony/deprecation-contracts": "<2.5",
  3079. "symfony/http-kernel": "<6.4"
  3080. },
  3081. "require-dev": {
  3082. "symfony/deprecation-contracts": "^2.5|^3",
  3083. "symfony/http-kernel": "^6.4|^7.0",
  3084. "symfony/serializer": "^6.4|^7.0"
  3085. },
  3086. "bin": [
  3087. "Resources/bin/patch-type-declarations"
  3088. ],
  3089. "type": "library",
  3090. "autoload": {
  3091. "psr-4": {
  3092. "Symfony\\Component\\ErrorHandler\\": ""
  3093. },
  3094. "exclude-from-classmap": [
  3095. "/Tests/"
  3096. ]
  3097. },
  3098. "notification-url": "https://packagist.org/downloads/",
  3099. "license": [
  3100. "MIT"
  3101. ],
  3102. "authors": [
  3103. {
  3104. "name": "Fabien Potencier",
  3105. "email": "fabien@symfony.com"
  3106. },
  3107. {
  3108. "name": "Symfony Community",
  3109. "homepage": "https://symfony.com/contributors"
  3110. }
  3111. ],
  3112. "description": "Provides tools to manage errors and ease debugging PHP code",
  3113. "homepage": "https://symfony.com",
  3114. "support": {
  3115. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  3116. },
  3117. "funding": [
  3118. {
  3119. "url": "https://symfony.com/sponsor",
  3120. "type": "custom"
  3121. },
  3122. {
  3123. "url": "https://github.com/fabpot",
  3124. "type": "github"
  3125. },
  3126. {
  3127. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3128. "type": "tidelift"
  3129. }
  3130. ],
  3131. "time": "2024-07-26T13:02:51+00:00"
  3132. },
  3133. {
  3134. "name": "symfony/event-dispatcher",
  3135. "version": "v7.1.1",
  3136. "source": {
  3137. "type": "git",
  3138. "url": "https://github.com/symfony/event-dispatcher.git",
  3139. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  3140. },
  3141. "dist": {
  3142. "type": "zip",
  3143. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3144. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  3145. "shasum": ""
  3146. },
  3147. "require": {
  3148. "php": ">=8.2",
  3149. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3150. },
  3151. "conflict": {
  3152. "symfony/dependency-injection": "<6.4",
  3153. "symfony/service-contracts": "<2.5"
  3154. },
  3155. "provide": {
  3156. "psr/event-dispatcher-implementation": "1.0",
  3157. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3158. },
  3159. "require-dev": {
  3160. "psr/log": "^1|^2|^3",
  3161. "symfony/config": "^6.4|^7.0",
  3162. "symfony/dependency-injection": "^6.4|^7.0",
  3163. "symfony/error-handler": "^6.4|^7.0",
  3164. "symfony/expression-language": "^6.4|^7.0",
  3165. "symfony/http-foundation": "^6.4|^7.0",
  3166. "symfony/service-contracts": "^2.5|^3",
  3167. "symfony/stopwatch": "^6.4|^7.0"
  3168. },
  3169. "type": "library",
  3170. "autoload": {
  3171. "psr-4": {
  3172. "Symfony\\Component\\EventDispatcher\\": ""
  3173. },
  3174. "exclude-from-classmap": [
  3175. "/Tests/"
  3176. ]
  3177. },
  3178. "notification-url": "https://packagist.org/downloads/",
  3179. "license": [
  3180. "MIT"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "Fabien Potencier",
  3185. "email": "fabien@symfony.com"
  3186. },
  3187. {
  3188. "name": "Symfony Community",
  3189. "homepage": "https://symfony.com/contributors"
  3190. }
  3191. ],
  3192. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3193. "homepage": "https://symfony.com",
  3194. "support": {
  3195. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  3196. },
  3197. "funding": [
  3198. {
  3199. "url": "https://symfony.com/sponsor",
  3200. "type": "custom"
  3201. },
  3202. {
  3203. "url": "https://github.com/fabpot",
  3204. "type": "github"
  3205. },
  3206. {
  3207. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3208. "type": "tidelift"
  3209. }
  3210. ],
  3211. "time": "2024-05-31T14:57:53+00:00"
  3212. },
  3213. {
  3214. "name": "symfony/event-dispatcher-contracts",
  3215. "version": "v3.5.0",
  3216. "source": {
  3217. "type": "git",
  3218. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3219. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  3220. },
  3221. "dist": {
  3222. "type": "zip",
  3223. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  3224. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  3225. "shasum": ""
  3226. },
  3227. "require": {
  3228. "php": ">=8.1",
  3229. "psr/event-dispatcher": "^1"
  3230. },
  3231. "type": "library",
  3232. "extra": {
  3233. "branch-alias": {
  3234. "dev-main": "3.5-dev"
  3235. },
  3236. "thanks": {
  3237. "name": "symfony/contracts",
  3238. "url": "https://github.com/symfony/contracts"
  3239. }
  3240. },
  3241. "autoload": {
  3242. "psr-4": {
  3243. "Symfony\\Contracts\\EventDispatcher\\": ""
  3244. }
  3245. },
  3246. "notification-url": "https://packagist.org/downloads/",
  3247. "license": [
  3248. "MIT"
  3249. ],
  3250. "authors": [
  3251. {
  3252. "name": "Nicolas Grekas",
  3253. "email": "p@tchwork.com"
  3254. },
  3255. {
  3256. "name": "Symfony Community",
  3257. "homepage": "https://symfony.com/contributors"
  3258. }
  3259. ],
  3260. "description": "Generic abstractions related to dispatching event",
  3261. "homepage": "https://symfony.com",
  3262. "keywords": [
  3263. "abstractions",
  3264. "contracts",
  3265. "decoupling",
  3266. "interfaces",
  3267. "interoperability",
  3268. "standards"
  3269. ],
  3270. "support": {
  3271. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  3272. },
  3273. "funding": [
  3274. {
  3275. "url": "https://symfony.com/sponsor",
  3276. "type": "custom"
  3277. },
  3278. {
  3279. "url": "https://github.com/fabpot",
  3280. "type": "github"
  3281. },
  3282. {
  3283. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3284. "type": "tidelift"
  3285. }
  3286. ],
  3287. "time": "2024-04-18T09:32:20+00:00"
  3288. },
  3289. {
  3290. "name": "symfony/expression-language",
  3291. "version": "v7.1.4",
  3292. "source": {
  3293. "type": "git",
  3294. "url": "https://github.com/symfony/expression-language.git",
  3295. "reference": "b9e4bc6685d513c10235145ed1042a6081635806"
  3296. },
  3297. "dist": {
  3298. "type": "zip",
  3299. "url": "https://api.github.com/repos/symfony/expression-language/zipball/b9e4bc6685d513c10235145ed1042a6081635806",
  3300. "reference": "b9e4bc6685d513c10235145ed1042a6081635806",
  3301. "shasum": ""
  3302. },
  3303. "require": {
  3304. "php": ">=8.2",
  3305. "symfony/cache": "^6.4|^7.0",
  3306. "symfony/deprecation-contracts": "^2.5|^3",
  3307. "symfony/service-contracts": "^2.5|^3"
  3308. },
  3309. "type": "library",
  3310. "autoload": {
  3311. "psr-4": {
  3312. "Symfony\\Component\\ExpressionLanguage\\": ""
  3313. },
  3314. "exclude-from-classmap": [
  3315. "/Tests/"
  3316. ]
  3317. },
  3318. "notification-url": "https://packagist.org/downloads/",
  3319. "license": [
  3320. "MIT"
  3321. ],
  3322. "authors": [
  3323. {
  3324. "name": "Fabien Potencier",
  3325. "email": "fabien@symfony.com"
  3326. },
  3327. {
  3328. "name": "Symfony Community",
  3329. "homepage": "https://symfony.com/contributors"
  3330. }
  3331. ],
  3332. "description": "Provides an engine that can compile and evaluate expressions",
  3333. "homepage": "https://symfony.com",
  3334. "support": {
  3335. "source": "https://github.com/symfony/expression-language/tree/v7.1.4"
  3336. },
  3337. "funding": [
  3338. {
  3339. "url": "https://symfony.com/sponsor",
  3340. "type": "custom"
  3341. },
  3342. {
  3343. "url": "https://github.com/fabpot",
  3344. "type": "github"
  3345. },
  3346. {
  3347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3348. "type": "tidelift"
  3349. }
  3350. ],
  3351. "time": "2024-08-12T09:59:40+00:00"
  3352. },
  3353. {
  3354. "name": "symfony/filesystem",
  3355. "version": "v7.1.5",
  3356. "source": {
  3357. "type": "git",
  3358. "url": "https://github.com/symfony/filesystem.git",
  3359. "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a"
  3360. },
  3361. "dist": {
  3362. "type": "zip",
  3363. "url": "https://api.github.com/repos/symfony/filesystem/zipball/61fe0566189bf32e8cfee78335d8776f64a66f5a",
  3364. "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a",
  3365. "shasum": ""
  3366. },
  3367. "require": {
  3368. "php": ">=8.2",
  3369. "symfony/polyfill-ctype": "~1.8",
  3370. "symfony/polyfill-mbstring": "~1.8"
  3371. },
  3372. "require-dev": {
  3373. "symfony/process": "^6.4|^7.0"
  3374. },
  3375. "type": "library",
  3376. "autoload": {
  3377. "psr-4": {
  3378. "Symfony\\Component\\Filesystem\\": ""
  3379. },
  3380. "exclude-from-classmap": [
  3381. "/Tests/"
  3382. ]
  3383. },
  3384. "notification-url": "https://packagist.org/downloads/",
  3385. "license": [
  3386. "MIT"
  3387. ],
  3388. "authors": [
  3389. {
  3390. "name": "Fabien Potencier",
  3391. "email": "fabien@symfony.com"
  3392. },
  3393. {
  3394. "name": "Symfony Community",
  3395. "homepage": "https://symfony.com/contributors"
  3396. }
  3397. ],
  3398. "description": "Provides basic utilities for the filesystem",
  3399. "homepage": "https://symfony.com",
  3400. "support": {
  3401. "source": "https://github.com/symfony/filesystem/tree/v7.1.5"
  3402. },
  3403. "funding": [
  3404. {
  3405. "url": "https://symfony.com/sponsor",
  3406. "type": "custom"
  3407. },
  3408. {
  3409. "url": "https://github.com/fabpot",
  3410. "type": "github"
  3411. },
  3412. {
  3413. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3414. "type": "tidelift"
  3415. }
  3416. ],
  3417. "time": "2024-09-17T09:16:35+00:00"
  3418. },
  3419. {
  3420. "name": "symfony/finder",
  3421. "version": "v7.1.4",
  3422. "source": {
  3423. "type": "git",
  3424. "url": "https://github.com/symfony/finder.git",
  3425. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823"
  3426. },
  3427. "dist": {
  3428. "type": "zip",
  3429. "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823",
  3430. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823",
  3431. "shasum": ""
  3432. },
  3433. "require": {
  3434. "php": ">=8.2"
  3435. },
  3436. "require-dev": {
  3437. "symfony/filesystem": "^6.4|^7.0"
  3438. },
  3439. "type": "library",
  3440. "autoload": {
  3441. "psr-4": {
  3442. "Symfony\\Component\\Finder\\": ""
  3443. },
  3444. "exclude-from-classmap": [
  3445. "/Tests/"
  3446. ]
  3447. },
  3448. "notification-url": "https://packagist.org/downloads/",
  3449. "license": [
  3450. "MIT"
  3451. ],
  3452. "authors": [
  3453. {
  3454. "name": "Fabien Potencier",
  3455. "email": "fabien@symfony.com"
  3456. },
  3457. {
  3458. "name": "Symfony Community",
  3459. "homepage": "https://symfony.com/contributors"
  3460. }
  3461. ],
  3462. "description": "Finds files and directories via an intuitive fluent interface",
  3463. "homepage": "https://symfony.com",
  3464. "support": {
  3465. "source": "https://github.com/symfony/finder/tree/v7.1.4"
  3466. },
  3467. "funding": [
  3468. {
  3469. "url": "https://symfony.com/sponsor",
  3470. "type": "custom"
  3471. },
  3472. {
  3473. "url": "https://github.com/fabpot",
  3474. "type": "github"
  3475. },
  3476. {
  3477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3478. "type": "tidelift"
  3479. }
  3480. ],
  3481. "time": "2024-08-13T14:28:19+00:00"
  3482. },
  3483. {
  3484. "name": "symfony/flex",
  3485. "version": "v2.4.7",
  3486. "source": {
  3487. "type": "git",
  3488. "url": "https://github.com/symfony/flex.git",
  3489. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402"
  3490. },
  3491. "dist": {
  3492. "type": "zip",
  3493. "url": "https://api.github.com/repos/symfony/flex/zipball/92f4fba342161ff36072bd3b8e0b3c6c23160402",
  3494. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402",
  3495. "shasum": ""
  3496. },
  3497. "require": {
  3498. "composer-plugin-api": "^2.1",
  3499. "php": ">=8.0"
  3500. },
  3501. "conflict": {
  3502. "composer/semver": "<1.7.2"
  3503. },
  3504. "require-dev": {
  3505. "composer/composer": "^2.1",
  3506. "symfony/dotenv": "^5.4|^6.0",
  3507. "symfony/filesystem": "^5.4|^6.0",
  3508. "symfony/phpunit-bridge": "^5.4|^6.0",
  3509. "symfony/process": "^5.4|^6.0"
  3510. },
  3511. "type": "composer-plugin",
  3512. "extra": {
  3513. "class": "Symfony\\Flex\\Flex"
  3514. },
  3515. "autoload": {
  3516. "psr-4": {
  3517. "Symfony\\Flex\\": "src"
  3518. }
  3519. },
  3520. "notification-url": "https://packagist.org/downloads/",
  3521. "license": [
  3522. "MIT"
  3523. ],
  3524. "authors": [
  3525. {
  3526. "name": "Fabien Potencier",
  3527. "email": "fabien.potencier@gmail.com"
  3528. }
  3529. ],
  3530. "description": "Composer plugin for Symfony",
  3531. "support": {
  3532. "issues": "https://github.com/symfony/flex/issues",
  3533. "source": "https://github.com/symfony/flex/tree/v2.4.7"
  3534. },
  3535. "funding": [
  3536. {
  3537. "url": "https://symfony.com/sponsor",
  3538. "type": "custom"
  3539. },
  3540. {
  3541. "url": "https://github.com/fabpot",
  3542. "type": "github"
  3543. },
  3544. {
  3545. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3546. "type": "tidelift"
  3547. }
  3548. ],
  3549. "time": "2024-10-07T08:51:54+00:00"
  3550. },
  3551. {
  3552. "name": "symfony/form",
  3553. "version": "v7.1.5",
  3554. "source": {
  3555. "type": "git",
  3556. "url": "https://github.com/symfony/form.git",
  3557. "reference": "6b8b53ad6d42f14b158c896163b96ff260d78222"
  3558. },
  3559. "dist": {
  3560. "type": "zip",
  3561. "url": "https://api.github.com/repos/symfony/form/zipball/6b8b53ad6d42f14b158c896163b96ff260d78222",
  3562. "reference": "6b8b53ad6d42f14b158c896163b96ff260d78222",
  3563. "shasum": ""
  3564. },
  3565. "require": {
  3566. "php": ">=8.2",
  3567. "symfony/deprecation-contracts": "^2.5|^3",
  3568. "symfony/event-dispatcher": "^6.4|^7.0",
  3569. "symfony/options-resolver": "^6.4|^7.0",
  3570. "symfony/polyfill-ctype": "~1.8",
  3571. "symfony/polyfill-intl-icu": "^1.21",
  3572. "symfony/polyfill-mbstring": "~1.0",
  3573. "symfony/property-access": "^6.4|^7.0",
  3574. "symfony/service-contracts": "^2.5|^3"
  3575. },
  3576. "conflict": {
  3577. "symfony/console": "<6.4",
  3578. "symfony/dependency-injection": "<6.4",
  3579. "symfony/doctrine-bridge": "<6.4",
  3580. "symfony/error-handler": "<6.4",
  3581. "symfony/framework-bundle": "<6.4",
  3582. "symfony/http-kernel": "<6.4",
  3583. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  3584. "symfony/translation-contracts": "<2.5",
  3585. "symfony/twig-bridge": "<6.4"
  3586. },
  3587. "require-dev": {
  3588. "doctrine/collections": "^1.0|^2.0",
  3589. "symfony/config": "^6.4|^7.0",
  3590. "symfony/console": "^6.4|^7.0",
  3591. "symfony/dependency-injection": "^6.4|^7.0",
  3592. "symfony/expression-language": "^6.4|^7.0",
  3593. "symfony/html-sanitizer": "^6.4|^7.0",
  3594. "symfony/http-foundation": "^6.4|^7.0",
  3595. "symfony/http-kernel": "^6.4|^7.0",
  3596. "symfony/intl": "^6.4|^7.0",
  3597. "symfony/security-core": "^6.4|^7.0",
  3598. "symfony/security-csrf": "^6.4|^7.0",
  3599. "symfony/translation": "^6.4.3|^7.0.3",
  3600. "symfony/uid": "^6.4|^7.0",
  3601. "symfony/validator": "^6.4|^7.0",
  3602. "symfony/var-dumper": "^6.4|^7.0"
  3603. },
  3604. "type": "library",
  3605. "autoload": {
  3606. "psr-4": {
  3607. "Symfony\\Component\\Form\\": ""
  3608. },
  3609. "exclude-from-classmap": [
  3610. "/Tests/"
  3611. ]
  3612. },
  3613. "notification-url": "https://packagist.org/downloads/",
  3614. "license": [
  3615. "MIT"
  3616. ],
  3617. "authors": [
  3618. {
  3619. "name": "Fabien Potencier",
  3620. "email": "fabien@symfony.com"
  3621. },
  3622. {
  3623. "name": "Symfony Community",
  3624. "homepage": "https://symfony.com/contributors"
  3625. }
  3626. ],
  3627. "description": "Allows to easily create, process and reuse HTML forms",
  3628. "homepage": "https://symfony.com",
  3629. "support": {
  3630. "source": "https://github.com/symfony/form/tree/v7.1.5"
  3631. },
  3632. "funding": [
  3633. {
  3634. "url": "https://symfony.com/sponsor",
  3635. "type": "custom"
  3636. },
  3637. {
  3638. "url": "https://github.com/fabpot",
  3639. "type": "github"
  3640. },
  3641. {
  3642. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3643. "type": "tidelift"
  3644. }
  3645. ],
  3646. "time": "2024-09-20T08:28:38+00:00"
  3647. },
  3648. {
  3649. "name": "symfony/framework-bundle",
  3650. "version": "v7.1.5",
  3651. "source": {
  3652. "type": "git",
  3653. "url": "https://github.com/symfony/framework-bundle.git",
  3654. "reference": "8a792de86230c13a9de7750c0c8b23cc083183d4"
  3655. },
  3656. "dist": {
  3657. "type": "zip",
  3658. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/8a792de86230c13a9de7750c0c8b23cc083183d4",
  3659. "reference": "8a792de86230c13a9de7750c0c8b23cc083183d4",
  3660. "shasum": ""
  3661. },
  3662. "require": {
  3663. "composer-runtime-api": ">=2.1",
  3664. "ext-xml": "*",
  3665. "php": ">=8.2",
  3666. "symfony/cache": "^6.4|^7.0",
  3667. "symfony/config": "^6.4|^7.0",
  3668. "symfony/dependency-injection": "^7.1.5",
  3669. "symfony/deprecation-contracts": "^2.5|^3",
  3670. "symfony/error-handler": "^6.4|^7.0",
  3671. "symfony/event-dispatcher": "^6.4|^7.0",
  3672. "symfony/filesystem": "^7.1",
  3673. "symfony/finder": "^6.4|^7.0",
  3674. "symfony/http-foundation": "^6.4|^7.0",
  3675. "symfony/http-kernel": "^6.4|^7.0",
  3676. "symfony/polyfill-mbstring": "~1.0",
  3677. "symfony/routing": "^6.4|^7.0"
  3678. },
  3679. "conflict": {
  3680. "doctrine/persistence": "<1.3",
  3681. "phpdocumentor/reflection-docblock": "<3.2.2",
  3682. "phpdocumentor/type-resolver": "<1.4.0",
  3683. "symfony/asset": "<6.4",
  3684. "symfony/asset-mapper": "<6.4",
  3685. "symfony/clock": "<6.4",
  3686. "symfony/console": "<6.4",
  3687. "symfony/dom-crawler": "<6.4",
  3688. "symfony/dotenv": "<6.4",
  3689. "symfony/form": "<6.4",
  3690. "symfony/http-client": "<6.4",
  3691. "symfony/lock": "<6.4",
  3692. "symfony/mailer": "<6.4",
  3693. "symfony/messenger": "<6.4",
  3694. "symfony/mime": "<6.4",
  3695. "symfony/property-access": "<6.4",
  3696. "symfony/property-info": "<6.4",
  3697. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  3698. "symfony/security-core": "<6.4",
  3699. "symfony/security-csrf": "<6.4",
  3700. "symfony/serializer": "<6.4",
  3701. "symfony/stopwatch": "<6.4",
  3702. "symfony/translation": "<6.4",
  3703. "symfony/twig-bridge": "<6.4",
  3704. "symfony/twig-bundle": "<6.4",
  3705. "symfony/validator": "<6.4",
  3706. "symfony/web-profiler-bundle": "<6.4",
  3707. "symfony/workflow": "<6.4"
  3708. },
  3709. "require-dev": {
  3710. "doctrine/persistence": "^1.3|^2|^3",
  3711. "dragonmantank/cron-expression": "^3.1",
  3712. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3713. "seld/jsonlint": "^1.10",
  3714. "symfony/asset": "^6.4|^7.0",
  3715. "symfony/asset-mapper": "^6.4|^7.0",
  3716. "symfony/browser-kit": "^6.4|^7.0",
  3717. "symfony/clock": "^6.4|^7.0",
  3718. "symfony/console": "^6.4|^7.0",
  3719. "symfony/css-selector": "^6.4|^7.0",
  3720. "symfony/dom-crawler": "^6.4|^7.0",
  3721. "symfony/dotenv": "^6.4|^7.0",
  3722. "symfony/expression-language": "^6.4|^7.0",
  3723. "symfony/form": "^6.4|^7.0",
  3724. "symfony/html-sanitizer": "^6.4|^7.0",
  3725. "symfony/http-client": "^6.4|^7.0",
  3726. "symfony/lock": "^6.4|^7.0",
  3727. "symfony/mailer": "^6.4|^7.0",
  3728. "symfony/messenger": "^6.4|^7.0",
  3729. "symfony/mime": "^6.4|^7.0",
  3730. "symfony/notifier": "^6.4|^7.0",
  3731. "symfony/polyfill-intl-icu": "~1.0",
  3732. "symfony/process": "^6.4|^7.0",
  3733. "symfony/property-info": "^6.4|^7.0",
  3734. "symfony/rate-limiter": "^6.4|^7.0",
  3735. "symfony/scheduler": "^6.4.4|^7.0.4",
  3736. "symfony/security-bundle": "^6.4|^7.0",
  3737. "symfony/semaphore": "^6.4|^7.0",
  3738. "symfony/serializer": "^6.4|^7.0",
  3739. "symfony/stopwatch": "^6.4|^7.0",
  3740. "symfony/string": "^6.4|^7.0",
  3741. "symfony/translation": "^6.4|^7.0",
  3742. "symfony/twig-bundle": "^6.4|^7.0",
  3743. "symfony/type-info": "^7.1",
  3744. "symfony/uid": "^6.4|^7.0",
  3745. "symfony/validator": "^6.4|^7.0",
  3746. "symfony/web-link": "^6.4|^7.0",
  3747. "symfony/workflow": "^6.4|^7.0",
  3748. "symfony/yaml": "^6.4|^7.0",
  3749. "twig/twig": "^3.0.4"
  3750. },
  3751. "type": "symfony-bundle",
  3752. "autoload": {
  3753. "psr-4": {
  3754. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3755. },
  3756. "exclude-from-classmap": [
  3757. "/Tests/"
  3758. ]
  3759. },
  3760. "notification-url": "https://packagist.org/downloads/",
  3761. "license": [
  3762. "MIT"
  3763. ],
  3764. "authors": [
  3765. {
  3766. "name": "Fabien Potencier",
  3767. "email": "fabien@symfony.com"
  3768. },
  3769. {
  3770. "name": "Symfony Community",
  3771. "homepage": "https://symfony.com/contributors"
  3772. }
  3773. ],
  3774. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  3775. "homepage": "https://symfony.com",
  3776. "support": {
  3777. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.5"
  3778. },
  3779. "funding": [
  3780. {
  3781. "url": "https://symfony.com/sponsor",
  3782. "type": "custom"
  3783. },
  3784. {
  3785. "url": "https://github.com/fabpot",
  3786. "type": "github"
  3787. },
  3788. {
  3789. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3790. "type": "tidelift"
  3791. }
  3792. ],
  3793. "time": "2024-09-20T13:35:23+00:00"
  3794. },
  3795. {
  3796. "name": "symfony/http-client",
  3797. "version": "v7.1.5",
  3798. "source": {
  3799. "type": "git",
  3800. "url": "https://github.com/symfony/http-client.git",
  3801. "reference": "abca35865118edf35a23f2f24978a1784c831cb4"
  3802. },
  3803. "dist": {
  3804. "type": "zip",
  3805. "url": "https://api.github.com/repos/symfony/http-client/zipball/abca35865118edf35a23f2f24978a1784c831cb4",
  3806. "reference": "abca35865118edf35a23f2f24978a1784c831cb4",
  3807. "shasum": ""
  3808. },
  3809. "require": {
  3810. "php": ">=8.2",
  3811. "psr/log": "^1|^2|^3",
  3812. "symfony/deprecation-contracts": "^2.5|^3",
  3813. "symfony/http-client-contracts": "^3.4.1",
  3814. "symfony/service-contracts": "^2.5|^3"
  3815. },
  3816. "conflict": {
  3817. "php-http/discovery": "<1.15",
  3818. "symfony/http-foundation": "<6.4"
  3819. },
  3820. "provide": {
  3821. "php-http/async-client-implementation": "*",
  3822. "php-http/client-implementation": "*",
  3823. "psr/http-client-implementation": "1.0",
  3824. "symfony/http-client-implementation": "3.0"
  3825. },
  3826. "require-dev": {
  3827. "amphp/amp": "^2.5",
  3828. "amphp/http-client": "^4.2.1",
  3829. "amphp/http-tunnel": "^1.0",
  3830. "amphp/socket": "^1.1",
  3831. "guzzlehttp/promises": "^1.4|^2.0",
  3832. "nyholm/psr7": "^1.0",
  3833. "php-http/httplug": "^1.0|^2.0",
  3834. "psr/http-client": "^1.0",
  3835. "symfony/dependency-injection": "^6.4|^7.0",
  3836. "symfony/http-kernel": "^6.4|^7.0",
  3837. "symfony/messenger": "^6.4|^7.0",
  3838. "symfony/process": "^6.4|^7.0",
  3839. "symfony/rate-limiter": "^6.4|^7.0",
  3840. "symfony/stopwatch": "^6.4|^7.0"
  3841. },
  3842. "type": "library",
  3843. "autoload": {
  3844. "psr-4": {
  3845. "Symfony\\Component\\HttpClient\\": ""
  3846. },
  3847. "exclude-from-classmap": [
  3848. "/Tests/"
  3849. ]
  3850. },
  3851. "notification-url": "https://packagist.org/downloads/",
  3852. "license": [
  3853. "MIT"
  3854. ],
  3855. "authors": [
  3856. {
  3857. "name": "Nicolas Grekas",
  3858. "email": "p@tchwork.com"
  3859. },
  3860. {
  3861. "name": "Symfony Community",
  3862. "homepage": "https://symfony.com/contributors"
  3863. }
  3864. ],
  3865. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  3866. "homepage": "https://symfony.com",
  3867. "keywords": [
  3868. "http"
  3869. ],
  3870. "support": {
  3871. "source": "https://github.com/symfony/http-client/tree/v7.1.5"
  3872. },
  3873. "funding": [
  3874. {
  3875. "url": "https://symfony.com/sponsor",
  3876. "type": "custom"
  3877. },
  3878. {
  3879. "url": "https://github.com/fabpot",
  3880. "type": "github"
  3881. },
  3882. {
  3883. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3884. "type": "tidelift"
  3885. }
  3886. ],
  3887. "time": "2024-09-20T13:35:23+00:00"
  3888. },
  3889. {
  3890. "name": "symfony/http-client-contracts",
  3891. "version": "v3.5.0",
  3892. "source": {
  3893. "type": "git",
  3894. "url": "https://github.com/symfony/http-client-contracts.git",
  3895. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  3896. },
  3897. "dist": {
  3898. "type": "zip",
  3899. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  3900. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  3901. "shasum": ""
  3902. },
  3903. "require": {
  3904. "php": ">=8.1"
  3905. },
  3906. "type": "library",
  3907. "extra": {
  3908. "branch-alias": {
  3909. "dev-main": "3.5-dev"
  3910. },
  3911. "thanks": {
  3912. "name": "symfony/contracts",
  3913. "url": "https://github.com/symfony/contracts"
  3914. }
  3915. },
  3916. "autoload": {
  3917. "psr-4": {
  3918. "Symfony\\Contracts\\HttpClient\\": ""
  3919. },
  3920. "exclude-from-classmap": [
  3921. "/Test/"
  3922. ]
  3923. },
  3924. "notification-url": "https://packagist.org/downloads/",
  3925. "license": [
  3926. "MIT"
  3927. ],
  3928. "authors": [
  3929. {
  3930. "name": "Nicolas Grekas",
  3931. "email": "p@tchwork.com"
  3932. },
  3933. {
  3934. "name": "Symfony Community",
  3935. "homepage": "https://symfony.com/contributors"
  3936. }
  3937. ],
  3938. "description": "Generic abstractions related to HTTP clients",
  3939. "homepage": "https://symfony.com",
  3940. "keywords": [
  3941. "abstractions",
  3942. "contracts",
  3943. "decoupling",
  3944. "interfaces",
  3945. "interoperability",
  3946. "standards"
  3947. ],
  3948. "support": {
  3949. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  3950. },
  3951. "funding": [
  3952. {
  3953. "url": "https://symfony.com/sponsor",
  3954. "type": "custom"
  3955. },
  3956. {
  3957. "url": "https://github.com/fabpot",
  3958. "type": "github"
  3959. },
  3960. {
  3961. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3962. "type": "tidelift"
  3963. }
  3964. ],
  3965. "time": "2024-04-18T09:32:20+00:00"
  3966. },
  3967. {
  3968. "name": "symfony/http-foundation",
  3969. "version": "v7.1.5",
  3970. "source": {
  3971. "type": "git",
  3972. "url": "https://github.com/symfony/http-foundation.git",
  3973. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b"
  3974. },
  3975. "dist": {
  3976. "type": "zip",
  3977. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e30ef73b1e44eea7eb37ba69600a354e553f694b",
  3978. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b",
  3979. "shasum": ""
  3980. },
  3981. "require": {
  3982. "php": ">=8.2",
  3983. "symfony/polyfill-mbstring": "~1.1",
  3984. "symfony/polyfill-php83": "^1.27"
  3985. },
  3986. "conflict": {
  3987. "doctrine/dbal": "<3.6",
  3988. "symfony/cache": "<6.4"
  3989. },
  3990. "require-dev": {
  3991. "doctrine/dbal": "^3.6|^4",
  3992. "predis/predis": "^1.1|^2.0",
  3993. "symfony/cache": "^6.4|^7.0",
  3994. "symfony/dependency-injection": "^6.4|^7.0",
  3995. "symfony/expression-language": "^6.4|^7.0",
  3996. "symfony/http-kernel": "^6.4|^7.0",
  3997. "symfony/mime": "^6.4|^7.0",
  3998. "symfony/rate-limiter": "^6.4|^7.0"
  3999. },
  4000. "type": "library",
  4001. "autoload": {
  4002. "psr-4": {
  4003. "Symfony\\Component\\HttpFoundation\\": ""
  4004. },
  4005. "exclude-from-classmap": [
  4006. "/Tests/"
  4007. ]
  4008. },
  4009. "notification-url": "https://packagist.org/downloads/",
  4010. "license": [
  4011. "MIT"
  4012. ],
  4013. "authors": [
  4014. {
  4015. "name": "Fabien Potencier",
  4016. "email": "fabien@symfony.com"
  4017. },
  4018. {
  4019. "name": "Symfony Community",
  4020. "homepage": "https://symfony.com/contributors"
  4021. }
  4022. ],
  4023. "description": "Defines an object-oriented layer for the HTTP specification",
  4024. "homepage": "https://symfony.com",
  4025. "support": {
  4026. "source": "https://github.com/symfony/http-foundation/tree/v7.1.5"
  4027. },
  4028. "funding": [
  4029. {
  4030. "url": "https://symfony.com/sponsor",
  4031. "type": "custom"
  4032. },
  4033. {
  4034. "url": "https://github.com/fabpot",
  4035. "type": "github"
  4036. },
  4037. {
  4038. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4039. "type": "tidelift"
  4040. }
  4041. ],
  4042. "time": "2024-09-20T08:28:38+00:00"
  4043. },
  4044. {
  4045. "name": "symfony/http-kernel",
  4046. "version": "v7.1.5",
  4047. "source": {
  4048. "type": "git",
  4049. "url": "https://github.com/symfony/http-kernel.git",
  4050. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b"
  4051. },
  4052. "dist": {
  4053. "type": "zip",
  4054. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/44204d96150a9df1fc57601ec933d23fefc2d65b",
  4055. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b",
  4056. "shasum": ""
  4057. },
  4058. "require": {
  4059. "php": ">=8.2",
  4060. "psr/log": "^1|^2|^3",
  4061. "symfony/deprecation-contracts": "^2.5|^3",
  4062. "symfony/error-handler": "^6.4|^7.0",
  4063. "symfony/event-dispatcher": "^6.4|^7.0",
  4064. "symfony/http-foundation": "^6.4|^7.0",
  4065. "symfony/polyfill-ctype": "^1.8"
  4066. },
  4067. "conflict": {
  4068. "symfony/browser-kit": "<6.4",
  4069. "symfony/cache": "<6.4",
  4070. "symfony/config": "<6.4",
  4071. "symfony/console": "<6.4",
  4072. "symfony/dependency-injection": "<6.4",
  4073. "symfony/doctrine-bridge": "<6.4",
  4074. "symfony/form": "<6.4",
  4075. "symfony/http-client": "<6.4",
  4076. "symfony/http-client-contracts": "<2.5",
  4077. "symfony/mailer": "<6.4",
  4078. "symfony/messenger": "<6.4",
  4079. "symfony/translation": "<6.4",
  4080. "symfony/translation-contracts": "<2.5",
  4081. "symfony/twig-bridge": "<6.4",
  4082. "symfony/validator": "<6.4",
  4083. "symfony/var-dumper": "<6.4",
  4084. "twig/twig": "<3.0.4"
  4085. },
  4086. "provide": {
  4087. "psr/log-implementation": "1.0|2.0|3.0"
  4088. },
  4089. "require-dev": {
  4090. "psr/cache": "^1.0|^2.0|^3.0",
  4091. "symfony/browser-kit": "^6.4|^7.0",
  4092. "symfony/clock": "^6.4|^7.0",
  4093. "symfony/config": "^6.4|^7.0",
  4094. "symfony/console": "^6.4|^7.0",
  4095. "symfony/css-selector": "^6.4|^7.0",
  4096. "symfony/dependency-injection": "^6.4|^7.0",
  4097. "symfony/dom-crawler": "^6.4|^7.0",
  4098. "symfony/expression-language": "^6.4|^7.0",
  4099. "symfony/finder": "^6.4|^7.0",
  4100. "symfony/http-client-contracts": "^2.5|^3",
  4101. "symfony/process": "^6.4|^7.0",
  4102. "symfony/property-access": "^7.1",
  4103. "symfony/routing": "^6.4|^7.0",
  4104. "symfony/serializer": "^7.1",
  4105. "symfony/stopwatch": "^6.4|^7.0",
  4106. "symfony/translation": "^6.4|^7.0",
  4107. "symfony/translation-contracts": "^2.5|^3",
  4108. "symfony/uid": "^6.4|^7.0",
  4109. "symfony/validator": "^6.4|^7.0",
  4110. "symfony/var-dumper": "^6.4|^7.0",
  4111. "symfony/var-exporter": "^6.4|^7.0",
  4112. "twig/twig": "^3.0.4"
  4113. },
  4114. "type": "library",
  4115. "autoload": {
  4116. "psr-4": {
  4117. "Symfony\\Component\\HttpKernel\\": ""
  4118. },
  4119. "exclude-from-classmap": [
  4120. "/Tests/"
  4121. ]
  4122. },
  4123. "notification-url": "https://packagist.org/downloads/",
  4124. "license": [
  4125. "MIT"
  4126. ],
  4127. "authors": [
  4128. {
  4129. "name": "Fabien Potencier",
  4130. "email": "fabien@symfony.com"
  4131. },
  4132. {
  4133. "name": "Symfony Community",
  4134. "homepage": "https://symfony.com/contributors"
  4135. }
  4136. ],
  4137. "description": "Provides a structured process for converting a Request into a Response",
  4138. "homepage": "https://symfony.com",
  4139. "support": {
  4140. "source": "https://github.com/symfony/http-kernel/tree/v7.1.5"
  4141. },
  4142. "funding": [
  4143. {
  4144. "url": "https://symfony.com/sponsor",
  4145. "type": "custom"
  4146. },
  4147. {
  4148. "url": "https://github.com/fabpot",
  4149. "type": "github"
  4150. },
  4151. {
  4152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4153. "type": "tidelift"
  4154. }
  4155. ],
  4156. "time": "2024-09-21T06:09:21+00:00"
  4157. },
  4158. {
  4159. "name": "symfony/intl",
  4160. "version": "v7.1.5",
  4161. "source": {
  4162. "type": "git",
  4163. "url": "https://github.com/symfony/intl.git",
  4164. "reference": "a0ba7a400e4c915500762c998355bea219a32d6b"
  4165. },
  4166. "dist": {
  4167. "type": "zip",
  4168. "url": "https://api.github.com/repos/symfony/intl/zipball/a0ba7a400e4c915500762c998355bea219a32d6b",
  4169. "reference": "a0ba7a400e4c915500762c998355bea219a32d6b",
  4170. "shasum": ""
  4171. },
  4172. "require": {
  4173. "php": ">=8.2",
  4174. "symfony/deprecation-contracts": "^2.5|^3"
  4175. },
  4176. "conflict": {
  4177. "symfony/string": "<7.1"
  4178. },
  4179. "require-dev": {
  4180. "symfony/filesystem": "^6.4|^7.0",
  4181. "symfony/var-exporter": "^6.4|^7.0"
  4182. },
  4183. "type": "library",
  4184. "autoload": {
  4185. "psr-4": {
  4186. "Symfony\\Component\\Intl\\": ""
  4187. },
  4188. "exclude-from-classmap": [
  4189. "/Tests/",
  4190. "/Resources/data/"
  4191. ]
  4192. },
  4193. "notification-url": "https://packagist.org/downloads/",
  4194. "license": [
  4195. "MIT"
  4196. ],
  4197. "authors": [
  4198. {
  4199. "name": "Bernhard Schussek",
  4200. "email": "bschussek@gmail.com"
  4201. },
  4202. {
  4203. "name": "Eriksen Costa",
  4204. "email": "eriksen.costa@infranology.com.br"
  4205. },
  4206. {
  4207. "name": "Igor Wiedler",
  4208. "email": "igor@wiedler.ch"
  4209. },
  4210. {
  4211. "name": "Symfony Community",
  4212. "homepage": "https://symfony.com/contributors"
  4213. }
  4214. ],
  4215. "description": "Provides access to the localization data of the ICU library",
  4216. "homepage": "https://symfony.com",
  4217. "keywords": [
  4218. "i18n",
  4219. "icu",
  4220. "internationalization",
  4221. "intl",
  4222. "l10n",
  4223. "localization"
  4224. ],
  4225. "support": {
  4226. "source": "https://github.com/symfony/intl/tree/v7.1.5"
  4227. },
  4228. "funding": [
  4229. {
  4230. "url": "https://symfony.com/sponsor",
  4231. "type": "custom"
  4232. },
  4233. {
  4234. "url": "https://github.com/fabpot",
  4235. "type": "github"
  4236. },
  4237. {
  4238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4239. "type": "tidelift"
  4240. }
  4241. ],
  4242. "time": "2024-09-20T08:28:38+00:00"
  4243. },
  4244. {
  4245. "name": "symfony/mailer",
  4246. "version": "v7.1.5",
  4247. "source": {
  4248. "type": "git",
  4249. "url": "https://github.com/symfony/mailer.git",
  4250. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b"
  4251. },
  4252. "dist": {
  4253. "type": "zip",
  4254. "url": "https://api.github.com/repos/symfony/mailer/zipball/bbf21460c56f29810da3df3e206e38dfbb01e80b",
  4255. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b",
  4256. "shasum": ""
  4257. },
  4258. "require": {
  4259. "egulias/email-validator": "^2.1.10|^3|^4",
  4260. "php": ">=8.2",
  4261. "psr/event-dispatcher": "^1",
  4262. "psr/log": "^1|^2|^3",
  4263. "symfony/event-dispatcher": "^6.4|^7.0",
  4264. "symfony/mime": "^6.4|^7.0",
  4265. "symfony/service-contracts": "^2.5|^3"
  4266. },
  4267. "conflict": {
  4268. "symfony/http-client-contracts": "<2.5",
  4269. "symfony/http-kernel": "<6.4",
  4270. "symfony/messenger": "<6.4",
  4271. "symfony/mime": "<6.4",
  4272. "symfony/twig-bridge": "<6.4"
  4273. },
  4274. "require-dev": {
  4275. "symfony/console": "^6.4|^7.0",
  4276. "symfony/http-client": "^6.4|^7.0",
  4277. "symfony/messenger": "^6.4|^7.0",
  4278. "symfony/twig-bridge": "^6.4|^7.0"
  4279. },
  4280. "type": "library",
  4281. "autoload": {
  4282. "psr-4": {
  4283. "Symfony\\Component\\Mailer\\": ""
  4284. },
  4285. "exclude-from-classmap": [
  4286. "/Tests/"
  4287. ]
  4288. },
  4289. "notification-url": "https://packagist.org/downloads/",
  4290. "license": [
  4291. "MIT"
  4292. ],
  4293. "authors": [
  4294. {
  4295. "name": "Fabien Potencier",
  4296. "email": "fabien@symfony.com"
  4297. },
  4298. {
  4299. "name": "Symfony Community",
  4300. "homepage": "https://symfony.com/contributors"
  4301. }
  4302. ],
  4303. "description": "Helps sending emails",
  4304. "homepage": "https://symfony.com",
  4305. "support": {
  4306. "source": "https://github.com/symfony/mailer/tree/v7.1.5"
  4307. },
  4308. "funding": [
  4309. {
  4310. "url": "https://symfony.com/sponsor",
  4311. "type": "custom"
  4312. },
  4313. {
  4314. "url": "https://github.com/fabpot",
  4315. "type": "github"
  4316. },
  4317. {
  4318. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4319. "type": "tidelift"
  4320. }
  4321. ],
  4322. "time": "2024-09-08T12:32:26+00:00"
  4323. },
  4324. {
  4325. "name": "symfony/messenger",
  4326. "version": "v7.1.5",
  4327. "source": {
  4328. "type": "git",
  4329. "url": "https://github.com/symfony/messenger.git",
  4330. "reference": "e1c0ced845e3dac12ab428c5ed42dbe7a58ca576"
  4331. },
  4332. "dist": {
  4333. "type": "zip",
  4334. "url": "https://api.github.com/repos/symfony/messenger/zipball/e1c0ced845e3dac12ab428c5ed42dbe7a58ca576",
  4335. "reference": "e1c0ced845e3dac12ab428c5ed42dbe7a58ca576",
  4336. "shasum": ""
  4337. },
  4338. "require": {
  4339. "php": ">=8.2",
  4340. "psr/log": "^1|^2|^3",
  4341. "symfony/clock": "^6.4|^7.0"
  4342. },
  4343. "conflict": {
  4344. "symfony/console": "<6.4",
  4345. "symfony/event-dispatcher": "<6.4",
  4346. "symfony/event-dispatcher-contracts": "<2.5",
  4347. "symfony/framework-bundle": "<6.4",
  4348. "symfony/http-kernel": "<6.4",
  4349. "symfony/serializer": "<6.4"
  4350. },
  4351. "require-dev": {
  4352. "psr/cache": "^1.0|^2.0|^3.0",
  4353. "symfony/console": "^6.4|^7.0",
  4354. "symfony/dependency-injection": "^6.4|^7.0",
  4355. "symfony/event-dispatcher": "^6.4|^7.0",
  4356. "symfony/http-kernel": "^6.4|^7.0",
  4357. "symfony/process": "^6.4|^7.0",
  4358. "symfony/property-access": "^6.4|^7.0",
  4359. "symfony/rate-limiter": "^6.4|^7.0",
  4360. "symfony/routing": "^6.4|^7.0",
  4361. "symfony/serializer": "^6.4|^7.0",
  4362. "symfony/service-contracts": "^2.5|^3",
  4363. "symfony/stopwatch": "^6.4|^7.0",
  4364. "symfony/validator": "^6.4|^7.0"
  4365. },
  4366. "type": "library",
  4367. "autoload": {
  4368. "psr-4": {
  4369. "Symfony\\Component\\Messenger\\": ""
  4370. },
  4371. "exclude-from-classmap": [
  4372. "/Tests/"
  4373. ]
  4374. },
  4375. "notification-url": "https://packagist.org/downloads/",
  4376. "license": [
  4377. "MIT"
  4378. ],
  4379. "authors": [
  4380. {
  4381. "name": "Samuel Roze",
  4382. "email": "samuel.roze@gmail.com"
  4383. },
  4384. {
  4385. "name": "Symfony Community",
  4386. "homepage": "https://symfony.com/contributors"
  4387. }
  4388. ],
  4389. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  4390. "homepage": "https://symfony.com",
  4391. "support": {
  4392. "source": "https://github.com/symfony/messenger/tree/v7.1.5"
  4393. },
  4394. "funding": [
  4395. {
  4396. "url": "https://symfony.com/sponsor",
  4397. "type": "custom"
  4398. },
  4399. {
  4400. "url": "https://github.com/fabpot",
  4401. "type": "github"
  4402. },
  4403. {
  4404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4405. "type": "tidelift"
  4406. }
  4407. ],
  4408. "time": "2024-09-08T12:32:26+00:00"
  4409. },
  4410. {
  4411. "name": "symfony/mime",
  4412. "version": "v7.1.5",
  4413. "source": {
  4414. "type": "git",
  4415. "url": "https://github.com/symfony/mime.git",
  4416. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff"
  4417. },
  4418. "dist": {
  4419. "type": "zip",
  4420. "url": "https://api.github.com/repos/symfony/mime/zipball/711d2e167e8ce65b05aea6b258c449671cdd38ff",
  4421. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff",
  4422. "shasum": ""
  4423. },
  4424. "require": {
  4425. "php": ">=8.2",
  4426. "symfony/polyfill-intl-idn": "^1.10",
  4427. "symfony/polyfill-mbstring": "^1.0"
  4428. },
  4429. "conflict": {
  4430. "egulias/email-validator": "~3.0.0",
  4431. "phpdocumentor/reflection-docblock": "<3.2.2",
  4432. "phpdocumentor/type-resolver": "<1.4.0",
  4433. "symfony/mailer": "<6.4",
  4434. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4435. },
  4436. "require-dev": {
  4437. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4438. "league/html-to-markdown": "^5.0",
  4439. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4440. "symfony/dependency-injection": "^6.4|^7.0",
  4441. "symfony/process": "^6.4|^7.0",
  4442. "symfony/property-access": "^6.4|^7.0",
  4443. "symfony/property-info": "^6.4|^7.0",
  4444. "symfony/serializer": "^6.4.3|^7.0.3"
  4445. },
  4446. "type": "library",
  4447. "autoload": {
  4448. "psr-4": {
  4449. "Symfony\\Component\\Mime\\": ""
  4450. },
  4451. "exclude-from-classmap": [
  4452. "/Tests/"
  4453. ]
  4454. },
  4455. "notification-url": "https://packagist.org/downloads/",
  4456. "license": [
  4457. "MIT"
  4458. ],
  4459. "authors": [
  4460. {
  4461. "name": "Fabien Potencier",
  4462. "email": "fabien@symfony.com"
  4463. },
  4464. {
  4465. "name": "Symfony Community",
  4466. "homepage": "https://symfony.com/contributors"
  4467. }
  4468. ],
  4469. "description": "Allows manipulating MIME messages",
  4470. "homepage": "https://symfony.com",
  4471. "keywords": [
  4472. "mime",
  4473. "mime-type"
  4474. ],
  4475. "support": {
  4476. "source": "https://github.com/symfony/mime/tree/v7.1.5"
  4477. },
  4478. "funding": [
  4479. {
  4480. "url": "https://symfony.com/sponsor",
  4481. "type": "custom"
  4482. },
  4483. {
  4484. "url": "https://github.com/fabpot",
  4485. "type": "github"
  4486. },
  4487. {
  4488. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4489. "type": "tidelift"
  4490. }
  4491. ],
  4492. "time": "2024-09-20T08:28:38+00:00"
  4493. },
  4494. {
  4495. "name": "symfony/monolog-bridge",
  4496. "version": "v7.1.1",
  4497. "source": {
  4498. "type": "git",
  4499. "url": "https://github.com/symfony/monolog-bridge.git",
  4500. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8"
  4501. },
  4502. "dist": {
  4503. "type": "zip",
  4504. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  4505. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  4506. "shasum": ""
  4507. },
  4508. "require": {
  4509. "monolog/monolog": "^3",
  4510. "php": ">=8.2",
  4511. "symfony/http-kernel": "^6.4|^7.0",
  4512. "symfony/service-contracts": "^2.5|^3"
  4513. },
  4514. "conflict": {
  4515. "symfony/console": "<6.4",
  4516. "symfony/http-foundation": "<6.4",
  4517. "symfony/security-core": "<6.4"
  4518. },
  4519. "require-dev": {
  4520. "symfony/console": "^6.4|^7.0",
  4521. "symfony/http-client": "^6.4|^7.0",
  4522. "symfony/mailer": "^6.4|^7.0",
  4523. "symfony/messenger": "^6.4|^7.0",
  4524. "symfony/mime": "^6.4|^7.0",
  4525. "symfony/security-core": "^6.4|^7.0",
  4526. "symfony/var-dumper": "^6.4|^7.0"
  4527. },
  4528. "type": "symfony-bridge",
  4529. "autoload": {
  4530. "psr-4": {
  4531. "Symfony\\Bridge\\Monolog\\": ""
  4532. },
  4533. "exclude-from-classmap": [
  4534. "/Tests/"
  4535. ]
  4536. },
  4537. "notification-url": "https://packagist.org/downloads/",
  4538. "license": [
  4539. "MIT"
  4540. ],
  4541. "authors": [
  4542. {
  4543. "name": "Fabien Potencier",
  4544. "email": "fabien@symfony.com"
  4545. },
  4546. {
  4547. "name": "Symfony Community",
  4548. "homepage": "https://symfony.com/contributors"
  4549. }
  4550. ],
  4551. "description": "Provides integration for Monolog with various Symfony components",
  4552. "homepage": "https://symfony.com",
  4553. "support": {
  4554. "source": "https://github.com/symfony/monolog-bridge/tree/v7.1.1"
  4555. },
  4556. "funding": [
  4557. {
  4558. "url": "https://symfony.com/sponsor",
  4559. "type": "custom"
  4560. },
  4561. {
  4562. "url": "https://github.com/fabpot",
  4563. "type": "github"
  4564. },
  4565. {
  4566. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4567. "type": "tidelift"
  4568. }
  4569. ],
  4570. "time": "2024-05-31T14:57:53+00:00"
  4571. },
  4572. {
  4573. "name": "symfony/monolog-bundle",
  4574. "version": "v3.10.0",
  4575. "source": {
  4576. "type": "git",
  4577. "url": "https://github.com/symfony/monolog-bundle.git",
  4578. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  4579. },
  4580. "dist": {
  4581. "type": "zip",
  4582. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4583. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4584. "shasum": ""
  4585. },
  4586. "require": {
  4587. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  4588. "php": ">=7.2.5",
  4589. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  4590. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  4591. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  4592. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  4593. },
  4594. "require-dev": {
  4595. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  4596. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  4597. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  4598. },
  4599. "type": "symfony-bundle",
  4600. "extra": {
  4601. "branch-alias": {
  4602. "dev-master": "3.x-dev"
  4603. }
  4604. },
  4605. "autoload": {
  4606. "psr-4": {
  4607. "Symfony\\Bundle\\MonologBundle\\": ""
  4608. },
  4609. "exclude-from-classmap": [
  4610. "/Tests/"
  4611. ]
  4612. },
  4613. "notification-url": "https://packagist.org/downloads/",
  4614. "license": [
  4615. "MIT"
  4616. ],
  4617. "authors": [
  4618. {
  4619. "name": "Fabien Potencier",
  4620. "email": "fabien@symfony.com"
  4621. },
  4622. {
  4623. "name": "Symfony Community",
  4624. "homepage": "https://symfony.com/contributors"
  4625. }
  4626. ],
  4627. "description": "Symfony MonologBundle",
  4628. "homepage": "https://symfony.com",
  4629. "keywords": [
  4630. "log",
  4631. "logging"
  4632. ],
  4633. "support": {
  4634. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4635. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  4636. },
  4637. "funding": [
  4638. {
  4639. "url": "https://symfony.com/sponsor",
  4640. "type": "custom"
  4641. },
  4642. {
  4643. "url": "https://github.com/fabpot",
  4644. "type": "github"
  4645. },
  4646. {
  4647. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4648. "type": "tidelift"
  4649. }
  4650. ],
  4651. "time": "2023-11-06T17:08:13+00:00"
  4652. },
  4653. {
  4654. "name": "symfony/notifier",
  4655. "version": "v7.1.5",
  4656. "source": {
  4657. "type": "git",
  4658. "url": "https://github.com/symfony/notifier.git",
  4659. "reference": "843946b0b1018ddc714b467f223607c71f9f6c8f"
  4660. },
  4661. "dist": {
  4662. "type": "zip",
  4663. "url": "https://api.github.com/repos/symfony/notifier/zipball/843946b0b1018ddc714b467f223607c71f9f6c8f",
  4664. "reference": "843946b0b1018ddc714b467f223607c71f9f6c8f",
  4665. "shasum": ""
  4666. },
  4667. "require": {
  4668. "php": ">=8.2",
  4669. "psr/log": "^1|^2|^3"
  4670. },
  4671. "conflict": {
  4672. "symfony/event-dispatcher": "<6.4",
  4673. "symfony/event-dispatcher-contracts": "<2.5",
  4674. "symfony/http-client-contracts": "<2.5",
  4675. "symfony/http-kernel": "<6.4"
  4676. },
  4677. "require-dev": {
  4678. "symfony/event-dispatcher-contracts": "^2.5|^3",
  4679. "symfony/http-client-contracts": "^2.5|^3",
  4680. "symfony/http-foundation": "^6.4|^7.0",
  4681. "symfony/messenger": "^6.4|^7.0"
  4682. },
  4683. "type": "library",
  4684. "autoload": {
  4685. "psr-4": {
  4686. "Symfony\\Component\\Notifier\\": ""
  4687. },
  4688. "exclude-from-classmap": [
  4689. "/Tests/"
  4690. ]
  4691. },
  4692. "notification-url": "https://packagist.org/downloads/",
  4693. "license": [
  4694. "MIT"
  4695. ],
  4696. "authors": [
  4697. {
  4698. "name": "Fabien Potencier",
  4699. "email": "fabien@symfony.com"
  4700. },
  4701. {
  4702. "name": "Symfony Community",
  4703. "homepage": "https://symfony.com/contributors"
  4704. }
  4705. ],
  4706. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  4707. "homepage": "https://symfony.com",
  4708. "keywords": [
  4709. "notification",
  4710. "notifier"
  4711. ],
  4712. "support": {
  4713. "source": "https://github.com/symfony/notifier/tree/v7.1.5"
  4714. },
  4715. "funding": [
  4716. {
  4717. "url": "https://symfony.com/sponsor",
  4718. "type": "custom"
  4719. },
  4720. {
  4721. "url": "https://github.com/fabpot",
  4722. "type": "github"
  4723. },
  4724. {
  4725. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4726. "type": "tidelift"
  4727. }
  4728. ],
  4729. "time": "2024-09-08T12:32:26+00:00"
  4730. },
  4731. {
  4732. "name": "symfony/options-resolver",
  4733. "version": "v7.1.1",
  4734. "source": {
  4735. "type": "git",
  4736. "url": "https://github.com/symfony/options-resolver.git",
  4737. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55"
  4738. },
  4739. "dist": {
  4740. "type": "zip",
  4741. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  4742. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  4743. "shasum": ""
  4744. },
  4745. "require": {
  4746. "php": ">=8.2",
  4747. "symfony/deprecation-contracts": "^2.5|^3"
  4748. },
  4749. "type": "library",
  4750. "autoload": {
  4751. "psr-4": {
  4752. "Symfony\\Component\\OptionsResolver\\": ""
  4753. },
  4754. "exclude-from-classmap": [
  4755. "/Tests/"
  4756. ]
  4757. },
  4758. "notification-url": "https://packagist.org/downloads/",
  4759. "license": [
  4760. "MIT"
  4761. ],
  4762. "authors": [
  4763. {
  4764. "name": "Fabien Potencier",
  4765. "email": "fabien@symfony.com"
  4766. },
  4767. {
  4768. "name": "Symfony Community",
  4769. "homepage": "https://symfony.com/contributors"
  4770. }
  4771. ],
  4772. "description": "Provides an improved replacement for the array_replace PHP function",
  4773. "homepage": "https://symfony.com",
  4774. "keywords": [
  4775. "config",
  4776. "configuration",
  4777. "options"
  4778. ],
  4779. "support": {
  4780. "source": "https://github.com/symfony/options-resolver/tree/v7.1.1"
  4781. },
  4782. "funding": [
  4783. {
  4784. "url": "https://symfony.com/sponsor",
  4785. "type": "custom"
  4786. },
  4787. {
  4788. "url": "https://github.com/fabpot",
  4789. "type": "github"
  4790. },
  4791. {
  4792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4793. "type": "tidelift"
  4794. }
  4795. ],
  4796. "time": "2024-05-31T14:57:53+00:00"
  4797. },
  4798. {
  4799. "name": "symfony/password-hasher",
  4800. "version": "v7.1.1",
  4801. "source": {
  4802. "type": "git",
  4803. "url": "https://github.com/symfony/password-hasher.git",
  4804. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662"
  4805. },
  4806. "dist": {
  4807. "type": "zip",
  4808. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  4809. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  4810. "shasum": ""
  4811. },
  4812. "require": {
  4813. "php": ">=8.2"
  4814. },
  4815. "conflict": {
  4816. "symfony/security-core": "<6.4"
  4817. },
  4818. "require-dev": {
  4819. "symfony/console": "^6.4|^7.0",
  4820. "symfony/security-core": "^6.4|^7.0"
  4821. },
  4822. "type": "library",
  4823. "autoload": {
  4824. "psr-4": {
  4825. "Symfony\\Component\\PasswordHasher\\": ""
  4826. },
  4827. "exclude-from-classmap": [
  4828. "/Tests/"
  4829. ]
  4830. },
  4831. "notification-url": "https://packagist.org/downloads/",
  4832. "license": [
  4833. "MIT"
  4834. ],
  4835. "authors": [
  4836. {
  4837. "name": "Robin Chalas",
  4838. "email": "robin.chalas@gmail.com"
  4839. },
  4840. {
  4841. "name": "Symfony Community",
  4842. "homepage": "https://symfony.com/contributors"
  4843. }
  4844. ],
  4845. "description": "Provides password hashing utilities",
  4846. "homepage": "https://symfony.com",
  4847. "keywords": [
  4848. "hashing",
  4849. "password"
  4850. ],
  4851. "support": {
  4852. "source": "https://github.com/symfony/password-hasher/tree/v7.1.1"
  4853. },
  4854. "funding": [
  4855. {
  4856. "url": "https://symfony.com/sponsor",
  4857. "type": "custom"
  4858. },
  4859. {
  4860. "url": "https://github.com/fabpot",
  4861. "type": "github"
  4862. },
  4863. {
  4864. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4865. "type": "tidelift"
  4866. }
  4867. ],
  4868. "time": "2024-05-31T14:57:53+00:00"
  4869. },
  4870. {
  4871. "name": "symfony/polyfill-intl-grapheme",
  4872. "version": "v1.31.0",
  4873. "source": {
  4874. "type": "git",
  4875. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4876. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  4877. },
  4878. "dist": {
  4879. "type": "zip",
  4880. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4881. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4882. "shasum": ""
  4883. },
  4884. "require": {
  4885. "php": ">=7.2"
  4886. },
  4887. "suggest": {
  4888. "ext-intl": "For best performance"
  4889. },
  4890. "type": "library",
  4891. "extra": {
  4892. "thanks": {
  4893. "name": "symfony/polyfill",
  4894. "url": "https://github.com/symfony/polyfill"
  4895. }
  4896. },
  4897. "autoload": {
  4898. "files": [
  4899. "bootstrap.php"
  4900. ],
  4901. "psr-4": {
  4902. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4903. }
  4904. },
  4905. "notification-url": "https://packagist.org/downloads/",
  4906. "license": [
  4907. "MIT"
  4908. ],
  4909. "authors": [
  4910. {
  4911. "name": "Nicolas Grekas",
  4912. "email": "p@tchwork.com"
  4913. },
  4914. {
  4915. "name": "Symfony Community",
  4916. "homepage": "https://symfony.com/contributors"
  4917. }
  4918. ],
  4919. "description": "Symfony polyfill for intl's grapheme_* functions",
  4920. "homepage": "https://symfony.com",
  4921. "keywords": [
  4922. "compatibility",
  4923. "grapheme",
  4924. "intl",
  4925. "polyfill",
  4926. "portable",
  4927. "shim"
  4928. ],
  4929. "support": {
  4930. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  4931. },
  4932. "funding": [
  4933. {
  4934. "url": "https://symfony.com/sponsor",
  4935. "type": "custom"
  4936. },
  4937. {
  4938. "url": "https://github.com/fabpot",
  4939. "type": "github"
  4940. },
  4941. {
  4942. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4943. "type": "tidelift"
  4944. }
  4945. ],
  4946. "time": "2024-09-09T11:45:10+00:00"
  4947. },
  4948. {
  4949. "name": "symfony/polyfill-intl-icu",
  4950. "version": "v1.31.0",
  4951. "source": {
  4952. "type": "git",
  4953. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4954. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78"
  4955. },
  4956. "dist": {
  4957. "type": "zip",
  4958. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  4959. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  4960. "shasum": ""
  4961. },
  4962. "require": {
  4963. "php": ">=7.2"
  4964. },
  4965. "suggest": {
  4966. "ext-intl": "For best performance and support of other locales than \"en\""
  4967. },
  4968. "type": "library",
  4969. "extra": {
  4970. "thanks": {
  4971. "name": "symfony/polyfill",
  4972. "url": "https://github.com/symfony/polyfill"
  4973. }
  4974. },
  4975. "autoload": {
  4976. "files": [
  4977. "bootstrap.php"
  4978. ],
  4979. "psr-4": {
  4980. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  4981. },
  4982. "classmap": [
  4983. "Resources/stubs"
  4984. ],
  4985. "exclude-from-classmap": [
  4986. "/Tests/"
  4987. ]
  4988. },
  4989. "notification-url": "https://packagist.org/downloads/",
  4990. "license": [
  4991. "MIT"
  4992. ],
  4993. "authors": [
  4994. {
  4995. "name": "Nicolas Grekas",
  4996. "email": "p@tchwork.com"
  4997. },
  4998. {
  4999. "name": "Symfony Community",
  5000. "homepage": "https://symfony.com/contributors"
  5001. }
  5002. ],
  5003. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5004. "homepage": "https://symfony.com",
  5005. "keywords": [
  5006. "compatibility",
  5007. "icu",
  5008. "intl",
  5009. "polyfill",
  5010. "portable",
  5011. "shim"
  5012. ],
  5013. "support": {
  5014. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.31.0"
  5015. },
  5016. "funding": [
  5017. {
  5018. "url": "https://symfony.com/sponsor",
  5019. "type": "custom"
  5020. },
  5021. {
  5022. "url": "https://github.com/fabpot",
  5023. "type": "github"
  5024. },
  5025. {
  5026. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5027. "type": "tidelift"
  5028. }
  5029. ],
  5030. "time": "2024-09-09T11:45:10+00:00"
  5031. },
  5032. {
  5033. "name": "symfony/polyfill-intl-idn",
  5034. "version": "v1.31.0",
  5035. "source": {
  5036. "type": "git",
  5037. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5038. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  5039. },
  5040. "dist": {
  5041. "type": "zip",
  5042. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  5043. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  5044. "shasum": ""
  5045. },
  5046. "require": {
  5047. "php": ">=7.2",
  5048. "symfony/polyfill-intl-normalizer": "^1.10"
  5049. },
  5050. "suggest": {
  5051. "ext-intl": "For best performance"
  5052. },
  5053. "type": "library",
  5054. "extra": {
  5055. "thanks": {
  5056. "name": "symfony/polyfill",
  5057. "url": "https://github.com/symfony/polyfill"
  5058. }
  5059. },
  5060. "autoload": {
  5061. "files": [
  5062. "bootstrap.php"
  5063. ],
  5064. "psr-4": {
  5065. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5066. }
  5067. },
  5068. "notification-url": "https://packagist.org/downloads/",
  5069. "license": [
  5070. "MIT"
  5071. ],
  5072. "authors": [
  5073. {
  5074. "name": "Laurent Bassin",
  5075. "email": "laurent@bassin.info"
  5076. },
  5077. {
  5078. "name": "Trevor Rowbotham",
  5079. "email": "trevor.rowbotham@pm.me"
  5080. },
  5081. {
  5082. "name": "Symfony Community",
  5083. "homepage": "https://symfony.com/contributors"
  5084. }
  5085. ],
  5086. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5087. "homepage": "https://symfony.com",
  5088. "keywords": [
  5089. "compatibility",
  5090. "idn",
  5091. "intl",
  5092. "polyfill",
  5093. "portable",
  5094. "shim"
  5095. ],
  5096. "support": {
  5097. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  5098. },
  5099. "funding": [
  5100. {
  5101. "url": "https://symfony.com/sponsor",
  5102. "type": "custom"
  5103. },
  5104. {
  5105. "url": "https://github.com/fabpot",
  5106. "type": "github"
  5107. },
  5108. {
  5109. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5110. "type": "tidelift"
  5111. }
  5112. ],
  5113. "time": "2024-09-09T11:45:10+00:00"
  5114. },
  5115. {
  5116. "name": "symfony/polyfill-intl-normalizer",
  5117. "version": "v1.31.0",
  5118. "source": {
  5119. "type": "git",
  5120. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5121. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5122. },
  5123. "dist": {
  5124. "type": "zip",
  5125. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5126. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5127. "shasum": ""
  5128. },
  5129. "require": {
  5130. "php": ">=7.2"
  5131. },
  5132. "suggest": {
  5133. "ext-intl": "For best performance"
  5134. },
  5135. "type": "library",
  5136. "extra": {
  5137. "thanks": {
  5138. "name": "symfony/polyfill",
  5139. "url": "https://github.com/symfony/polyfill"
  5140. }
  5141. },
  5142. "autoload": {
  5143. "files": [
  5144. "bootstrap.php"
  5145. ],
  5146. "psr-4": {
  5147. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5148. },
  5149. "classmap": [
  5150. "Resources/stubs"
  5151. ]
  5152. },
  5153. "notification-url": "https://packagist.org/downloads/",
  5154. "license": [
  5155. "MIT"
  5156. ],
  5157. "authors": [
  5158. {
  5159. "name": "Nicolas Grekas",
  5160. "email": "p@tchwork.com"
  5161. },
  5162. {
  5163. "name": "Symfony Community",
  5164. "homepage": "https://symfony.com/contributors"
  5165. }
  5166. ],
  5167. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5168. "homepage": "https://symfony.com",
  5169. "keywords": [
  5170. "compatibility",
  5171. "intl",
  5172. "normalizer",
  5173. "polyfill",
  5174. "portable",
  5175. "shim"
  5176. ],
  5177. "support": {
  5178. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  5179. },
  5180. "funding": [
  5181. {
  5182. "url": "https://symfony.com/sponsor",
  5183. "type": "custom"
  5184. },
  5185. {
  5186. "url": "https://github.com/fabpot",
  5187. "type": "github"
  5188. },
  5189. {
  5190. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5191. "type": "tidelift"
  5192. }
  5193. ],
  5194. "time": "2024-09-09T11:45:10+00:00"
  5195. },
  5196. {
  5197. "name": "symfony/polyfill-mbstring",
  5198. "version": "v1.31.0",
  5199. "source": {
  5200. "type": "git",
  5201. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5202. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  5203. },
  5204. "dist": {
  5205. "type": "zip",
  5206. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5207. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5208. "shasum": ""
  5209. },
  5210. "require": {
  5211. "php": ">=7.2"
  5212. },
  5213. "provide": {
  5214. "ext-mbstring": "*"
  5215. },
  5216. "suggest": {
  5217. "ext-mbstring": "For best performance"
  5218. },
  5219. "type": "library",
  5220. "extra": {
  5221. "thanks": {
  5222. "name": "symfony/polyfill",
  5223. "url": "https://github.com/symfony/polyfill"
  5224. }
  5225. },
  5226. "autoload": {
  5227. "files": [
  5228. "bootstrap.php"
  5229. ],
  5230. "psr-4": {
  5231. "Symfony\\Polyfill\\Mbstring\\": ""
  5232. }
  5233. },
  5234. "notification-url": "https://packagist.org/downloads/",
  5235. "license": [
  5236. "MIT"
  5237. ],
  5238. "authors": [
  5239. {
  5240. "name": "Nicolas Grekas",
  5241. "email": "p@tchwork.com"
  5242. },
  5243. {
  5244. "name": "Symfony Community",
  5245. "homepage": "https://symfony.com/contributors"
  5246. }
  5247. ],
  5248. "description": "Symfony polyfill for the Mbstring extension",
  5249. "homepage": "https://symfony.com",
  5250. "keywords": [
  5251. "compatibility",
  5252. "mbstring",
  5253. "polyfill",
  5254. "portable",
  5255. "shim"
  5256. ],
  5257. "support": {
  5258. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  5259. },
  5260. "funding": [
  5261. {
  5262. "url": "https://symfony.com/sponsor",
  5263. "type": "custom"
  5264. },
  5265. {
  5266. "url": "https://github.com/fabpot",
  5267. "type": "github"
  5268. },
  5269. {
  5270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5271. "type": "tidelift"
  5272. }
  5273. ],
  5274. "time": "2024-09-09T11:45:10+00:00"
  5275. },
  5276. {
  5277. "name": "symfony/polyfill-php83",
  5278. "version": "v1.31.0",
  5279. "source": {
  5280. "type": "git",
  5281. "url": "https://github.com/symfony/polyfill-php83.git",
  5282. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  5283. },
  5284. "dist": {
  5285. "type": "zip",
  5286. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  5287. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5288. "shasum": ""
  5289. },
  5290. "require": {
  5291. "php": ">=7.2"
  5292. },
  5293. "type": "library",
  5294. "extra": {
  5295. "thanks": {
  5296. "name": "symfony/polyfill",
  5297. "url": "https://github.com/symfony/polyfill"
  5298. }
  5299. },
  5300. "autoload": {
  5301. "files": [
  5302. "bootstrap.php"
  5303. ],
  5304. "psr-4": {
  5305. "Symfony\\Polyfill\\Php83\\": ""
  5306. },
  5307. "classmap": [
  5308. "Resources/stubs"
  5309. ]
  5310. },
  5311. "notification-url": "https://packagist.org/downloads/",
  5312. "license": [
  5313. "MIT"
  5314. ],
  5315. "authors": [
  5316. {
  5317. "name": "Nicolas Grekas",
  5318. "email": "p@tchwork.com"
  5319. },
  5320. {
  5321. "name": "Symfony Community",
  5322. "homepage": "https://symfony.com/contributors"
  5323. }
  5324. ],
  5325. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5326. "homepage": "https://symfony.com",
  5327. "keywords": [
  5328. "compatibility",
  5329. "polyfill",
  5330. "portable",
  5331. "shim"
  5332. ],
  5333. "support": {
  5334. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  5335. },
  5336. "funding": [
  5337. {
  5338. "url": "https://symfony.com/sponsor",
  5339. "type": "custom"
  5340. },
  5341. {
  5342. "url": "https://github.com/fabpot",
  5343. "type": "github"
  5344. },
  5345. {
  5346. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5347. "type": "tidelift"
  5348. }
  5349. ],
  5350. "time": "2024-09-09T11:45:10+00:00"
  5351. },
  5352. {
  5353. "name": "symfony/process",
  5354. "version": "v7.1.5",
  5355. "source": {
  5356. "type": "git",
  5357. "url": "https://github.com/symfony/process.git",
  5358. "reference": "5c03ee6369281177f07f7c68252a280beccba847"
  5359. },
  5360. "dist": {
  5361. "type": "zip",
  5362. "url": "https://api.github.com/repos/symfony/process/zipball/5c03ee6369281177f07f7c68252a280beccba847",
  5363. "reference": "5c03ee6369281177f07f7c68252a280beccba847",
  5364. "shasum": ""
  5365. },
  5366. "require": {
  5367. "php": ">=8.2"
  5368. },
  5369. "type": "library",
  5370. "autoload": {
  5371. "psr-4": {
  5372. "Symfony\\Component\\Process\\": ""
  5373. },
  5374. "exclude-from-classmap": [
  5375. "/Tests/"
  5376. ]
  5377. },
  5378. "notification-url": "https://packagist.org/downloads/",
  5379. "license": [
  5380. "MIT"
  5381. ],
  5382. "authors": [
  5383. {
  5384. "name": "Fabien Potencier",
  5385. "email": "fabien@symfony.com"
  5386. },
  5387. {
  5388. "name": "Symfony Community",
  5389. "homepage": "https://symfony.com/contributors"
  5390. }
  5391. ],
  5392. "description": "Executes commands in sub-processes",
  5393. "homepage": "https://symfony.com",
  5394. "support": {
  5395. "source": "https://github.com/symfony/process/tree/v7.1.5"
  5396. },
  5397. "funding": [
  5398. {
  5399. "url": "https://symfony.com/sponsor",
  5400. "type": "custom"
  5401. },
  5402. {
  5403. "url": "https://github.com/fabpot",
  5404. "type": "github"
  5405. },
  5406. {
  5407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5408. "type": "tidelift"
  5409. }
  5410. ],
  5411. "time": "2024-09-19T21:48:23+00:00"
  5412. },
  5413. {
  5414. "name": "symfony/property-access",
  5415. "version": "v7.1.4",
  5416. "source": {
  5417. "type": "git",
  5418. "url": "https://github.com/symfony/property-access.git",
  5419. "reference": "6c709f97103355016e5782d0622437ae381012ad"
  5420. },
  5421. "dist": {
  5422. "type": "zip",
  5423. "url": "https://api.github.com/repos/symfony/property-access/zipball/6c709f97103355016e5782d0622437ae381012ad",
  5424. "reference": "6c709f97103355016e5782d0622437ae381012ad",
  5425. "shasum": ""
  5426. },
  5427. "require": {
  5428. "php": ">=8.2",
  5429. "symfony/property-info": "^6.4|^7.0"
  5430. },
  5431. "require-dev": {
  5432. "symfony/cache": "^6.4|^7.0"
  5433. },
  5434. "type": "library",
  5435. "autoload": {
  5436. "psr-4": {
  5437. "Symfony\\Component\\PropertyAccess\\": ""
  5438. },
  5439. "exclude-from-classmap": [
  5440. "/Tests/"
  5441. ]
  5442. },
  5443. "notification-url": "https://packagist.org/downloads/",
  5444. "license": [
  5445. "MIT"
  5446. ],
  5447. "authors": [
  5448. {
  5449. "name": "Fabien Potencier",
  5450. "email": "fabien@symfony.com"
  5451. },
  5452. {
  5453. "name": "Symfony Community",
  5454. "homepage": "https://symfony.com/contributors"
  5455. }
  5456. ],
  5457. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5458. "homepage": "https://symfony.com",
  5459. "keywords": [
  5460. "access",
  5461. "array",
  5462. "extraction",
  5463. "index",
  5464. "injection",
  5465. "object",
  5466. "property",
  5467. "property-path",
  5468. "reflection"
  5469. ],
  5470. "support": {
  5471. "source": "https://github.com/symfony/property-access/tree/v7.1.4"
  5472. },
  5473. "funding": [
  5474. {
  5475. "url": "https://symfony.com/sponsor",
  5476. "type": "custom"
  5477. },
  5478. {
  5479. "url": "https://github.com/fabpot",
  5480. "type": "github"
  5481. },
  5482. {
  5483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5484. "type": "tidelift"
  5485. }
  5486. ],
  5487. "time": "2024-08-30T16:12:47+00:00"
  5488. },
  5489. {
  5490. "name": "symfony/property-info",
  5491. "version": "v7.1.3",
  5492. "source": {
  5493. "type": "git",
  5494. "url": "https://github.com/symfony/property-info.git",
  5495. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b"
  5496. },
  5497. "dist": {
  5498. "type": "zip",
  5499. "url": "https://api.github.com/repos/symfony/property-info/zipball/88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  5500. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  5501. "shasum": ""
  5502. },
  5503. "require": {
  5504. "php": ">=8.2",
  5505. "symfony/string": "^6.4|^7.0",
  5506. "symfony/type-info": "^7.1"
  5507. },
  5508. "conflict": {
  5509. "phpdocumentor/reflection-docblock": "<5.2",
  5510. "phpdocumentor/type-resolver": "<1.5.1",
  5511. "symfony/dependency-injection": "<6.4",
  5512. "symfony/serializer": "<6.4"
  5513. },
  5514. "require-dev": {
  5515. "phpdocumentor/reflection-docblock": "^5.2",
  5516. "phpstan/phpdoc-parser": "^1.0",
  5517. "symfony/cache": "^6.4|^7.0",
  5518. "symfony/dependency-injection": "^6.4|^7.0",
  5519. "symfony/serializer": "^6.4|^7.0"
  5520. },
  5521. "type": "library",
  5522. "autoload": {
  5523. "psr-4": {
  5524. "Symfony\\Component\\PropertyInfo\\": ""
  5525. },
  5526. "exclude-from-classmap": [
  5527. "/Tests/"
  5528. ]
  5529. },
  5530. "notification-url": "https://packagist.org/downloads/",
  5531. "license": [
  5532. "MIT"
  5533. ],
  5534. "authors": [
  5535. {
  5536. "name": "Kévin Dunglas",
  5537. "email": "dunglas@gmail.com"
  5538. },
  5539. {
  5540. "name": "Symfony Community",
  5541. "homepage": "https://symfony.com/contributors"
  5542. }
  5543. ],
  5544. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5545. "homepage": "https://symfony.com",
  5546. "keywords": [
  5547. "doctrine",
  5548. "phpdoc",
  5549. "property",
  5550. "symfony",
  5551. "type",
  5552. "validator"
  5553. ],
  5554. "support": {
  5555. "source": "https://github.com/symfony/property-info/tree/v7.1.3"
  5556. },
  5557. "funding": [
  5558. {
  5559. "url": "https://symfony.com/sponsor",
  5560. "type": "custom"
  5561. },
  5562. {
  5563. "url": "https://github.com/fabpot",
  5564. "type": "github"
  5565. },
  5566. {
  5567. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5568. "type": "tidelift"
  5569. }
  5570. ],
  5571. "time": "2024-07-26T07:36:36+00:00"
  5572. },
  5573. {
  5574. "name": "symfony/routing",
  5575. "version": "v7.1.4",
  5576. "source": {
  5577. "type": "git",
  5578. "url": "https://github.com/symfony/routing.git",
  5579. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7"
  5580. },
  5581. "dist": {
  5582. "type": "zip",
  5583. "url": "https://api.github.com/repos/symfony/routing/zipball/1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  5584. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  5585. "shasum": ""
  5586. },
  5587. "require": {
  5588. "php": ">=8.2",
  5589. "symfony/deprecation-contracts": "^2.5|^3"
  5590. },
  5591. "conflict": {
  5592. "symfony/config": "<6.4",
  5593. "symfony/dependency-injection": "<6.4",
  5594. "symfony/yaml": "<6.4"
  5595. },
  5596. "require-dev": {
  5597. "psr/log": "^1|^2|^3",
  5598. "symfony/config": "^6.4|^7.0",
  5599. "symfony/dependency-injection": "^6.4|^7.0",
  5600. "symfony/expression-language": "^6.4|^7.0",
  5601. "symfony/http-foundation": "^6.4|^7.0",
  5602. "symfony/yaml": "^6.4|^7.0"
  5603. },
  5604. "type": "library",
  5605. "autoload": {
  5606. "psr-4": {
  5607. "Symfony\\Component\\Routing\\": ""
  5608. },
  5609. "exclude-from-classmap": [
  5610. "/Tests/"
  5611. ]
  5612. },
  5613. "notification-url": "https://packagist.org/downloads/",
  5614. "license": [
  5615. "MIT"
  5616. ],
  5617. "authors": [
  5618. {
  5619. "name": "Fabien Potencier",
  5620. "email": "fabien@symfony.com"
  5621. },
  5622. {
  5623. "name": "Symfony Community",
  5624. "homepage": "https://symfony.com/contributors"
  5625. }
  5626. ],
  5627. "description": "Maps an HTTP request to a set of configuration variables",
  5628. "homepage": "https://symfony.com",
  5629. "keywords": [
  5630. "router",
  5631. "routing",
  5632. "uri",
  5633. "url"
  5634. ],
  5635. "support": {
  5636. "source": "https://github.com/symfony/routing/tree/v7.1.4"
  5637. },
  5638. "funding": [
  5639. {
  5640. "url": "https://symfony.com/sponsor",
  5641. "type": "custom"
  5642. },
  5643. {
  5644. "url": "https://github.com/fabpot",
  5645. "type": "github"
  5646. },
  5647. {
  5648. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5649. "type": "tidelift"
  5650. }
  5651. ],
  5652. "time": "2024-08-29T08:16:25+00:00"
  5653. },
  5654. {
  5655. "name": "symfony/runtime",
  5656. "version": "v7.1.1",
  5657. "source": {
  5658. "type": "git",
  5659. "url": "https://github.com/symfony/runtime.git",
  5660. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6"
  5661. },
  5662. "dist": {
  5663. "type": "zip",
  5664. "url": "https://api.github.com/repos/symfony/runtime/zipball/ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  5665. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  5666. "shasum": ""
  5667. },
  5668. "require": {
  5669. "composer-plugin-api": "^1.0|^2.0",
  5670. "php": ">=8.2"
  5671. },
  5672. "conflict": {
  5673. "symfony/dotenv": "<6.4"
  5674. },
  5675. "require-dev": {
  5676. "composer/composer": "^2.6",
  5677. "symfony/console": "^6.4|^7.0",
  5678. "symfony/dotenv": "^6.4|^7.0",
  5679. "symfony/http-foundation": "^6.4|^7.0",
  5680. "symfony/http-kernel": "^6.4|^7.0"
  5681. },
  5682. "type": "composer-plugin",
  5683. "extra": {
  5684. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  5685. },
  5686. "autoload": {
  5687. "psr-4": {
  5688. "Symfony\\Component\\Runtime\\": "",
  5689. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  5690. },
  5691. "exclude-from-classmap": [
  5692. "/Tests/"
  5693. ]
  5694. },
  5695. "notification-url": "https://packagist.org/downloads/",
  5696. "license": [
  5697. "MIT"
  5698. ],
  5699. "authors": [
  5700. {
  5701. "name": "Nicolas Grekas",
  5702. "email": "p@tchwork.com"
  5703. },
  5704. {
  5705. "name": "Symfony Community",
  5706. "homepage": "https://symfony.com/contributors"
  5707. }
  5708. ],
  5709. "description": "Enables decoupling PHP applications from global state",
  5710. "homepage": "https://symfony.com",
  5711. "keywords": [
  5712. "runtime"
  5713. ],
  5714. "support": {
  5715. "source": "https://github.com/symfony/runtime/tree/v7.1.1"
  5716. },
  5717. "funding": [
  5718. {
  5719. "url": "https://symfony.com/sponsor",
  5720. "type": "custom"
  5721. },
  5722. {
  5723. "url": "https://github.com/fabpot",
  5724. "type": "github"
  5725. },
  5726. {
  5727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5728. "type": "tidelift"
  5729. }
  5730. ],
  5731. "time": "2024-05-31T14:55:39+00:00"
  5732. },
  5733. {
  5734. "name": "symfony/security-bundle",
  5735. "version": "v7.1.4",
  5736. "source": {
  5737. "type": "git",
  5738. "url": "https://github.com/symfony/security-bundle.git",
  5739. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01"
  5740. },
  5741. "dist": {
  5742. "type": "zip",
  5743. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/5e10107856ff64d477c61fed7bcbb8a16125ea01",
  5744. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01",
  5745. "shasum": ""
  5746. },
  5747. "require": {
  5748. "composer-runtime-api": ">=2.1",
  5749. "ext-xml": "*",
  5750. "php": ">=8.2",
  5751. "symfony/clock": "^6.4|^7.0",
  5752. "symfony/config": "^6.4|^7.0",
  5753. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  5754. "symfony/event-dispatcher": "^6.4|^7.0",
  5755. "symfony/http-foundation": "^6.4|^7.0",
  5756. "symfony/http-kernel": "^6.4|^7.0",
  5757. "symfony/password-hasher": "^6.4|^7.0",
  5758. "symfony/security-core": "^6.4|^7.0",
  5759. "symfony/security-csrf": "^6.4|^7.0",
  5760. "symfony/security-http": "^7.1",
  5761. "symfony/service-contracts": "^2.5|^3"
  5762. },
  5763. "conflict": {
  5764. "symfony/browser-kit": "<6.4",
  5765. "symfony/console": "<6.4",
  5766. "symfony/framework-bundle": "<6.4",
  5767. "symfony/http-client": "<6.4",
  5768. "symfony/ldap": "<6.4",
  5769. "symfony/serializer": "<6.4",
  5770. "symfony/twig-bundle": "<6.4",
  5771. "symfony/validator": "<6.4"
  5772. },
  5773. "require-dev": {
  5774. "symfony/asset": "^6.4|^7.0",
  5775. "symfony/browser-kit": "^6.4|^7.0",
  5776. "symfony/console": "^6.4|^7.0",
  5777. "symfony/css-selector": "^6.4|^7.0",
  5778. "symfony/dom-crawler": "^6.4|^7.0",
  5779. "symfony/expression-language": "^6.4|^7.0",
  5780. "symfony/form": "^6.4|^7.0",
  5781. "symfony/framework-bundle": "^6.4|^7.0",
  5782. "symfony/http-client": "^6.4|^7.0",
  5783. "symfony/ldap": "^6.4|^7.0",
  5784. "symfony/process": "^6.4|^7.0",
  5785. "symfony/rate-limiter": "^6.4|^7.0",
  5786. "symfony/serializer": "^6.4|^7.0",
  5787. "symfony/translation": "^6.4|^7.0",
  5788. "symfony/twig-bridge": "^6.4|^7.0",
  5789. "symfony/twig-bundle": "^6.4|^7.0",
  5790. "symfony/validator": "^6.4|^7.0",
  5791. "symfony/yaml": "^6.4|^7.0",
  5792. "twig/twig": "^3.0.4",
  5793. "web-token/jwt-library": "^3.3.2|^4.0"
  5794. },
  5795. "type": "symfony-bundle",
  5796. "autoload": {
  5797. "psr-4": {
  5798. "Symfony\\Bundle\\SecurityBundle\\": ""
  5799. },
  5800. "exclude-from-classmap": [
  5801. "/Tests/"
  5802. ]
  5803. },
  5804. "notification-url": "https://packagist.org/downloads/",
  5805. "license": [
  5806. "MIT"
  5807. ],
  5808. "authors": [
  5809. {
  5810. "name": "Fabien Potencier",
  5811. "email": "fabien@symfony.com"
  5812. },
  5813. {
  5814. "name": "Symfony Community",
  5815. "homepage": "https://symfony.com/contributors"
  5816. }
  5817. ],
  5818. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  5819. "homepage": "https://symfony.com",
  5820. "support": {
  5821. "source": "https://github.com/symfony/security-bundle/tree/v7.1.4"
  5822. },
  5823. "funding": [
  5824. {
  5825. "url": "https://symfony.com/sponsor",
  5826. "type": "custom"
  5827. },
  5828. {
  5829. "url": "https://github.com/fabpot",
  5830. "type": "github"
  5831. },
  5832. {
  5833. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5834. "type": "tidelift"
  5835. }
  5836. ],
  5837. "time": "2024-08-20T11:38:55+00:00"
  5838. },
  5839. {
  5840. "name": "symfony/security-core",
  5841. "version": "v7.1.5",
  5842. "source": {
  5843. "type": "git",
  5844. "url": "https://github.com/symfony/security-core.git",
  5845. "reference": "dbeb09f0b786590d126c0da297e2320e66ec353b"
  5846. },
  5847. "dist": {
  5848. "type": "zip",
  5849. "url": "https://api.github.com/repos/symfony/security-core/zipball/dbeb09f0b786590d126c0da297e2320e66ec353b",
  5850. "reference": "dbeb09f0b786590d126c0da297e2320e66ec353b",
  5851. "shasum": ""
  5852. },
  5853. "require": {
  5854. "php": ">=8.2",
  5855. "symfony/event-dispatcher-contracts": "^2.5|^3",
  5856. "symfony/password-hasher": "^6.4|^7.0",
  5857. "symfony/service-contracts": "^2.5|^3"
  5858. },
  5859. "conflict": {
  5860. "symfony/dependency-injection": "<6.4",
  5861. "symfony/event-dispatcher": "<6.4",
  5862. "symfony/http-foundation": "<6.4",
  5863. "symfony/ldap": "<6.4",
  5864. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  5865. "symfony/validator": "<6.4"
  5866. },
  5867. "require-dev": {
  5868. "psr/cache": "^1.0|^2.0|^3.0",
  5869. "psr/container": "^1.1|^2.0",
  5870. "psr/log": "^1|^2|^3",
  5871. "symfony/cache": "^6.4|^7.0",
  5872. "symfony/dependency-injection": "^6.4|^7.0",
  5873. "symfony/event-dispatcher": "^6.4|^7.0",
  5874. "symfony/expression-language": "^6.4|^7.0",
  5875. "symfony/http-foundation": "^6.4|^7.0",
  5876. "symfony/ldap": "^6.4|^7.0",
  5877. "symfony/string": "^6.4|^7.0",
  5878. "symfony/translation": "^6.4.3|^7.0.3",
  5879. "symfony/validator": "^6.4|^7.0"
  5880. },
  5881. "type": "library",
  5882. "autoload": {
  5883. "psr-4": {
  5884. "Symfony\\Component\\Security\\Core\\": ""
  5885. },
  5886. "exclude-from-classmap": [
  5887. "/Tests/"
  5888. ]
  5889. },
  5890. "notification-url": "https://packagist.org/downloads/",
  5891. "license": [
  5892. "MIT"
  5893. ],
  5894. "authors": [
  5895. {
  5896. "name": "Fabien Potencier",
  5897. "email": "fabien@symfony.com"
  5898. },
  5899. {
  5900. "name": "Symfony Community",
  5901. "homepage": "https://symfony.com/contributors"
  5902. }
  5903. ],
  5904. "description": "Symfony Security Component - Core Library",
  5905. "homepage": "https://symfony.com",
  5906. "support": {
  5907. "source": "https://github.com/symfony/security-core/tree/v7.1.5"
  5908. },
  5909. "funding": [
  5910. {
  5911. "url": "https://symfony.com/sponsor",
  5912. "type": "custom"
  5913. },
  5914. {
  5915. "url": "https://github.com/fabpot",
  5916. "type": "github"
  5917. },
  5918. {
  5919. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5920. "type": "tidelift"
  5921. }
  5922. ],
  5923. "time": "2024-09-20T13:35:23+00:00"
  5924. },
  5925. {
  5926. "name": "symfony/security-csrf",
  5927. "version": "v7.1.1",
  5928. "source": {
  5929. "type": "git",
  5930. "url": "https://github.com/symfony/security-csrf.git",
  5931. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21"
  5932. },
  5933. "dist": {
  5934. "type": "zip",
  5935. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  5936. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  5937. "shasum": ""
  5938. },
  5939. "require": {
  5940. "php": ">=8.2",
  5941. "symfony/security-core": "^6.4|^7.0"
  5942. },
  5943. "conflict": {
  5944. "symfony/http-foundation": "<6.4"
  5945. },
  5946. "require-dev": {
  5947. "symfony/http-foundation": "^6.4|^7.0"
  5948. },
  5949. "type": "library",
  5950. "autoload": {
  5951. "psr-4": {
  5952. "Symfony\\Component\\Security\\Csrf\\": ""
  5953. },
  5954. "exclude-from-classmap": [
  5955. "/Tests/"
  5956. ]
  5957. },
  5958. "notification-url": "https://packagist.org/downloads/",
  5959. "license": [
  5960. "MIT"
  5961. ],
  5962. "authors": [
  5963. {
  5964. "name": "Fabien Potencier",
  5965. "email": "fabien@symfony.com"
  5966. },
  5967. {
  5968. "name": "Symfony Community",
  5969. "homepage": "https://symfony.com/contributors"
  5970. }
  5971. ],
  5972. "description": "Symfony Security Component - CSRF Library",
  5973. "homepage": "https://symfony.com",
  5974. "support": {
  5975. "source": "https://github.com/symfony/security-csrf/tree/v7.1.1"
  5976. },
  5977. "funding": [
  5978. {
  5979. "url": "https://symfony.com/sponsor",
  5980. "type": "custom"
  5981. },
  5982. {
  5983. "url": "https://github.com/fabpot",
  5984. "type": "github"
  5985. },
  5986. {
  5987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5988. "type": "tidelift"
  5989. }
  5990. ],
  5991. "time": "2024-05-31T14:57:53+00:00"
  5992. },
  5993. {
  5994. "name": "symfony/security-http",
  5995. "version": "v7.1.5",
  5996. "source": {
  5997. "type": "git",
  5998. "url": "https://github.com/symfony/security-http.git",
  5999. "reference": "d47c013bccf4b81a1496826d42dfa05da549131a"
  6000. },
  6001. "dist": {
  6002. "type": "zip",
  6003. "url": "https://api.github.com/repos/symfony/security-http/zipball/d47c013bccf4b81a1496826d42dfa05da549131a",
  6004. "reference": "d47c013bccf4b81a1496826d42dfa05da549131a",
  6005. "shasum": ""
  6006. },
  6007. "require": {
  6008. "php": ">=8.2",
  6009. "symfony/deprecation-contracts": "^2.5|^3",
  6010. "symfony/http-foundation": "^6.4|^7.0",
  6011. "symfony/http-kernel": "^6.4|^7.0",
  6012. "symfony/polyfill-mbstring": "~1.0",
  6013. "symfony/property-access": "^6.4|^7.0",
  6014. "symfony/security-core": "^6.4|^7.0",
  6015. "symfony/service-contracts": "^2.5|^3"
  6016. },
  6017. "conflict": {
  6018. "symfony/clock": "<6.4",
  6019. "symfony/event-dispatcher": "<6.4",
  6020. "symfony/http-client-contracts": "<3.0",
  6021. "symfony/security-bundle": "<6.4",
  6022. "symfony/security-csrf": "<6.4"
  6023. },
  6024. "require-dev": {
  6025. "psr/log": "^1|^2|^3",
  6026. "symfony/cache": "^6.4|^7.0",
  6027. "symfony/clock": "^6.4|^7.0",
  6028. "symfony/expression-language": "^6.4|^7.0",
  6029. "symfony/http-client": "^6.4|^7.0",
  6030. "symfony/http-client-contracts": "^3.0",
  6031. "symfony/rate-limiter": "^6.4|^7.0",
  6032. "symfony/routing": "^6.4|^7.0",
  6033. "symfony/security-csrf": "^6.4|^7.0",
  6034. "symfony/translation": "^6.4|^7.0",
  6035. "web-token/jwt-library": "^3.3.2|^4.0"
  6036. },
  6037. "type": "library",
  6038. "autoload": {
  6039. "psr-4": {
  6040. "Symfony\\Component\\Security\\Http\\": ""
  6041. },
  6042. "exclude-from-classmap": [
  6043. "/Tests/"
  6044. ]
  6045. },
  6046. "notification-url": "https://packagist.org/downloads/",
  6047. "license": [
  6048. "MIT"
  6049. ],
  6050. "authors": [
  6051. {
  6052. "name": "Fabien Potencier",
  6053. "email": "fabien@symfony.com"
  6054. },
  6055. {
  6056. "name": "Symfony Community",
  6057. "homepage": "https://symfony.com/contributors"
  6058. }
  6059. ],
  6060. "description": "Symfony Security Component - HTTP Integration",
  6061. "homepage": "https://symfony.com",
  6062. "support": {
  6063. "source": "https://github.com/symfony/security-http/tree/v7.1.5"
  6064. },
  6065. "funding": [
  6066. {
  6067. "url": "https://symfony.com/sponsor",
  6068. "type": "custom"
  6069. },
  6070. {
  6071. "url": "https://github.com/fabpot",
  6072. "type": "github"
  6073. },
  6074. {
  6075. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6076. "type": "tidelift"
  6077. }
  6078. ],
  6079. "time": "2024-09-20T08:28:38+00:00"
  6080. },
  6081. {
  6082. "name": "symfony/serializer",
  6083. "version": "v7.1.5",
  6084. "source": {
  6085. "type": "git",
  6086. "url": "https://github.com/symfony/serializer.git",
  6087. "reference": "71d6e1f70f00752d1469d0f5e83b0a51716f288b"
  6088. },
  6089. "dist": {
  6090. "type": "zip",
  6091. "url": "https://api.github.com/repos/symfony/serializer/zipball/71d6e1f70f00752d1469d0f5e83b0a51716f288b",
  6092. "reference": "71d6e1f70f00752d1469d0f5e83b0a51716f288b",
  6093. "shasum": ""
  6094. },
  6095. "require": {
  6096. "php": ">=8.2",
  6097. "symfony/deprecation-contracts": "^2.5|^3",
  6098. "symfony/polyfill-ctype": "~1.8"
  6099. },
  6100. "conflict": {
  6101. "phpdocumentor/reflection-docblock": "<3.2.2",
  6102. "phpdocumentor/type-resolver": "<1.4.0",
  6103. "symfony/dependency-injection": "<6.4",
  6104. "symfony/property-access": "<6.4",
  6105. "symfony/property-info": "<6.4",
  6106. "symfony/type-info": "<7.1.5",
  6107. "symfony/uid": "<6.4",
  6108. "symfony/validator": "<6.4",
  6109. "symfony/yaml": "<6.4"
  6110. },
  6111. "require-dev": {
  6112. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6113. "phpstan/phpdoc-parser": "^1.0",
  6114. "seld/jsonlint": "^1.10",
  6115. "symfony/cache": "^6.4|^7.0",
  6116. "symfony/config": "^6.4|^7.0",
  6117. "symfony/console": "^6.4|^7.0",
  6118. "symfony/dependency-injection": "^6.4|^7.0",
  6119. "symfony/error-handler": "^6.4|^7.0",
  6120. "symfony/filesystem": "^6.4|^7.0",
  6121. "symfony/form": "^6.4|^7.0",
  6122. "symfony/http-foundation": "^6.4|^7.0",
  6123. "symfony/http-kernel": "^6.4|^7.0",
  6124. "symfony/messenger": "^6.4|^7.0",
  6125. "symfony/mime": "^6.4|^7.0",
  6126. "symfony/property-access": "^6.4|^7.0",
  6127. "symfony/property-info": "^6.4|^7.0",
  6128. "symfony/translation-contracts": "^2.5|^3",
  6129. "symfony/type-info": "^7.1.5",
  6130. "symfony/uid": "^6.4|^7.0",
  6131. "symfony/validator": "^6.4|^7.0",
  6132. "symfony/var-dumper": "^6.4|^7.0",
  6133. "symfony/var-exporter": "^6.4|^7.0",
  6134. "symfony/yaml": "^6.4|^7.0"
  6135. },
  6136. "type": "library",
  6137. "autoload": {
  6138. "psr-4": {
  6139. "Symfony\\Component\\Serializer\\": ""
  6140. },
  6141. "exclude-from-classmap": [
  6142. "/Tests/"
  6143. ]
  6144. },
  6145. "notification-url": "https://packagist.org/downloads/",
  6146. "license": [
  6147. "MIT"
  6148. ],
  6149. "authors": [
  6150. {
  6151. "name": "Fabien Potencier",
  6152. "email": "fabien@symfony.com"
  6153. },
  6154. {
  6155. "name": "Symfony Community",
  6156. "homepage": "https://symfony.com/contributors"
  6157. }
  6158. ],
  6159. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6160. "homepage": "https://symfony.com",
  6161. "support": {
  6162. "source": "https://github.com/symfony/serializer/tree/v7.1.5"
  6163. },
  6164. "funding": [
  6165. {
  6166. "url": "https://symfony.com/sponsor",
  6167. "type": "custom"
  6168. },
  6169. {
  6170. "url": "https://github.com/fabpot",
  6171. "type": "github"
  6172. },
  6173. {
  6174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6175. "type": "tidelift"
  6176. }
  6177. ],
  6178. "time": "2024-09-20T12:13:15+00:00"
  6179. },
  6180. {
  6181. "name": "symfony/service-contracts",
  6182. "version": "v3.5.0",
  6183. "source": {
  6184. "type": "git",
  6185. "url": "https://github.com/symfony/service-contracts.git",
  6186. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6187. },
  6188. "dist": {
  6189. "type": "zip",
  6190. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6191. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6192. "shasum": ""
  6193. },
  6194. "require": {
  6195. "php": ">=8.1",
  6196. "psr/container": "^1.1|^2.0",
  6197. "symfony/deprecation-contracts": "^2.5|^3"
  6198. },
  6199. "conflict": {
  6200. "ext-psr": "<1.1|>=2"
  6201. },
  6202. "type": "library",
  6203. "extra": {
  6204. "branch-alias": {
  6205. "dev-main": "3.5-dev"
  6206. },
  6207. "thanks": {
  6208. "name": "symfony/contracts",
  6209. "url": "https://github.com/symfony/contracts"
  6210. }
  6211. },
  6212. "autoload": {
  6213. "psr-4": {
  6214. "Symfony\\Contracts\\Service\\": ""
  6215. },
  6216. "exclude-from-classmap": [
  6217. "/Test/"
  6218. ]
  6219. },
  6220. "notification-url": "https://packagist.org/downloads/",
  6221. "license": [
  6222. "MIT"
  6223. ],
  6224. "authors": [
  6225. {
  6226. "name": "Nicolas Grekas",
  6227. "email": "p@tchwork.com"
  6228. },
  6229. {
  6230. "name": "Symfony Community",
  6231. "homepage": "https://symfony.com/contributors"
  6232. }
  6233. ],
  6234. "description": "Generic abstractions related to writing services",
  6235. "homepage": "https://symfony.com",
  6236. "keywords": [
  6237. "abstractions",
  6238. "contracts",
  6239. "decoupling",
  6240. "interfaces",
  6241. "interoperability",
  6242. "standards"
  6243. ],
  6244. "support": {
  6245. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6246. },
  6247. "funding": [
  6248. {
  6249. "url": "https://symfony.com/sponsor",
  6250. "type": "custom"
  6251. },
  6252. {
  6253. "url": "https://github.com/fabpot",
  6254. "type": "github"
  6255. },
  6256. {
  6257. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6258. "type": "tidelift"
  6259. }
  6260. ],
  6261. "time": "2024-04-18T09:32:20+00:00"
  6262. },
  6263. {
  6264. "name": "symfony/stimulus-bundle",
  6265. "version": "v2.21.0",
  6266. "source": {
  6267. "type": "git",
  6268. "url": "https://github.com/symfony/stimulus-bundle.git",
  6269. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48"
  6270. },
  6271. "dist": {
  6272. "type": "zip",
  6273. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/e5f7747b514865719e0990389ce35a9b71bebb48",
  6274. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48",
  6275. "shasum": ""
  6276. },
  6277. "require": {
  6278. "php": ">=8.1",
  6279. "symfony/config": "^5.4|^6.0|^7.0",
  6280. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6281. "symfony/deprecation-contracts": "^2.0|^3.0",
  6282. "symfony/finder": "^5.4|^6.0|^7.0",
  6283. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6284. "twig/twig": "^2.15.3|^3.8"
  6285. },
  6286. "require-dev": {
  6287. "symfony/asset-mapper": "^6.3|^7.0",
  6288. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6289. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6290. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6291. "zenstruck/browser": "^1.4"
  6292. },
  6293. "type": "symfony-bundle",
  6294. "autoload": {
  6295. "psr-4": {
  6296. "Symfony\\UX\\StimulusBundle\\": "src"
  6297. }
  6298. },
  6299. "notification-url": "https://packagist.org/downloads/",
  6300. "license": [
  6301. "MIT"
  6302. ],
  6303. "authors": [
  6304. {
  6305. "name": "Symfony Community",
  6306. "homepage": "https://symfony.com/contributors"
  6307. }
  6308. ],
  6309. "description": "Integration with your Symfony app & Stimulus!",
  6310. "keywords": [
  6311. "symfony-ux"
  6312. ],
  6313. "support": {
  6314. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.21.0"
  6315. },
  6316. "funding": [
  6317. {
  6318. "url": "https://symfony.com/sponsor",
  6319. "type": "custom"
  6320. },
  6321. {
  6322. "url": "https://github.com/fabpot",
  6323. "type": "github"
  6324. },
  6325. {
  6326. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6327. "type": "tidelift"
  6328. }
  6329. ],
  6330. "time": "2024-10-05T22:11:16+00:00"
  6331. },
  6332. {
  6333. "name": "symfony/stopwatch",
  6334. "version": "v7.1.1",
  6335. "source": {
  6336. "type": "git",
  6337. "url": "https://github.com/symfony/stopwatch.git",
  6338. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
  6339. },
  6340. "dist": {
  6341. "type": "zip",
  6342. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  6343. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  6344. "shasum": ""
  6345. },
  6346. "require": {
  6347. "php": ">=8.2",
  6348. "symfony/service-contracts": "^2.5|^3"
  6349. },
  6350. "type": "library",
  6351. "autoload": {
  6352. "psr-4": {
  6353. "Symfony\\Component\\Stopwatch\\": ""
  6354. },
  6355. "exclude-from-classmap": [
  6356. "/Tests/"
  6357. ]
  6358. },
  6359. "notification-url": "https://packagist.org/downloads/",
  6360. "license": [
  6361. "MIT"
  6362. ],
  6363. "authors": [
  6364. {
  6365. "name": "Fabien Potencier",
  6366. "email": "fabien@symfony.com"
  6367. },
  6368. {
  6369. "name": "Symfony Community",
  6370. "homepage": "https://symfony.com/contributors"
  6371. }
  6372. ],
  6373. "description": "Provides a way to profile code",
  6374. "homepage": "https://symfony.com",
  6375. "support": {
  6376. "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
  6377. },
  6378. "funding": [
  6379. {
  6380. "url": "https://symfony.com/sponsor",
  6381. "type": "custom"
  6382. },
  6383. {
  6384. "url": "https://github.com/fabpot",
  6385. "type": "github"
  6386. },
  6387. {
  6388. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6389. "type": "tidelift"
  6390. }
  6391. ],
  6392. "time": "2024-05-31T14:57:53+00:00"
  6393. },
  6394. {
  6395. "name": "symfony/string",
  6396. "version": "v7.1.5",
  6397. "source": {
  6398. "type": "git",
  6399. "url": "https://github.com/symfony/string.git",
  6400. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306"
  6401. },
  6402. "dist": {
  6403. "type": "zip",
  6404. "url": "https://api.github.com/repos/symfony/string/zipball/d66f9c343fa894ec2037cc928381df90a7ad4306",
  6405. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306",
  6406. "shasum": ""
  6407. },
  6408. "require": {
  6409. "php": ">=8.2",
  6410. "symfony/polyfill-ctype": "~1.8",
  6411. "symfony/polyfill-intl-grapheme": "~1.0",
  6412. "symfony/polyfill-intl-normalizer": "~1.0",
  6413. "symfony/polyfill-mbstring": "~1.0"
  6414. },
  6415. "conflict": {
  6416. "symfony/translation-contracts": "<2.5"
  6417. },
  6418. "require-dev": {
  6419. "symfony/emoji": "^7.1",
  6420. "symfony/error-handler": "^6.4|^7.0",
  6421. "symfony/http-client": "^6.4|^7.0",
  6422. "symfony/intl": "^6.4|^7.0",
  6423. "symfony/translation-contracts": "^2.5|^3.0",
  6424. "symfony/var-exporter": "^6.4|^7.0"
  6425. },
  6426. "type": "library",
  6427. "autoload": {
  6428. "files": [
  6429. "Resources/functions.php"
  6430. ],
  6431. "psr-4": {
  6432. "Symfony\\Component\\String\\": ""
  6433. },
  6434. "exclude-from-classmap": [
  6435. "/Tests/"
  6436. ]
  6437. },
  6438. "notification-url": "https://packagist.org/downloads/",
  6439. "license": [
  6440. "MIT"
  6441. ],
  6442. "authors": [
  6443. {
  6444. "name": "Nicolas Grekas",
  6445. "email": "p@tchwork.com"
  6446. },
  6447. {
  6448. "name": "Symfony Community",
  6449. "homepage": "https://symfony.com/contributors"
  6450. }
  6451. ],
  6452. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6453. "homepage": "https://symfony.com",
  6454. "keywords": [
  6455. "grapheme",
  6456. "i18n",
  6457. "string",
  6458. "unicode",
  6459. "utf-8",
  6460. "utf8"
  6461. ],
  6462. "support": {
  6463. "source": "https://github.com/symfony/string/tree/v7.1.5"
  6464. },
  6465. "funding": [
  6466. {
  6467. "url": "https://symfony.com/sponsor",
  6468. "type": "custom"
  6469. },
  6470. {
  6471. "url": "https://github.com/fabpot",
  6472. "type": "github"
  6473. },
  6474. {
  6475. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6476. "type": "tidelift"
  6477. }
  6478. ],
  6479. "time": "2024-09-20T08:28:38+00:00"
  6480. },
  6481. {
  6482. "name": "symfony/translation",
  6483. "version": "v7.1.5",
  6484. "source": {
  6485. "type": "git",
  6486. "url": "https://github.com/symfony/translation.git",
  6487. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea"
  6488. },
  6489. "dist": {
  6490. "type": "zip",
  6491. "url": "https://api.github.com/repos/symfony/translation/zipball/235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  6492. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  6493. "shasum": ""
  6494. },
  6495. "require": {
  6496. "php": ">=8.2",
  6497. "symfony/polyfill-mbstring": "~1.0",
  6498. "symfony/translation-contracts": "^2.5|^3.0"
  6499. },
  6500. "conflict": {
  6501. "symfony/config": "<6.4",
  6502. "symfony/console": "<6.4",
  6503. "symfony/dependency-injection": "<6.4",
  6504. "symfony/http-client-contracts": "<2.5",
  6505. "symfony/http-kernel": "<6.4",
  6506. "symfony/service-contracts": "<2.5",
  6507. "symfony/twig-bundle": "<6.4",
  6508. "symfony/yaml": "<6.4"
  6509. },
  6510. "provide": {
  6511. "symfony/translation-implementation": "2.3|3.0"
  6512. },
  6513. "require-dev": {
  6514. "nikic/php-parser": "^4.18|^5.0",
  6515. "psr/log": "^1|^2|^3",
  6516. "symfony/config": "^6.4|^7.0",
  6517. "symfony/console": "^6.4|^7.0",
  6518. "symfony/dependency-injection": "^6.4|^7.0",
  6519. "symfony/finder": "^6.4|^7.0",
  6520. "symfony/http-client-contracts": "^2.5|^3.0",
  6521. "symfony/http-kernel": "^6.4|^7.0",
  6522. "symfony/intl": "^6.4|^7.0",
  6523. "symfony/polyfill-intl-icu": "^1.21",
  6524. "symfony/routing": "^6.4|^7.0",
  6525. "symfony/service-contracts": "^2.5|^3",
  6526. "symfony/yaml": "^6.4|^7.0"
  6527. },
  6528. "type": "library",
  6529. "autoload": {
  6530. "files": [
  6531. "Resources/functions.php"
  6532. ],
  6533. "psr-4": {
  6534. "Symfony\\Component\\Translation\\": ""
  6535. },
  6536. "exclude-from-classmap": [
  6537. "/Tests/"
  6538. ]
  6539. },
  6540. "notification-url": "https://packagist.org/downloads/",
  6541. "license": [
  6542. "MIT"
  6543. ],
  6544. "authors": [
  6545. {
  6546. "name": "Fabien Potencier",
  6547. "email": "fabien@symfony.com"
  6548. },
  6549. {
  6550. "name": "Symfony Community",
  6551. "homepage": "https://symfony.com/contributors"
  6552. }
  6553. ],
  6554. "description": "Provides tools to internationalize your application",
  6555. "homepage": "https://symfony.com",
  6556. "support": {
  6557. "source": "https://github.com/symfony/translation/tree/v7.1.5"
  6558. },
  6559. "funding": [
  6560. {
  6561. "url": "https://symfony.com/sponsor",
  6562. "type": "custom"
  6563. },
  6564. {
  6565. "url": "https://github.com/fabpot",
  6566. "type": "github"
  6567. },
  6568. {
  6569. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6570. "type": "tidelift"
  6571. }
  6572. ],
  6573. "time": "2024-09-16T06:30:38+00:00"
  6574. },
  6575. {
  6576. "name": "symfony/translation-contracts",
  6577. "version": "v3.5.0",
  6578. "source": {
  6579. "type": "git",
  6580. "url": "https://github.com/symfony/translation-contracts.git",
  6581. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6582. },
  6583. "dist": {
  6584. "type": "zip",
  6585. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6586. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6587. "shasum": ""
  6588. },
  6589. "require": {
  6590. "php": ">=8.1"
  6591. },
  6592. "type": "library",
  6593. "extra": {
  6594. "branch-alias": {
  6595. "dev-main": "3.5-dev"
  6596. },
  6597. "thanks": {
  6598. "name": "symfony/contracts",
  6599. "url": "https://github.com/symfony/contracts"
  6600. }
  6601. },
  6602. "autoload": {
  6603. "psr-4": {
  6604. "Symfony\\Contracts\\Translation\\": ""
  6605. },
  6606. "exclude-from-classmap": [
  6607. "/Test/"
  6608. ]
  6609. },
  6610. "notification-url": "https://packagist.org/downloads/",
  6611. "license": [
  6612. "MIT"
  6613. ],
  6614. "authors": [
  6615. {
  6616. "name": "Nicolas Grekas",
  6617. "email": "p@tchwork.com"
  6618. },
  6619. {
  6620. "name": "Symfony Community",
  6621. "homepage": "https://symfony.com/contributors"
  6622. }
  6623. ],
  6624. "description": "Generic abstractions related to translation",
  6625. "homepage": "https://symfony.com",
  6626. "keywords": [
  6627. "abstractions",
  6628. "contracts",
  6629. "decoupling",
  6630. "interfaces",
  6631. "interoperability",
  6632. "standards"
  6633. ],
  6634. "support": {
  6635. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6636. },
  6637. "funding": [
  6638. {
  6639. "url": "https://symfony.com/sponsor",
  6640. "type": "custom"
  6641. },
  6642. {
  6643. "url": "https://github.com/fabpot",
  6644. "type": "github"
  6645. },
  6646. {
  6647. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6648. "type": "tidelift"
  6649. }
  6650. ],
  6651. "time": "2024-04-18T09:32:20+00:00"
  6652. },
  6653. {
  6654. "name": "symfony/twig-bridge",
  6655. "version": "v7.1.5",
  6656. "source": {
  6657. "type": "git",
  6658. "url": "https://github.com/symfony/twig-bridge.git",
  6659. "reference": "e997e5025b53c0f7b17632802daefdd6a04540ae"
  6660. },
  6661. "dist": {
  6662. "type": "zip",
  6663. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/e997e5025b53c0f7b17632802daefdd6a04540ae",
  6664. "reference": "e997e5025b53c0f7b17632802daefdd6a04540ae",
  6665. "shasum": ""
  6666. },
  6667. "require": {
  6668. "php": ">=8.2",
  6669. "symfony/translation-contracts": "^2.5|^3",
  6670. "twig/twig": "^3.9"
  6671. },
  6672. "conflict": {
  6673. "phpdocumentor/reflection-docblock": "<3.2.2",
  6674. "phpdocumentor/type-resolver": "<1.4.0",
  6675. "symfony/console": "<6.4",
  6676. "symfony/form": "<6.4",
  6677. "symfony/http-foundation": "<6.4",
  6678. "symfony/http-kernel": "<6.4",
  6679. "symfony/mime": "<6.4",
  6680. "symfony/serializer": "<6.4",
  6681. "symfony/translation": "<6.4",
  6682. "symfony/workflow": "<6.4"
  6683. },
  6684. "require-dev": {
  6685. "egulias/email-validator": "^2.1.10|^3|^4",
  6686. "league/html-to-markdown": "^5.0",
  6687. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6688. "symfony/asset": "^6.4|^7.0",
  6689. "symfony/asset-mapper": "^6.4|^7.0",
  6690. "symfony/console": "^6.4|^7.0",
  6691. "symfony/dependency-injection": "^6.4|^7.0",
  6692. "symfony/emoji": "^7.1",
  6693. "symfony/expression-language": "^6.4|^7.0",
  6694. "symfony/finder": "^6.4|^7.0",
  6695. "symfony/form": "^6.4|^7.0",
  6696. "symfony/html-sanitizer": "^6.4|^7.0",
  6697. "symfony/http-foundation": "^6.4|^7.0",
  6698. "symfony/http-kernel": "^6.4|^7.0",
  6699. "symfony/intl": "^6.4|^7.0",
  6700. "symfony/mime": "^6.4|^7.0",
  6701. "symfony/polyfill-intl-icu": "~1.0",
  6702. "symfony/property-info": "^6.4|^7.0",
  6703. "symfony/routing": "^6.4|^7.0",
  6704. "symfony/security-acl": "^2.8|^3.0",
  6705. "symfony/security-core": "^6.4|^7.0",
  6706. "symfony/security-csrf": "^6.4|^7.0",
  6707. "symfony/security-http": "^6.4|^7.0",
  6708. "symfony/serializer": "^6.4.3|^7.0.3",
  6709. "symfony/stopwatch": "^6.4|^7.0",
  6710. "symfony/translation": "^6.4|^7.0",
  6711. "symfony/web-link": "^6.4|^7.0",
  6712. "symfony/workflow": "^6.4|^7.0",
  6713. "symfony/yaml": "^6.4|^7.0",
  6714. "twig/cssinliner-extra": "^2.12|^3",
  6715. "twig/inky-extra": "^2.12|^3",
  6716. "twig/markdown-extra": "^2.12|^3"
  6717. },
  6718. "type": "symfony-bridge",
  6719. "autoload": {
  6720. "psr-4": {
  6721. "Symfony\\Bridge\\Twig\\": ""
  6722. },
  6723. "exclude-from-classmap": [
  6724. "/Tests/"
  6725. ]
  6726. },
  6727. "notification-url": "https://packagist.org/downloads/",
  6728. "license": [
  6729. "MIT"
  6730. ],
  6731. "authors": [
  6732. {
  6733. "name": "Fabien Potencier",
  6734. "email": "fabien@symfony.com"
  6735. },
  6736. {
  6737. "name": "Symfony Community",
  6738. "homepage": "https://symfony.com/contributors"
  6739. }
  6740. ],
  6741. "description": "Provides integration for Twig with various Symfony components",
  6742. "homepage": "https://symfony.com",
  6743. "support": {
  6744. "source": "https://github.com/symfony/twig-bridge/tree/v7.1.5"
  6745. },
  6746. "funding": [
  6747. {
  6748. "url": "https://symfony.com/sponsor",
  6749. "type": "custom"
  6750. },
  6751. {
  6752. "url": "https://github.com/fabpot",
  6753. "type": "github"
  6754. },
  6755. {
  6756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6757. "type": "tidelift"
  6758. }
  6759. ],
  6760. "time": "2024-09-15T06:48:17+00:00"
  6761. },
  6762. {
  6763. "name": "symfony/twig-bundle",
  6764. "version": "v7.1.5",
  6765. "source": {
  6766. "type": "git",
  6767. "url": "https://github.com/symfony/twig-bundle.git",
  6768. "reference": "4e6afd0dc8396f16861b682f3b854ff6e24bfb7e"
  6769. },
  6770. "dist": {
  6771. "type": "zip",
  6772. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/4e6afd0dc8396f16861b682f3b854ff6e24bfb7e",
  6773. "reference": "4e6afd0dc8396f16861b682f3b854ff6e24bfb7e",
  6774. "shasum": ""
  6775. },
  6776. "require": {
  6777. "composer-runtime-api": ">=2.1",
  6778. "php": ">=8.2",
  6779. "symfony/config": "^6.4|^7.0",
  6780. "symfony/dependency-injection": "^6.4|^7.0",
  6781. "symfony/http-foundation": "^6.4|^7.0",
  6782. "symfony/http-kernel": "^6.4|^7.0",
  6783. "symfony/twig-bridge": "^6.4|^7.0",
  6784. "twig/twig": "^3.0.4"
  6785. },
  6786. "conflict": {
  6787. "symfony/framework-bundle": "<6.4",
  6788. "symfony/translation": "<6.4"
  6789. },
  6790. "require-dev": {
  6791. "symfony/asset": "^6.4|^7.0",
  6792. "symfony/expression-language": "^6.4|^7.0",
  6793. "symfony/finder": "^6.4|^7.0",
  6794. "symfony/form": "^6.4|^7.0",
  6795. "symfony/framework-bundle": "^6.4|^7.0",
  6796. "symfony/routing": "^6.4|^7.0",
  6797. "symfony/stopwatch": "^6.4|^7.0",
  6798. "symfony/translation": "^6.4|^7.0",
  6799. "symfony/web-link": "^6.4|^7.0",
  6800. "symfony/yaml": "^6.4|^7.0"
  6801. },
  6802. "type": "symfony-bundle",
  6803. "autoload": {
  6804. "psr-4": {
  6805. "Symfony\\Bundle\\TwigBundle\\": ""
  6806. },
  6807. "exclude-from-classmap": [
  6808. "/Tests/"
  6809. ]
  6810. },
  6811. "notification-url": "https://packagist.org/downloads/",
  6812. "license": [
  6813. "MIT"
  6814. ],
  6815. "authors": [
  6816. {
  6817. "name": "Fabien Potencier",
  6818. "email": "fabien@symfony.com"
  6819. },
  6820. {
  6821. "name": "Symfony Community",
  6822. "homepage": "https://symfony.com/contributors"
  6823. }
  6824. ],
  6825. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  6826. "homepage": "https://symfony.com",
  6827. "support": {
  6828. "source": "https://github.com/symfony/twig-bundle/tree/v7.1.5"
  6829. },
  6830. "funding": [
  6831. {
  6832. "url": "https://symfony.com/sponsor",
  6833. "type": "custom"
  6834. },
  6835. {
  6836. "url": "https://github.com/fabpot",
  6837. "type": "github"
  6838. },
  6839. {
  6840. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6841. "type": "tidelift"
  6842. }
  6843. ],
  6844. "time": "2024-09-08T12:32:26+00:00"
  6845. },
  6846. {
  6847. "name": "symfony/type-info",
  6848. "version": "v7.1.5",
  6849. "source": {
  6850. "type": "git",
  6851. "url": "https://github.com/symfony/type-info.git",
  6852. "reference": "9f6094aa900d2c06bd61576a6f279d4ac441515f"
  6853. },
  6854. "dist": {
  6855. "type": "zip",
  6856. "url": "https://api.github.com/repos/symfony/type-info/zipball/9f6094aa900d2c06bd61576a6f279d4ac441515f",
  6857. "reference": "9f6094aa900d2c06bd61576a6f279d4ac441515f",
  6858. "shasum": ""
  6859. },
  6860. "require": {
  6861. "php": ">=8.2",
  6862. "psr/container": "^1.1|^2.0"
  6863. },
  6864. "conflict": {
  6865. "phpstan/phpdoc-parser": "<1.0",
  6866. "symfony/dependency-injection": "<6.4",
  6867. "symfony/property-info": "<6.4"
  6868. },
  6869. "require-dev": {
  6870. "phpstan/phpdoc-parser": "^1.0",
  6871. "symfony/dependency-injection": "^6.4|^7.0",
  6872. "symfony/property-info": "^6.4|^7.0"
  6873. },
  6874. "type": "library",
  6875. "autoload": {
  6876. "psr-4": {
  6877. "Symfony\\Component\\TypeInfo\\": ""
  6878. },
  6879. "exclude-from-classmap": [
  6880. "/Tests/"
  6881. ]
  6882. },
  6883. "notification-url": "https://packagist.org/downloads/",
  6884. "license": [
  6885. "MIT"
  6886. ],
  6887. "authors": [
  6888. {
  6889. "name": "Mathias Arlaud",
  6890. "email": "mathias.arlaud@gmail.com"
  6891. },
  6892. {
  6893. "name": "Baptiste LEDUC",
  6894. "email": "baptiste.leduc@gmail.com"
  6895. },
  6896. {
  6897. "name": "Symfony Community",
  6898. "homepage": "https://symfony.com/contributors"
  6899. }
  6900. ],
  6901. "description": "Extracts PHP types information.",
  6902. "homepage": "https://symfony.com",
  6903. "keywords": [
  6904. "PHPStan",
  6905. "phpdoc",
  6906. "symfony",
  6907. "type"
  6908. ],
  6909. "support": {
  6910. "source": "https://github.com/symfony/type-info/tree/v7.1.5"
  6911. },
  6912. "funding": [
  6913. {
  6914. "url": "https://symfony.com/sponsor",
  6915. "type": "custom"
  6916. },
  6917. {
  6918. "url": "https://github.com/fabpot",
  6919. "type": "github"
  6920. },
  6921. {
  6922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6923. "type": "tidelift"
  6924. }
  6925. ],
  6926. "time": "2024-09-19T21:48:23+00:00"
  6927. },
  6928. {
  6929. "name": "symfony/ux-turbo",
  6930. "version": "v2.21.0",
  6931. "source": {
  6932. "type": "git",
  6933. "url": "https://github.com/symfony/ux-turbo.git",
  6934. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c"
  6935. },
  6936. "dist": {
  6937. "type": "zip",
  6938. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  6939. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  6940. "shasum": ""
  6941. },
  6942. "require": {
  6943. "php": ">=8.1",
  6944. "symfony/stimulus-bundle": "^2.9.1"
  6945. },
  6946. "conflict": {
  6947. "symfony/flex": "<1.13"
  6948. },
  6949. "require-dev": {
  6950. "dbrekelmans/bdi": "dev-main",
  6951. "doctrine/doctrine-bundle": "^2.4.3",
  6952. "doctrine/orm": "^2.8 | 3.0",
  6953. "phpstan/phpstan": "^1.10",
  6954. "symfony/asset-mapper": "^6.4|^7.0",
  6955. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  6956. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6957. "symfony/form": "^5.4|^6.0|^7.0",
  6958. "symfony/framework-bundle": "^6.4|^7.0",
  6959. "symfony/mercure-bundle": "^0.3.7",
  6960. "symfony/messenger": "^5.4|^6.0|^7.0",
  6961. "symfony/panther": "^2.1",
  6962. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6963. "symfony/process": "^5.4|6.3.*|^7.0",
  6964. "symfony/property-access": "^5.4|^6.0|^7.0",
  6965. "symfony/security-core": "^5.4|^6.0|^7.0",
  6966. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6967. "symfony/twig-bundle": "^6.4|^7.0",
  6968. "symfony/ux-twig-component": "^2.21",
  6969. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  6970. },
  6971. "type": "symfony-bundle",
  6972. "extra": {
  6973. "thanks": {
  6974. "name": "symfony/ux",
  6975. "url": "https://github.com/symfony/ux"
  6976. }
  6977. },
  6978. "autoload": {
  6979. "psr-4": {
  6980. "Symfony\\UX\\Turbo\\": "src/"
  6981. }
  6982. },
  6983. "notification-url": "https://packagist.org/downloads/",
  6984. "license": [
  6985. "MIT"
  6986. ],
  6987. "authors": [
  6988. {
  6989. "name": "Kévin Dunglas",
  6990. "email": "kevin@dunglas.fr"
  6991. },
  6992. {
  6993. "name": "Symfony Community",
  6994. "homepage": "https://symfony.com/contributors"
  6995. }
  6996. ],
  6997. "description": "Hotwire Turbo integration for Symfony",
  6998. "homepage": "https://symfony.com",
  6999. "keywords": [
  7000. "hotwire",
  7001. "javascript",
  7002. "mercure",
  7003. "symfony-ux",
  7004. "turbo",
  7005. "turbo-stream"
  7006. ],
  7007. "support": {
  7008. "source": "https://github.com/symfony/ux-turbo/tree/v2.21.0"
  7009. },
  7010. "funding": [
  7011. {
  7012. "url": "https://symfony.com/sponsor",
  7013. "type": "custom"
  7014. },
  7015. {
  7016. "url": "https://github.com/fabpot",
  7017. "type": "github"
  7018. },
  7019. {
  7020. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7021. "type": "tidelift"
  7022. }
  7023. ],
  7024. "time": "2024-10-21T19:07:02+00:00"
  7025. },
  7026. {
  7027. "name": "symfony/validator",
  7028. "version": "v7.1.5",
  7029. "source": {
  7030. "type": "git",
  7031. "url": "https://github.com/symfony/validator.git",
  7032. "reference": "e57592782dc2a86997477f28164c51af53512ad8"
  7033. },
  7034. "dist": {
  7035. "type": "zip",
  7036. "url": "https://api.github.com/repos/symfony/validator/zipball/e57592782dc2a86997477f28164c51af53512ad8",
  7037. "reference": "e57592782dc2a86997477f28164c51af53512ad8",
  7038. "shasum": ""
  7039. },
  7040. "require": {
  7041. "php": ">=8.2",
  7042. "symfony/deprecation-contracts": "^2.5|^3",
  7043. "symfony/polyfill-ctype": "~1.8",
  7044. "symfony/polyfill-mbstring": "~1.0",
  7045. "symfony/polyfill-php83": "^1.27",
  7046. "symfony/translation-contracts": "^2.5|^3"
  7047. },
  7048. "conflict": {
  7049. "doctrine/lexer": "<1.1",
  7050. "symfony/dependency-injection": "<6.4",
  7051. "symfony/doctrine-bridge": "<7.0",
  7052. "symfony/expression-language": "<6.4",
  7053. "symfony/http-kernel": "<6.4",
  7054. "symfony/intl": "<6.4",
  7055. "symfony/property-info": "<6.4",
  7056. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7057. "symfony/yaml": "<6.4"
  7058. },
  7059. "require-dev": {
  7060. "egulias/email-validator": "^2.1.10|^3|^4",
  7061. "symfony/cache": "^6.4|^7.0",
  7062. "symfony/config": "^6.4|^7.0",
  7063. "symfony/console": "^6.4|^7.0",
  7064. "symfony/dependency-injection": "^6.4|^7.0",
  7065. "symfony/expression-language": "^6.4|^7.0",
  7066. "symfony/finder": "^6.4|^7.0",
  7067. "symfony/http-client": "^6.4|^7.0",
  7068. "symfony/http-foundation": "^6.4|^7.0",
  7069. "symfony/http-kernel": "^6.4|^7.0",
  7070. "symfony/intl": "^6.4|^7.0",
  7071. "symfony/mime": "^6.4|^7.0",
  7072. "symfony/property-access": "^6.4|^7.0",
  7073. "symfony/property-info": "^6.4|^7.0",
  7074. "symfony/translation": "^6.4.3|^7.0.3",
  7075. "symfony/type-info": "^7.1",
  7076. "symfony/yaml": "^6.4|^7.0"
  7077. },
  7078. "type": "library",
  7079. "autoload": {
  7080. "psr-4": {
  7081. "Symfony\\Component\\Validator\\": ""
  7082. },
  7083. "exclude-from-classmap": [
  7084. "/Tests/",
  7085. "/Resources/bin/"
  7086. ]
  7087. },
  7088. "notification-url": "https://packagist.org/downloads/",
  7089. "license": [
  7090. "MIT"
  7091. ],
  7092. "authors": [
  7093. {
  7094. "name": "Fabien Potencier",
  7095. "email": "fabien@symfony.com"
  7096. },
  7097. {
  7098. "name": "Symfony Community",
  7099. "homepage": "https://symfony.com/contributors"
  7100. }
  7101. ],
  7102. "description": "Provides tools to validate values",
  7103. "homepage": "https://symfony.com",
  7104. "support": {
  7105. "source": "https://github.com/symfony/validator/tree/v7.1.5"
  7106. },
  7107. "funding": [
  7108. {
  7109. "url": "https://symfony.com/sponsor",
  7110. "type": "custom"
  7111. },
  7112. {
  7113. "url": "https://github.com/fabpot",
  7114. "type": "github"
  7115. },
  7116. {
  7117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7118. "type": "tidelift"
  7119. }
  7120. ],
  7121. "time": "2024-09-20T08:28:38+00:00"
  7122. },
  7123. {
  7124. "name": "symfony/var-dumper",
  7125. "version": "v7.1.5",
  7126. "source": {
  7127. "type": "git",
  7128. "url": "https://github.com/symfony/var-dumper.git",
  7129. "reference": "e20e03889539fd4e4211e14d2179226c513c010d"
  7130. },
  7131. "dist": {
  7132. "type": "zip",
  7133. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e20e03889539fd4e4211e14d2179226c513c010d",
  7134. "reference": "e20e03889539fd4e4211e14d2179226c513c010d",
  7135. "shasum": ""
  7136. },
  7137. "require": {
  7138. "php": ">=8.2",
  7139. "symfony/polyfill-mbstring": "~1.0"
  7140. },
  7141. "conflict": {
  7142. "symfony/console": "<6.4"
  7143. },
  7144. "require-dev": {
  7145. "ext-iconv": "*",
  7146. "symfony/console": "^6.4|^7.0",
  7147. "symfony/http-kernel": "^6.4|^7.0",
  7148. "symfony/process": "^6.4|^7.0",
  7149. "symfony/uid": "^6.4|^7.0",
  7150. "twig/twig": "^3.0.4"
  7151. },
  7152. "bin": [
  7153. "Resources/bin/var-dump-server"
  7154. ],
  7155. "type": "library",
  7156. "autoload": {
  7157. "files": [
  7158. "Resources/functions/dump.php"
  7159. ],
  7160. "psr-4": {
  7161. "Symfony\\Component\\VarDumper\\": ""
  7162. },
  7163. "exclude-from-classmap": [
  7164. "/Tests/"
  7165. ]
  7166. },
  7167. "notification-url": "https://packagist.org/downloads/",
  7168. "license": [
  7169. "MIT"
  7170. ],
  7171. "authors": [
  7172. {
  7173. "name": "Nicolas Grekas",
  7174. "email": "p@tchwork.com"
  7175. },
  7176. {
  7177. "name": "Symfony Community",
  7178. "homepage": "https://symfony.com/contributors"
  7179. }
  7180. ],
  7181. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7182. "homepage": "https://symfony.com",
  7183. "keywords": [
  7184. "debug",
  7185. "dump"
  7186. ],
  7187. "support": {
  7188. "source": "https://github.com/symfony/var-dumper/tree/v7.1.5"
  7189. },
  7190. "funding": [
  7191. {
  7192. "url": "https://symfony.com/sponsor",
  7193. "type": "custom"
  7194. },
  7195. {
  7196. "url": "https://github.com/fabpot",
  7197. "type": "github"
  7198. },
  7199. {
  7200. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7201. "type": "tidelift"
  7202. }
  7203. ],
  7204. "time": "2024-09-16T10:07:02+00:00"
  7205. },
  7206. {
  7207. "name": "symfony/var-exporter",
  7208. "version": "v7.1.2",
  7209. "source": {
  7210. "type": "git",
  7211. "url": "https://github.com/symfony/var-exporter.git",
  7212. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c"
  7213. },
  7214. "dist": {
  7215. "type": "zip",
  7216. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b80a669a2264609f07f1667f891dbfca25eba44c",
  7217. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c",
  7218. "shasum": ""
  7219. },
  7220. "require": {
  7221. "php": ">=8.2"
  7222. },
  7223. "require-dev": {
  7224. "symfony/property-access": "^6.4|^7.0",
  7225. "symfony/serializer": "^6.4|^7.0",
  7226. "symfony/var-dumper": "^6.4|^7.0"
  7227. },
  7228. "type": "library",
  7229. "autoload": {
  7230. "psr-4": {
  7231. "Symfony\\Component\\VarExporter\\": ""
  7232. },
  7233. "exclude-from-classmap": [
  7234. "/Tests/"
  7235. ]
  7236. },
  7237. "notification-url": "https://packagist.org/downloads/",
  7238. "license": [
  7239. "MIT"
  7240. ],
  7241. "authors": [
  7242. {
  7243. "name": "Nicolas Grekas",
  7244. "email": "p@tchwork.com"
  7245. },
  7246. {
  7247. "name": "Symfony Community",
  7248. "homepage": "https://symfony.com/contributors"
  7249. }
  7250. ],
  7251. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7252. "homepage": "https://symfony.com",
  7253. "keywords": [
  7254. "clone",
  7255. "construct",
  7256. "export",
  7257. "hydrate",
  7258. "instantiate",
  7259. "lazy-loading",
  7260. "proxy",
  7261. "serialize"
  7262. ],
  7263. "support": {
  7264. "source": "https://github.com/symfony/var-exporter/tree/v7.1.2"
  7265. },
  7266. "funding": [
  7267. {
  7268. "url": "https://symfony.com/sponsor",
  7269. "type": "custom"
  7270. },
  7271. {
  7272. "url": "https://github.com/fabpot",
  7273. "type": "github"
  7274. },
  7275. {
  7276. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7277. "type": "tidelift"
  7278. }
  7279. ],
  7280. "time": "2024-06-28T08:00:31+00:00"
  7281. },
  7282. {
  7283. "name": "symfony/web-link",
  7284. "version": "v7.1.1",
  7285. "source": {
  7286. "type": "git",
  7287. "url": "https://github.com/symfony/web-link.git",
  7288. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f"
  7289. },
  7290. "dist": {
  7291. "type": "zip",
  7292. "url": "https://api.github.com/repos/symfony/web-link/zipball/63f90aa0054bfd9a091d2f5cf465958f1030638f",
  7293. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f",
  7294. "shasum": ""
  7295. },
  7296. "require": {
  7297. "php": ">=8.2",
  7298. "psr/link": "^1.1|^2.0"
  7299. },
  7300. "conflict": {
  7301. "symfony/http-kernel": "<6.4"
  7302. },
  7303. "provide": {
  7304. "psr/link-implementation": "1.0|2.0"
  7305. },
  7306. "require-dev": {
  7307. "symfony/http-kernel": "^6.4|^7.0"
  7308. },
  7309. "type": "library",
  7310. "autoload": {
  7311. "psr-4": {
  7312. "Symfony\\Component\\WebLink\\": ""
  7313. },
  7314. "exclude-from-classmap": [
  7315. "/Tests/"
  7316. ]
  7317. },
  7318. "notification-url": "https://packagist.org/downloads/",
  7319. "license": [
  7320. "MIT"
  7321. ],
  7322. "authors": [
  7323. {
  7324. "name": "Kévin Dunglas",
  7325. "email": "dunglas@gmail.com"
  7326. },
  7327. {
  7328. "name": "Symfony Community",
  7329. "homepage": "https://symfony.com/contributors"
  7330. }
  7331. ],
  7332. "description": "Manages links between resources",
  7333. "homepage": "https://symfony.com",
  7334. "keywords": [
  7335. "dns-prefetch",
  7336. "http",
  7337. "http2",
  7338. "link",
  7339. "performance",
  7340. "prefetch",
  7341. "preload",
  7342. "prerender",
  7343. "psr13",
  7344. "push"
  7345. ],
  7346. "support": {
  7347. "source": "https://github.com/symfony/web-link/tree/v7.1.1"
  7348. },
  7349. "funding": [
  7350. {
  7351. "url": "https://symfony.com/sponsor",
  7352. "type": "custom"
  7353. },
  7354. {
  7355. "url": "https://github.com/fabpot",
  7356. "type": "github"
  7357. },
  7358. {
  7359. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7360. "type": "tidelift"
  7361. }
  7362. ],
  7363. "time": "2024-05-31T14:57:53+00:00"
  7364. },
  7365. {
  7366. "name": "symfony/workflow",
  7367. "version": "v7.1.1",
  7368. "source": {
  7369. "type": "git",
  7370. "url": "https://github.com/symfony/workflow.git",
  7371. "reference": "bc9a36fdd6a6fab9f630bd73b428aa06917e17e8"
  7372. },
  7373. "dist": {
  7374. "type": "zip",
  7375. "url": "https://api.github.com/repos/symfony/workflow/zipball/bc9a36fdd6a6fab9f630bd73b428aa06917e17e8",
  7376. "reference": "bc9a36fdd6a6fab9f630bd73b428aa06917e17e8",
  7377. "shasum": ""
  7378. },
  7379. "require": {
  7380. "php": ">=8.2"
  7381. },
  7382. "conflict": {
  7383. "symfony/event-dispatcher": "<6.4"
  7384. },
  7385. "require-dev": {
  7386. "psr/log": "^1|^2|^3",
  7387. "symfony/dependency-injection": "^6.4|^7.0",
  7388. "symfony/error-handler": "^6.4|^7.0",
  7389. "symfony/event-dispatcher": "^6.4|^7.0",
  7390. "symfony/expression-language": "^6.4|^7.0",
  7391. "symfony/http-kernel": "^6.4|^7.0",
  7392. "symfony/security-core": "^6.4|^7.0",
  7393. "symfony/stopwatch": "^6.4|^7.0",
  7394. "symfony/validator": "^6.4|^7.0"
  7395. },
  7396. "type": "library",
  7397. "autoload": {
  7398. "psr-4": {
  7399. "Symfony\\Component\\Workflow\\": ""
  7400. },
  7401. "exclude-from-classmap": [
  7402. "/Tests/"
  7403. ]
  7404. },
  7405. "notification-url": "https://packagist.org/downloads/",
  7406. "license": [
  7407. "MIT"
  7408. ],
  7409. "authors": [
  7410. {
  7411. "name": "Fabien Potencier",
  7412. "email": "fabien@symfony.com"
  7413. },
  7414. {
  7415. "name": "Grégoire Pineau",
  7416. "email": "lyrixx@lyrixx.info"
  7417. },
  7418. {
  7419. "name": "Symfony Community",
  7420. "homepage": "https://symfony.com/contributors"
  7421. }
  7422. ],
  7423. "description": "Provides tools for managing a workflow or finite state machine",
  7424. "homepage": "https://symfony.com",
  7425. "keywords": [
  7426. "petrinet",
  7427. "place",
  7428. "state",
  7429. "statemachine",
  7430. "transition",
  7431. "workflow"
  7432. ],
  7433. "support": {
  7434. "source": "https://github.com/symfony/workflow/tree/v7.1.1"
  7435. },
  7436. "funding": [
  7437. {
  7438. "url": "https://symfony.com/sponsor",
  7439. "type": "custom"
  7440. },
  7441. {
  7442. "url": "https://github.com/fabpot",
  7443. "type": "github"
  7444. },
  7445. {
  7446. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7447. "type": "tidelift"
  7448. }
  7449. ],
  7450. "time": "2024-05-31T14:57:53+00:00"
  7451. },
  7452. {
  7453. "name": "symfony/yaml",
  7454. "version": "v7.1.5",
  7455. "source": {
  7456. "type": "git",
  7457. "url": "https://github.com/symfony/yaml.git",
  7458. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4"
  7459. },
  7460. "dist": {
  7461. "type": "zip",
  7462. "url": "https://api.github.com/repos/symfony/yaml/zipball/4e561c316e135e053bd758bf3b3eb291d9919de4",
  7463. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4",
  7464. "shasum": ""
  7465. },
  7466. "require": {
  7467. "php": ">=8.2",
  7468. "symfony/polyfill-ctype": "^1.8"
  7469. },
  7470. "conflict": {
  7471. "symfony/console": "<6.4"
  7472. },
  7473. "require-dev": {
  7474. "symfony/console": "^6.4|^7.0"
  7475. },
  7476. "bin": [
  7477. "Resources/bin/yaml-lint"
  7478. ],
  7479. "type": "library",
  7480. "autoload": {
  7481. "psr-4": {
  7482. "Symfony\\Component\\Yaml\\": ""
  7483. },
  7484. "exclude-from-classmap": [
  7485. "/Tests/"
  7486. ]
  7487. },
  7488. "notification-url": "https://packagist.org/downloads/",
  7489. "license": [
  7490. "MIT"
  7491. ],
  7492. "authors": [
  7493. {
  7494. "name": "Fabien Potencier",
  7495. "email": "fabien@symfony.com"
  7496. },
  7497. {
  7498. "name": "Symfony Community",
  7499. "homepage": "https://symfony.com/contributors"
  7500. }
  7501. ],
  7502. "description": "Loads and dumps YAML files",
  7503. "homepage": "https://symfony.com",
  7504. "support": {
  7505. "source": "https://github.com/symfony/yaml/tree/v7.1.5"
  7506. },
  7507. "funding": [
  7508. {
  7509. "url": "https://symfony.com/sponsor",
  7510. "type": "custom"
  7511. },
  7512. {
  7513. "url": "https://github.com/fabpot",
  7514. "type": "github"
  7515. },
  7516. {
  7517. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7518. "type": "tidelift"
  7519. }
  7520. ],
  7521. "time": "2024-09-17T12:49:58+00:00"
  7522. },
  7523. {
  7524. "name": "twig/extra-bundle",
  7525. "version": "v3.13.0",
  7526. "source": {
  7527. "type": "git",
  7528. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  7529. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5"
  7530. },
  7531. "dist": {
  7532. "type": "zip",
  7533. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  7534. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  7535. "shasum": ""
  7536. },
  7537. "require": {
  7538. "php": ">=8.0.2",
  7539. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  7540. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  7541. "twig/twig": "^3.0|^4.0"
  7542. },
  7543. "require-dev": {
  7544. "league/commonmark": "^1.0|^2.0",
  7545. "symfony/phpunit-bridge": "^6.4|^7.0",
  7546. "twig/cache-extra": "^3.0",
  7547. "twig/cssinliner-extra": "^3.0",
  7548. "twig/html-extra": "^3.0",
  7549. "twig/inky-extra": "^3.0",
  7550. "twig/intl-extra": "^3.0",
  7551. "twig/markdown-extra": "^3.0",
  7552. "twig/string-extra": "^3.0"
  7553. },
  7554. "type": "symfony-bundle",
  7555. "autoload": {
  7556. "psr-4": {
  7557. "Twig\\Extra\\TwigExtraBundle\\": ""
  7558. },
  7559. "exclude-from-classmap": [
  7560. "/Tests/"
  7561. ]
  7562. },
  7563. "notification-url": "https://packagist.org/downloads/",
  7564. "license": [
  7565. "MIT"
  7566. ],
  7567. "authors": [
  7568. {
  7569. "name": "Fabien Potencier",
  7570. "email": "fabien@symfony.com",
  7571. "homepage": "http://fabien.potencier.org",
  7572. "role": "Lead Developer"
  7573. }
  7574. ],
  7575. "description": "A Symfony bundle for extra Twig extensions",
  7576. "homepage": "https://twig.symfony.com",
  7577. "keywords": [
  7578. "bundle",
  7579. "extra",
  7580. "twig"
  7581. ],
  7582. "support": {
  7583. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.13.0"
  7584. },
  7585. "funding": [
  7586. {
  7587. "url": "https://github.com/fabpot",
  7588. "type": "github"
  7589. },
  7590. {
  7591. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7592. "type": "tidelift"
  7593. }
  7594. ],
  7595. "time": "2024-09-01T20:39:12+00:00"
  7596. },
  7597. {
  7598. "name": "twig/twig",
  7599. "version": "v3.14.0",
  7600. "source": {
  7601. "type": "git",
  7602. "url": "https://github.com/twigphp/Twig.git",
  7603. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72"
  7604. },
  7605. "dist": {
  7606. "type": "zip",
  7607. "url": "https://api.github.com/repos/twigphp/Twig/zipball/126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  7608. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  7609. "shasum": ""
  7610. },
  7611. "require": {
  7612. "php": ">=8.0.2",
  7613. "symfony/deprecation-contracts": "^2.5|^3",
  7614. "symfony/polyfill-ctype": "^1.8",
  7615. "symfony/polyfill-mbstring": "^1.3",
  7616. "symfony/polyfill-php81": "^1.29"
  7617. },
  7618. "require-dev": {
  7619. "psr/container": "^1.0|^2.0",
  7620. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  7621. },
  7622. "type": "library",
  7623. "autoload": {
  7624. "files": [
  7625. "src/Resources/core.php",
  7626. "src/Resources/debug.php",
  7627. "src/Resources/escaper.php",
  7628. "src/Resources/string_loader.php"
  7629. ],
  7630. "psr-4": {
  7631. "Twig\\": "src/"
  7632. }
  7633. },
  7634. "notification-url": "https://packagist.org/downloads/",
  7635. "license": [
  7636. "BSD-3-Clause"
  7637. ],
  7638. "authors": [
  7639. {
  7640. "name": "Fabien Potencier",
  7641. "email": "fabien@symfony.com",
  7642. "homepage": "http://fabien.potencier.org",
  7643. "role": "Lead Developer"
  7644. },
  7645. {
  7646. "name": "Twig Team",
  7647. "role": "Contributors"
  7648. },
  7649. {
  7650. "name": "Armin Ronacher",
  7651. "email": "armin.ronacher@active-4.com",
  7652. "role": "Project Founder"
  7653. }
  7654. ],
  7655. "description": "Twig, the flexible, fast, and secure template language for PHP",
  7656. "homepage": "https://twig.symfony.com",
  7657. "keywords": [
  7658. "templating"
  7659. ],
  7660. "support": {
  7661. "issues": "https://github.com/twigphp/Twig/issues",
  7662. "source": "https://github.com/twigphp/Twig/tree/v3.14.0"
  7663. },
  7664. "funding": [
  7665. {
  7666. "url": "https://github.com/fabpot",
  7667. "type": "github"
  7668. },
  7669. {
  7670. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7671. "type": "tidelift"
  7672. }
  7673. ],
  7674. "time": "2024-09-09T17:55:12+00:00"
  7675. },
  7676. {
  7677. "name": "webmozart/assert",
  7678. "version": "1.11.0",
  7679. "source": {
  7680. "type": "git",
  7681. "url": "https://github.com/webmozarts/assert.git",
  7682. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7683. },
  7684. "dist": {
  7685. "type": "zip",
  7686. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7687. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7688. "shasum": ""
  7689. },
  7690. "require": {
  7691. "ext-ctype": "*",
  7692. "php": "^7.2 || ^8.0"
  7693. },
  7694. "conflict": {
  7695. "phpstan/phpstan": "<0.12.20",
  7696. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7697. },
  7698. "require-dev": {
  7699. "phpunit/phpunit": "^8.5.13"
  7700. },
  7701. "type": "library",
  7702. "extra": {
  7703. "branch-alias": {
  7704. "dev-master": "1.10-dev"
  7705. }
  7706. },
  7707. "autoload": {
  7708. "psr-4": {
  7709. "Webmozart\\Assert\\": "src/"
  7710. }
  7711. },
  7712. "notification-url": "https://packagist.org/downloads/",
  7713. "license": [
  7714. "MIT"
  7715. ],
  7716. "authors": [
  7717. {
  7718. "name": "Bernhard Schussek",
  7719. "email": "bschussek@gmail.com"
  7720. }
  7721. ],
  7722. "description": "Assertions to validate method input/output with nice error messages.",
  7723. "keywords": [
  7724. "assert",
  7725. "check",
  7726. "validate"
  7727. ],
  7728. "support": {
  7729. "issues": "https://github.com/webmozarts/assert/issues",
  7730. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7731. },
  7732. "time": "2022-06-03T18:03:27+00:00"
  7733. }
  7734. ],
  7735. "packages-dev": [
  7736. {
  7737. "name": "fakerphp/faker",
  7738. "version": "v1.23.1",
  7739. "source": {
  7740. "type": "git",
  7741. "url": "https://github.com/FakerPHP/Faker.git",
  7742. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  7743. },
  7744. "dist": {
  7745. "type": "zip",
  7746. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  7747. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  7748. "shasum": ""
  7749. },
  7750. "require": {
  7751. "php": "^7.4 || ^8.0",
  7752. "psr/container": "^1.0 || ^2.0",
  7753. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  7754. },
  7755. "conflict": {
  7756. "fzaninotto/faker": "*"
  7757. },
  7758. "require-dev": {
  7759. "bamarni/composer-bin-plugin": "^1.4.1",
  7760. "doctrine/persistence": "^1.3 || ^2.0",
  7761. "ext-intl": "*",
  7762. "phpunit/phpunit": "^9.5.26",
  7763. "symfony/phpunit-bridge": "^5.4.16"
  7764. },
  7765. "suggest": {
  7766. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  7767. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  7768. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  7769. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  7770. "ext-mbstring": "Required for multibyte Unicode string functionality."
  7771. },
  7772. "type": "library",
  7773. "autoload": {
  7774. "psr-4": {
  7775. "Faker\\": "src/Faker/"
  7776. }
  7777. },
  7778. "notification-url": "https://packagist.org/downloads/",
  7779. "license": [
  7780. "MIT"
  7781. ],
  7782. "authors": [
  7783. {
  7784. "name": "François Zaninotto"
  7785. }
  7786. ],
  7787. "description": "Faker is a PHP library that generates fake data for you.",
  7788. "keywords": [
  7789. "data",
  7790. "faker",
  7791. "fixtures"
  7792. ],
  7793. "support": {
  7794. "issues": "https://github.com/FakerPHP/Faker/issues",
  7795. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  7796. },
  7797. "time": "2024-01-02T13:46:09+00:00"
  7798. },
  7799. {
  7800. "name": "masterminds/html5",
  7801. "version": "2.9.0",
  7802. "source": {
  7803. "type": "git",
  7804. "url": "https://github.com/Masterminds/html5-php.git",
  7805. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  7806. },
  7807. "dist": {
  7808. "type": "zip",
  7809. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  7810. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  7811. "shasum": ""
  7812. },
  7813. "require": {
  7814. "ext-dom": "*",
  7815. "php": ">=5.3.0"
  7816. },
  7817. "require-dev": {
  7818. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  7819. },
  7820. "type": "library",
  7821. "extra": {
  7822. "branch-alias": {
  7823. "dev-master": "2.7-dev"
  7824. }
  7825. },
  7826. "autoload": {
  7827. "psr-4": {
  7828. "Masterminds\\": "src"
  7829. }
  7830. },
  7831. "notification-url": "https://packagist.org/downloads/",
  7832. "license": [
  7833. "MIT"
  7834. ],
  7835. "authors": [
  7836. {
  7837. "name": "Matt Butcher",
  7838. "email": "technosophos@gmail.com"
  7839. },
  7840. {
  7841. "name": "Matt Farina",
  7842. "email": "matt@mattfarina.com"
  7843. },
  7844. {
  7845. "name": "Asmir Mustafic",
  7846. "email": "goetas@gmail.com"
  7847. }
  7848. ],
  7849. "description": "An HTML5 parser and serializer.",
  7850. "homepage": "http://masterminds.github.io/html5-php",
  7851. "keywords": [
  7852. "HTML5",
  7853. "dom",
  7854. "html",
  7855. "parser",
  7856. "querypath",
  7857. "serializer",
  7858. "xml"
  7859. ],
  7860. "support": {
  7861. "issues": "https://github.com/Masterminds/html5-php/issues",
  7862. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  7863. },
  7864. "time": "2024-03-31T07:05:07+00:00"
  7865. },
  7866. {
  7867. "name": "myclabs/deep-copy",
  7868. "version": "1.12.0",
  7869. "source": {
  7870. "type": "git",
  7871. "url": "https://github.com/myclabs/DeepCopy.git",
  7872. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  7873. },
  7874. "dist": {
  7875. "type": "zip",
  7876. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  7877. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  7878. "shasum": ""
  7879. },
  7880. "require": {
  7881. "php": "^7.1 || ^8.0"
  7882. },
  7883. "conflict": {
  7884. "doctrine/collections": "<1.6.8",
  7885. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7886. },
  7887. "require-dev": {
  7888. "doctrine/collections": "^1.6.8",
  7889. "doctrine/common": "^2.13.3 || ^3.2.2",
  7890. "phpspec/prophecy": "^1.10",
  7891. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7892. },
  7893. "type": "library",
  7894. "autoload": {
  7895. "files": [
  7896. "src/DeepCopy/deep_copy.php"
  7897. ],
  7898. "psr-4": {
  7899. "DeepCopy\\": "src/DeepCopy/"
  7900. }
  7901. },
  7902. "notification-url": "https://packagist.org/downloads/",
  7903. "license": [
  7904. "MIT"
  7905. ],
  7906. "description": "Create deep copies (clones) of your objects",
  7907. "keywords": [
  7908. "clone",
  7909. "copy",
  7910. "duplicate",
  7911. "object",
  7912. "object graph"
  7913. ],
  7914. "support": {
  7915. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7916. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  7917. },
  7918. "funding": [
  7919. {
  7920. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7921. "type": "tidelift"
  7922. }
  7923. ],
  7924. "time": "2024-06-12T14:39:25+00:00"
  7925. },
  7926. {
  7927. "name": "nikic/php-parser",
  7928. "version": "v5.3.1",
  7929. "source": {
  7930. "type": "git",
  7931. "url": "https://github.com/nikic/PHP-Parser.git",
  7932. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  7933. },
  7934. "dist": {
  7935. "type": "zip",
  7936. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  7937. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  7938. "shasum": ""
  7939. },
  7940. "require": {
  7941. "ext-ctype": "*",
  7942. "ext-json": "*",
  7943. "ext-tokenizer": "*",
  7944. "php": ">=7.4"
  7945. },
  7946. "require-dev": {
  7947. "ircmaxell/php-yacc": "^0.0.7",
  7948. "phpunit/phpunit": "^9.0"
  7949. },
  7950. "bin": [
  7951. "bin/php-parse"
  7952. ],
  7953. "type": "library",
  7954. "extra": {
  7955. "branch-alias": {
  7956. "dev-master": "5.0-dev"
  7957. }
  7958. },
  7959. "autoload": {
  7960. "psr-4": {
  7961. "PhpParser\\": "lib/PhpParser"
  7962. }
  7963. },
  7964. "notification-url": "https://packagist.org/downloads/",
  7965. "license": [
  7966. "BSD-3-Clause"
  7967. ],
  7968. "authors": [
  7969. {
  7970. "name": "Nikita Popov"
  7971. }
  7972. ],
  7973. "description": "A PHP parser written in PHP",
  7974. "keywords": [
  7975. "parser",
  7976. "php"
  7977. ],
  7978. "support": {
  7979. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7980. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  7981. },
  7982. "time": "2024-10-08T18:51:32+00:00"
  7983. },
  7984. {
  7985. "name": "phar-io/manifest",
  7986. "version": "2.0.4",
  7987. "source": {
  7988. "type": "git",
  7989. "url": "https://github.com/phar-io/manifest.git",
  7990. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7991. },
  7992. "dist": {
  7993. "type": "zip",
  7994. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7995. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7996. "shasum": ""
  7997. },
  7998. "require": {
  7999. "ext-dom": "*",
  8000. "ext-libxml": "*",
  8001. "ext-phar": "*",
  8002. "ext-xmlwriter": "*",
  8003. "phar-io/version": "^3.0.1",
  8004. "php": "^7.2 || ^8.0"
  8005. },
  8006. "type": "library",
  8007. "extra": {
  8008. "branch-alias": {
  8009. "dev-master": "2.0.x-dev"
  8010. }
  8011. },
  8012. "autoload": {
  8013. "classmap": [
  8014. "src/"
  8015. ]
  8016. },
  8017. "notification-url": "https://packagist.org/downloads/",
  8018. "license": [
  8019. "BSD-3-Clause"
  8020. ],
  8021. "authors": [
  8022. {
  8023. "name": "Arne Blankerts",
  8024. "email": "arne@blankerts.de",
  8025. "role": "Developer"
  8026. },
  8027. {
  8028. "name": "Sebastian Heuer",
  8029. "email": "sebastian@phpeople.de",
  8030. "role": "Developer"
  8031. },
  8032. {
  8033. "name": "Sebastian Bergmann",
  8034. "email": "sebastian@phpunit.de",
  8035. "role": "Developer"
  8036. }
  8037. ],
  8038. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8039. "support": {
  8040. "issues": "https://github.com/phar-io/manifest/issues",
  8041. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8042. },
  8043. "funding": [
  8044. {
  8045. "url": "https://github.com/theseer",
  8046. "type": "github"
  8047. }
  8048. ],
  8049. "time": "2024-03-03T12:33:53+00:00"
  8050. },
  8051. {
  8052. "name": "phar-io/version",
  8053. "version": "3.2.1",
  8054. "source": {
  8055. "type": "git",
  8056. "url": "https://github.com/phar-io/version.git",
  8057. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8058. },
  8059. "dist": {
  8060. "type": "zip",
  8061. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8062. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8063. "shasum": ""
  8064. },
  8065. "require": {
  8066. "php": "^7.2 || ^8.0"
  8067. },
  8068. "type": "library",
  8069. "autoload": {
  8070. "classmap": [
  8071. "src/"
  8072. ]
  8073. },
  8074. "notification-url": "https://packagist.org/downloads/",
  8075. "license": [
  8076. "BSD-3-Clause"
  8077. ],
  8078. "authors": [
  8079. {
  8080. "name": "Arne Blankerts",
  8081. "email": "arne@blankerts.de",
  8082. "role": "Developer"
  8083. },
  8084. {
  8085. "name": "Sebastian Heuer",
  8086. "email": "sebastian@phpeople.de",
  8087. "role": "Developer"
  8088. },
  8089. {
  8090. "name": "Sebastian Bergmann",
  8091. "email": "sebastian@phpunit.de",
  8092. "role": "Developer"
  8093. }
  8094. ],
  8095. "description": "Library for handling version information and constraints",
  8096. "support": {
  8097. "issues": "https://github.com/phar-io/version/issues",
  8098. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8099. },
  8100. "time": "2022-02-21T01:04:05+00:00"
  8101. },
  8102. {
  8103. "name": "phpunit/php-code-coverage",
  8104. "version": "9.2.32",
  8105. "source": {
  8106. "type": "git",
  8107. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8108. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  8109. },
  8110. "dist": {
  8111. "type": "zip",
  8112. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8113. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8114. "shasum": ""
  8115. },
  8116. "require": {
  8117. "ext-dom": "*",
  8118. "ext-libxml": "*",
  8119. "ext-xmlwriter": "*",
  8120. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8121. "php": ">=7.3",
  8122. "phpunit/php-file-iterator": "^3.0.6",
  8123. "phpunit/php-text-template": "^2.0.4",
  8124. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  8125. "sebastian/complexity": "^2.0.3",
  8126. "sebastian/environment": "^5.1.5",
  8127. "sebastian/lines-of-code": "^1.0.4",
  8128. "sebastian/version": "^3.0.2",
  8129. "theseer/tokenizer": "^1.2.3"
  8130. },
  8131. "require-dev": {
  8132. "phpunit/phpunit": "^9.6"
  8133. },
  8134. "suggest": {
  8135. "ext-pcov": "PHP extension that provides line coverage",
  8136. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8137. },
  8138. "type": "library",
  8139. "extra": {
  8140. "branch-alias": {
  8141. "dev-main": "9.2.x-dev"
  8142. }
  8143. },
  8144. "autoload": {
  8145. "classmap": [
  8146. "src/"
  8147. ]
  8148. },
  8149. "notification-url": "https://packagist.org/downloads/",
  8150. "license": [
  8151. "BSD-3-Clause"
  8152. ],
  8153. "authors": [
  8154. {
  8155. "name": "Sebastian Bergmann",
  8156. "email": "sebastian@phpunit.de",
  8157. "role": "lead"
  8158. }
  8159. ],
  8160. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8161. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8162. "keywords": [
  8163. "coverage",
  8164. "testing",
  8165. "xunit"
  8166. ],
  8167. "support": {
  8168. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8169. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8170. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  8171. },
  8172. "funding": [
  8173. {
  8174. "url": "https://github.com/sebastianbergmann",
  8175. "type": "github"
  8176. }
  8177. ],
  8178. "time": "2024-08-22T04:23:01+00:00"
  8179. },
  8180. {
  8181. "name": "phpunit/php-file-iterator",
  8182. "version": "3.0.6",
  8183. "source": {
  8184. "type": "git",
  8185. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8186. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8187. },
  8188. "dist": {
  8189. "type": "zip",
  8190. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8191. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8192. "shasum": ""
  8193. },
  8194. "require": {
  8195. "php": ">=7.3"
  8196. },
  8197. "require-dev": {
  8198. "phpunit/phpunit": "^9.3"
  8199. },
  8200. "type": "library",
  8201. "extra": {
  8202. "branch-alias": {
  8203. "dev-master": "3.0-dev"
  8204. }
  8205. },
  8206. "autoload": {
  8207. "classmap": [
  8208. "src/"
  8209. ]
  8210. },
  8211. "notification-url": "https://packagist.org/downloads/",
  8212. "license": [
  8213. "BSD-3-Clause"
  8214. ],
  8215. "authors": [
  8216. {
  8217. "name": "Sebastian Bergmann",
  8218. "email": "sebastian@phpunit.de",
  8219. "role": "lead"
  8220. }
  8221. ],
  8222. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8223. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8224. "keywords": [
  8225. "filesystem",
  8226. "iterator"
  8227. ],
  8228. "support": {
  8229. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8230. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8231. },
  8232. "funding": [
  8233. {
  8234. "url": "https://github.com/sebastianbergmann",
  8235. "type": "github"
  8236. }
  8237. ],
  8238. "time": "2021-12-02T12:48:52+00:00"
  8239. },
  8240. {
  8241. "name": "phpunit/php-invoker",
  8242. "version": "3.1.1",
  8243. "source": {
  8244. "type": "git",
  8245. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8246. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8247. },
  8248. "dist": {
  8249. "type": "zip",
  8250. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8251. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8252. "shasum": ""
  8253. },
  8254. "require": {
  8255. "php": ">=7.3"
  8256. },
  8257. "require-dev": {
  8258. "ext-pcntl": "*",
  8259. "phpunit/phpunit": "^9.3"
  8260. },
  8261. "suggest": {
  8262. "ext-pcntl": "*"
  8263. },
  8264. "type": "library",
  8265. "extra": {
  8266. "branch-alias": {
  8267. "dev-master": "3.1-dev"
  8268. }
  8269. },
  8270. "autoload": {
  8271. "classmap": [
  8272. "src/"
  8273. ]
  8274. },
  8275. "notification-url": "https://packagist.org/downloads/",
  8276. "license": [
  8277. "BSD-3-Clause"
  8278. ],
  8279. "authors": [
  8280. {
  8281. "name": "Sebastian Bergmann",
  8282. "email": "sebastian@phpunit.de",
  8283. "role": "lead"
  8284. }
  8285. ],
  8286. "description": "Invoke callables with a timeout",
  8287. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8288. "keywords": [
  8289. "process"
  8290. ],
  8291. "support": {
  8292. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8293. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8294. },
  8295. "funding": [
  8296. {
  8297. "url": "https://github.com/sebastianbergmann",
  8298. "type": "github"
  8299. }
  8300. ],
  8301. "time": "2020-09-28T05:58:55+00:00"
  8302. },
  8303. {
  8304. "name": "phpunit/php-text-template",
  8305. "version": "2.0.4",
  8306. "source": {
  8307. "type": "git",
  8308. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8309. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8310. },
  8311. "dist": {
  8312. "type": "zip",
  8313. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8314. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8315. "shasum": ""
  8316. },
  8317. "require": {
  8318. "php": ">=7.3"
  8319. },
  8320. "require-dev": {
  8321. "phpunit/phpunit": "^9.3"
  8322. },
  8323. "type": "library",
  8324. "extra": {
  8325. "branch-alias": {
  8326. "dev-master": "2.0-dev"
  8327. }
  8328. },
  8329. "autoload": {
  8330. "classmap": [
  8331. "src/"
  8332. ]
  8333. },
  8334. "notification-url": "https://packagist.org/downloads/",
  8335. "license": [
  8336. "BSD-3-Clause"
  8337. ],
  8338. "authors": [
  8339. {
  8340. "name": "Sebastian Bergmann",
  8341. "email": "sebastian@phpunit.de",
  8342. "role": "lead"
  8343. }
  8344. ],
  8345. "description": "Simple template engine.",
  8346. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8347. "keywords": [
  8348. "template"
  8349. ],
  8350. "support": {
  8351. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8352. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8353. },
  8354. "funding": [
  8355. {
  8356. "url": "https://github.com/sebastianbergmann",
  8357. "type": "github"
  8358. }
  8359. ],
  8360. "time": "2020-10-26T05:33:50+00:00"
  8361. },
  8362. {
  8363. "name": "phpunit/php-timer",
  8364. "version": "5.0.3",
  8365. "source": {
  8366. "type": "git",
  8367. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8368. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8369. },
  8370. "dist": {
  8371. "type": "zip",
  8372. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8373. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8374. "shasum": ""
  8375. },
  8376. "require": {
  8377. "php": ">=7.3"
  8378. },
  8379. "require-dev": {
  8380. "phpunit/phpunit": "^9.3"
  8381. },
  8382. "type": "library",
  8383. "extra": {
  8384. "branch-alias": {
  8385. "dev-master": "5.0-dev"
  8386. }
  8387. },
  8388. "autoload": {
  8389. "classmap": [
  8390. "src/"
  8391. ]
  8392. },
  8393. "notification-url": "https://packagist.org/downloads/",
  8394. "license": [
  8395. "BSD-3-Clause"
  8396. ],
  8397. "authors": [
  8398. {
  8399. "name": "Sebastian Bergmann",
  8400. "email": "sebastian@phpunit.de",
  8401. "role": "lead"
  8402. }
  8403. ],
  8404. "description": "Utility class for timing",
  8405. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8406. "keywords": [
  8407. "timer"
  8408. ],
  8409. "support": {
  8410. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8411. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8412. },
  8413. "funding": [
  8414. {
  8415. "url": "https://github.com/sebastianbergmann",
  8416. "type": "github"
  8417. }
  8418. ],
  8419. "time": "2020-10-26T13:16:10+00:00"
  8420. },
  8421. {
  8422. "name": "phpunit/phpunit",
  8423. "version": "9.6.21",
  8424. "source": {
  8425. "type": "git",
  8426. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8427. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa"
  8428. },
  8429. "dist": {
  8430. "type": "zip",
  8431. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  8432. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  8433. "shasum": ""
  8434. },
  8435. "require": {
  8436. "doctrine/instantiator": "^1.5.0 || ^2",
  8437. "ext-dom": "*",
  8438. "ext-json": "*",
  8439. "ext-libxml": "*",
  8440. "ext-mbstring": "*",
  8441. "ext-xml": "*",
  8442. "ext-xmlwriter": "*",
  8443. "myclabs/deep-copy": "^1.12.0",
  8444. "phar-io/manifest": "^2.0.4",
  8445. "phar-io/version": "^3.2.1",
  8446. "php": ">=7.3",
  8447. "phpunit/php-code-coverage": "^9.2.32",
  8448. "phpunit/php-file-iterator": "^3.0.6",
  8449. "phpunit/php-invoker": "^3.1.1",
  8450. "phpunit/php-text-template": "^2.0.4",
  8451. "phpunit/php-timer": "^5.0.3",
  8452. "sebastian/cli-parser": "^1.0.2",
  8453. "sebastian/code-unit": "^1.0.8",
  8454. "sebastian/comparator": "^4.0.8",
  8455. "sebastian/diff": "^4.0.6",
  8456. "sebastian/environment": "^5.1.5",
  8457. "sebastian/exporter": "^4.0.6",
  8458. "sebastian/global-state": "^5.0.7",
  8459. "sebastian/object-enumerator": "^4.0.4",
  8460. "sebastian/resource-operations": "^3.0.4",
  8461. "sebastian/type": "^3.2.1",
  8462. "sebastian/version": "^3.0.2"
  8463. },
  8464. "suggest": {
  8465. "ext-soap": "To be able to generate mocks based on WSDL files",
  8466. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8467. },
  8468. "bin": [
  8469. "phpunit"
  8470. ],
  8471. "type": "library",
  8472. "extra": {
  8473. "branch-alias": {
  8474. "dev-master": "9.6-dev"
  8475. }
  8476. },
  8477. "autoload": {
  8478. "files": [
  8479. "src/Framework/Assert/Functions.php"
  8480. ],
  8481. "classmap": [
  8482. "src/"
  8483. ]
  8484. },
  8485. "notification-url": "https://packagist.org/downloads/",
  8486. "license": [
  8487. "BSD-3-Clause"
  8488. ],
  8489. "authors": [
  8490. {
  8491. "name": "Sebastian Bergmann",
  8492. "email": "sebastian@phpunit.de",
  8493. "role": "lead"
  8494. }
  8495. ],
  8496. "description": "The PHP Unit Testing framework.",
  8497. "homepage": "https://phpunit.de/",
  8498. "keywords": [
  8499. "phpunit",
  8500. "testing",
  8501. "xunit"
  8502. ],
  8503. "support": {
  8504. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8505. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8506. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.21"
  8507. },
  8508. "funding": [
  8509. {
  8510. "url": "https://phpunit.de/sponsors.html",
  8511. "type": "custom"
  8512. },
  8513. {
  8514. "url": "https://github.com/sebastianbergmann",
  8515. "type": "github"
  8516. },
  8517. {
  8518. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8519. "type": "tidelift"
  8520. }
  8521. ],
  8522. "time": "2024-09-19T10:50:18+00:00"
  8523. },
  8524. {
  8525. "name": "sebastian/cli-parser",
  8526. "version": "1.0.2",
  8527. "source": {
  8528. "type": "git",
  8529. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8530. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  8531. },
  8532. "dist": {
  8533. "type": "zip",
  8534. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8535. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8536. "shasum": ""
  8537. },
  8538. "require": {
  8539. "php": ">=7.3"
  8540. },
  8541. "require-dev": {
  8542. "phpunit/phpunit": "^9.3"
  8543. },
  8544. "type": "library",
  8545. "extra": {
  8546. "branch-alias": {
  8547. "dev-master": "1.0-dev"
  8548. }
  8549. },
  8550. "autoload": {
  8551. "classmap": [
  8552. "src/"
  8553. ]
  8554. },
  8555. "notification-url": "https://packagist.org/downloads/",
  8556. "license": [
  8557. "BSD-3-Clause"
  8558. ],
  8559. "authors": [
  8560. {
  8561. "name": "Sebastian Bergmann",
  8562. "email": "sebastian@phpunit.de",
  8563. "role": "lead"
  8564. }
  8565. ],
  8566. "description": "Library for parsing CLI options",
  8567. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8568. "support": {
  8569. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8570. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  8571. },
  8572. "funding": [
  8573. {
  8574. "url": "https://github.com/sebastianbergmann",
  8575. "type": "github"
  8576. }
  8577. ],
  8578. "time": "2024-03-02T06:27:43+00:00"
  8579. },
  8580. {
  8581. "name": "sebastian/code-unit",
  8582. "version": "1.0.8",
  8583. "source": {
  8584. "type": "git",
  8585. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8586. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8587. },
  8588. "dist": {
  8589. "type": "zip",
  8590. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8591. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8592. "shasum": ""
  8593. },
  8594. "require": {
  8595. "php": ">=7.3"
  8596. },
  8597. "require-dev": {
  8598. "phpunit/phpunit": "^9.3"
  8599. },
  8600. "type": "library",
  8601. "extra": {
  8602. "branch-alias": {
  8603. "dev-master": "1.0-dev"
  8604. }
  8605. },
  8606. "autoload": {
  8607. "classmap": [
  8608. "src/"
  8609. ]
  8610. },
  8611. "notification-url": "https://packagist.org/downloads/",
  8612. "license": [
  8613. "BSD-3-Clause"
  8614. ],
  8615. "authors": [
  8616. {
  8617. "name": "Sebastian Bergmann",
  8618. "email": "sebastian@phpunit.de",
  8619. "role": "lead"
  8620. }
  8621. ],
  8622. "description": "Collection of value objects that represent the PHP code units",
  8623. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8624. "support": {
  8625. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8626. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  8627. },
  8628. "funding": [
  8629. {
  8630. "url": "https://github.com/sebastianbergmann",
  8631. "type": "github"
  8632. }
  8633. ],
  8634. "time": "2020-10-26T13:08:54+00:00"
  8635. },
  8636. {
  8637. "name": "sebastian/code-unit-reverse-lookup",
  8638. "version": "2.0.3",
  8639. "source": {
  8640. "type": "git",
  8641. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8642. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  8643. },
  8644. "dist": {
  8645. "type": "zip",
  8646. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8647. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8648. "shasum": ""
  8649. },
  8650. "require": {
  8651. "php": ">=7.3"
  8652. },
  8653. "require-dev": {
  8654. "phpunit/phpunit": "^9.3"
  8655. },
  8656. "type": "library",
  8657. "extra": {
  8658. "branch-alias": {
  8659. "dev-master": "2.0-dev"
  8660. }
  8661. },
  8662. "autoload": {
  8663. "classmap": [
  8664. "src/"
  8665. ]
  8666. },
  8667. "notification-url": "https://packagist.org/downloads/",
  8668. "license": [
  8669. "BSD-3-Clause"
  8670. ],
  8671. "authors": [
  8672. {
  8673. "name": "Sebastian Bergmann",
  8674. "email": "sebastian@phpunit.de"
  8675. }
  8676. ],
  8677. "description": "Looks up which function or method a line of code belongs to",
  8678. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8679. "support": {
  8680. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8681. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  8682. },
  8683. "funding": [
  8684. {
  8685. "url": "https://github.com/sebastianbergmann",
  8686. "type": "github"
  8687. }
  8688. ],
  8689. "time": "2020-09-28T05:30:19+00:00"
  8690. },
  8691. {
  8692. "name": "sebastian/comparator",
  8693. "version": "4.0.8",
  8694. "source": {
  8695. "type": "git",
  8696. "url": "https://github.com/sebastianbergmann/comparator.git",
  8697. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  8698. },
  8699. "dist": {
  8700. "type": "zip",
  8701. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  8702. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  8703. "shasum": ""
  8704. },
  8705. "require": {
  8706. "php": ">=7.3",
  8707. "sebastian/diff": "^4.0",
  8708. "sebastian/exporter": "^4.0"
  8709. },
  8710. "require-dev": {
  8711. "phpunit/phpunit": "^9.3"
  8712. },
  8713. "type": "library",
  8714. "extra": {
  8715. "branch-alias": {
  8716. "dev-master": "4.0-dev"
  8717. }
  8718. },
  8719. "autoload": {
  8720. "classmap": [
  8721. "src/"
  8722. ]
  8723. },
  8724. "notification-url": "https://packagist.org/downloads/",
  8725. "license": [
  8726. "BSD-3-Clause"
  8727. ],
  8728. "authors": [
  8729. {
  8730. "name": "Sebastian Bergmann",
  8731. "email": "sebastian@phpunit.de"
  8732. },
  8733. {
  8734. "name": "Jeff Welch",
  8735. "email": "whatthejeff@gmail.com"
  8736. },
  8737. {
  8738. "name": "Volker Dusch",
  8739. "email": "github@wallbash.com"
  8740. },
  8741. {
  8742. "name": "Bernhard Schussek",
  8743. "email": "bschussek@2bepublished.at"
  8744. }
  8745. ],
  8746. "description": "Provides the functionality to compare PHP values for equality",
  8747. "homepage": "https://github.com/sebastianbergmann/comparator",
  8748. "keywords": [
  8749. "comparator",
  8750. "compare",
  8751. "equality"
  8752. ],
  8753. "support": {
  8754. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8755. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  8756. },
  8757. "funding": [
  8758. {
  8759. "url": "https://github.com/sebastianbergmann",
  8760. "type": "github"
  8761. }
  8762. ],
  8763. "time": "2022-09-14T12:41:17+00:00"
  8764. },
  8765. {
  8766. "name": "sebastian/complexity",
  8767. "version": "2.0.3",
  8768. "source": {
  8769. "type": "git",
  8770. "url": "https://github.com/sebastianbergmann/complexity.git",
  8771. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  8772. },
  8773. "dist": {
  8774. "type": "zip",
  8775. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  8776. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  8777. "shasum": ""
  8778. },
  8779. "require": {
  8780. "nikic/php-parser": "^4.18 || ^5.0",
  8781. "php": ">=7.3"
  8782. },
  8783. "require-dev": {
  8784. "phpunit/phpunit": "^9.3"
  8785. },
  8786. "type": "library",
  8787. "extra": {
  8788. "branch-alias": {
  8789. "dev-master": "2.0-dev"
  8790. }
  8791. },
  8792. "autoload": {
  8793. "classmap": [
  8794. "src/"
  8795. ]
  8796. },
  8797. "notification-url": "https://packagist.org/downloads/",
  8798. "license": [
  8799. "BSD-3-Clause"
  8800. ],
  8801. "authors": [
  8802. {
  8803. "name": "Sebastian Bergmann",
  8804. "email": "sebastian@phpunit.de",
  8805. "role": "lead"
  8806. }
  8807. ],
  8808. "description": "Library for calculating the complexity of PHP code units",
  8809. "homepage": "https://github.com/sebastianbergmann/complexity",
  8810. "support": {
  8811. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8812. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  8813. },
  8814. "funding": [
  8815. {
  8816. "url": "https://github.com/sebastianbergmann",
  8817. "type": "github"
  8818. }
  8819. ],
  8820. "time": "2023-12-22T06:19:30+00:00"
  8821. },
  8822. {
  8823. "name": "sebastian/diff",
  8824. "version": "4.0.6",
  8825. "source": {
  8826. "type": "git",
  8827. "url": "https://github.com/sebastianbergmann/diff.git",
  8828. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  8829. },
  8830. "dist": {
  8831. "type": "zip",
  8832. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  8833. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  8834. "shasum": ""
  8835. },
  8836. "require": {
  8837. "php": ">=7.3"
  8838. },
  8839. "require-dev": {
  8840. "phpunit/phpunit": "^9.3",
  8841. "symfony/process": "^4.2 || ^5"
  8842. },
  8843. "type": "library",
  8844. "extra": {
  8845. "branch-alias": {
  8846. "dev-master": "4.0-dev"
  8847. }
  8848. },
  8849. "autoload": {
  8850. "classmap": [
  8851. "src/"
  8852. ]
  8853. },
  8854. "notification-url": "https://packagist.org/downloads/",
  8855. "license": [
  8856. "BSD-3-Clause"
  8857. ],
  8858. "authors": [
  8859. {
  8860. "name": "Sebastian Bergmann",
  8861. "email": "sebastian@phpunit.de"
  8862. },
  8863. {
  8864. "name": "Kore Nordmann",
  8865. "email": "mail@kore-nordmann.de"
  8866. }
  8867. ],
  8868. "description": "Diff implementation",
  8869. "homepage": "https://github.com/sebastianbergmann/diff",
  8870. "keywords": [
  8871. "diff",
  8872. "udiff",
  8873. "unidiff",
  8874. "unified diff"
  8875. ],
  8876. "support": {
  8877. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8878. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  8879. },
  8880. "funding": [
  8881. {
  8882. "url": "https://github.com/sebastianbergmann",
  8883. "type": "github"
  8884. }
  8885. ],
  8886. "time": "2024-03-02T06:30:58+00:00"
  8887. },
  8888. {
  8889. "name": "sebastian/environment",
  8890. "version": "5.1.5",
  8891. "source": {
  8892. "type": "git",
  8893. "url": "https://github.com/sebastianbergmann/environment.git",
  8894. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  8895. },
  8896. "dist": {
  8897. "type": "zip",
  8898. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  8899. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  8900. "shasum": ""
  8901. },
  8902. "require": {
  8903. "php": ">=7.3"
  8904. },
  8905. "require-dev": {
  8906. "phpunit/phpunit": "^9.3"
  8907. },
  8908. "suggest": {
  8909. "ext-posix": "*"
  8910. },
  8911. "type": "library",
  8912. "extra": {
  8913. "branch-alias": {
  8914. "dev-master": "5.1-dev"
  8915. }
  8916. },
  8917. "autoload": {
  8918. "classmap": [
  8919. "src/"
  8920. ]
  8921. },
  8922. "notification-url": "https://packagist.org/downloads/",
  8923. "license": [
  8924. "BSD-3-Clause"
  8925. ],
  8926. "authors": [
  8927. {
  8928. "name": "Sebastian Bergmann",
  8929. "email": "sebastian@phpunit.de"
  8930. }
  8931. ],
  8932. "description": "Provides functionality to handle HHVM/PHP environments",
  8933. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8934. "keywords": [
  8935. "Xdebug",
  8936. "environment",
  8937. "hhvm"
  8938. ],
  8939. "support": {
  8940. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8941. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  8942. },
  8943. "funding": [
  8944. {
  8945. "url": "https://github.com/sebastianbergmann",
  8946. "type": "github"
  8947. }
  8948. ],
  8949. "time": "2023-02-03T06:03:51+00:00"
  8950. },
  8951. {
  8952. "name": "sebastian/exporter",
  8953. "version": "4.0.6",
  8954. "source": {
  8955. "type": "git",
  8956. "url": "https://github.com/sebastianbergmann/exporter.git",
  8957. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  8958. },
  8959. "dist": {
  8960. "type": "zip",
  8961. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  8962. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  8963. "shasum": ""
  8964. },
  8965. "require": {
  8966. "php": ">=7.3",
  8967. "sebastian/recursion-context": "^4.0"
  8968. },
  8969. "require-dev": {
  8970. "ext-mbstring": "*",
  8971. "phpunit/phpunit": "^9.3"
  8972. },
  8973. "type": "library",
  8974. "extra": {
  8975. "branch-alias": {
  8976. "dev-master": "4.0-dev"
  8977. }
  8978. },
  8979. "autoload": {
  8980. "classmap": [
  8981. "src/"
  8982. ]
  8983. },
  8984. "notification-url": "https://packagist.org/downloads/",
  8985. "license": [
  8986. "BSD-3-Clause"
  8987. ],
  8988. "authors": [
  8989. {
  8990. "name": "Sebastian Bergmann",
  8991. "email": "sebastian@phpunit.de"
  8992. },
  8993. {
  8994. "name": "Jeff Welch",
  8995. "email": "whatthejeff@gmail.com"
  8996. },
  8997. {
  8998. "name": "Volker Dusch",
  8999. "email": "github@wallbash.com"
  9000. },
  9001. {
  9002. "name": "Adam Harvey",
  9003. "email": "aharvey@php.net"
  9004. },
  9005. {
  9006. "name": "Bernhard Schussek",
  9007. "email": "bschussek@gmail.com"
  9008. }
  9009. ],
  9010. "description": "Provides the functionality to export PHP variables for visualization",
  9011. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9012. "keywords": [
  9013. "export",
  9014. "exporter"
  9015. ],
  9016. "support": {
  9017. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9018. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  9019. },
  9020. "funding": [
  9021. {
  9022. "url": "https://github.com/sebastianbergmann",
  9023. "type": "github"
  9024. }
  9025. ],
  9026. "time": "2024-03-02T06:33:00+00:00"
  9027. },
  9028. {
  9029. "name": "sebastian/global-state",
  9030. "version": "5.0.7",
  9031. "source": {
  9032. "type": "git",
  9033. "url": "https://github.com/sebastianbergmann/global-state.git",
  9034. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  9035. },
  9036. "dist": {
  9037. "type": "zip",
  9038. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9039. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9040. "shasum": ""
  9041. },
  9042. "require": {
  9043. "php": ">=7.3",
  9044. "sebastian/object-reflector": "^2.0",
  9045. "sebastian/recursion-context": "^4.0"
  9046. },
  9047. "require-dev": {
  9048. "ext-dom": "*",
  9049. "phpunit/phpunit": "^9.3"
  9050. },
  9051. "suggest": {
  9052. "ext-uopz": "*"
  9053. },
  9054. "type": "library",
  9055. "extra": {
  9056. "branch-alias": {
  9057. "dev-master": "5.0-dev"
  9058. }
  9059. },
  9060. "autoload": {
  9061. "classmap": [
  9062. "src/"
  9063. ]
  9064. },
  9065. "notification-url": "https://packagist.org/downloads/",
  9066. "license": [
  9067. "BSD-3-Clause"
  9068. ],
  9069. "authors": [
  9070. {
  9071. "name": "Sebastian Bergmann",
  9072. "email": "sebastian@phpunit.de"
  9073. }
  9074. ],
  9075. "description": "Snapshotting of global state",
  9076. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9077. "keywords": [
  9078. "global state"
  9079. ],
  9080. "support": {
  9081. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9082. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  9083. },
  9084. "funding": [
  9085. {
  9086. "url": "https://github.com/sebastianbergmann",
  9087. "type": "github"
  9088. }
  9089. ],
  9090. "time": "2024-03-02T06:35:11+00:00"
  9091. },
  9092. {
  9093. "name": "sebastian/lines-of-code",
  9094. "version": "1.0.4",
  9095. "source": {
  9096. "type": "git",
  9097. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9098. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9099. },
  9100. "dist": {
  9101. "type": "zip",
  9102. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9103. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9104. "shasum": ""
  9105. },
  9106. "require": {
  9107. "nikic/php-parser": "^4.18 || ^5.0",
  9108. "php": ">=7.3"
  9109. },
  9110. "require-dev": {
  9111. "phpunit/phpunit": "^9.3"
  9112. },
  9113. "type": "library",
  9114. "extra": {
  9115. "branch-alias": {
  9116. "dev-master": "1.0-dev"
  9117. }
  9118. },
  9119. "autoload": {
  9120. "classmap": [
  9121. "src/"
  9122. ]
  9123. },
  9124. "notification-url": "https://packagist.org/downloads/",
  9125. "license": [
  9126. "BSD-3-Clause"
  9127. ],
  9128. "authors": [
  9129. {
  9130. "name": "Sebastian Bergmann",
  9131. "email": "sebastian@phpunit.de",
  9132. "role": "lead"
  9133. }
  9134. ],
  9135. "description": "Library for counting the lines of code in PHP source code",
  9136. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9137. "support": {
  9138. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9139. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9140. },
  9141. "funding": [
  9142. {
  9143. "url": "https://github.com/sebastianbergmann",
  9144. "type": "github"
  9145. }
  9146. ],
  9147. "time": "2023-12-22T06:20:34+00:00"
  9148. },
  9149. {
  9150. "name": "sebastian/object-enumerator",
  9151. "version": "4.0.4",
  9152. "source": {
  9153. "type": "git",
  9154. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9155. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9156. },
  9157. "dist": {
  9158. "type": "zip",
  9159. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9160. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9161. "shasum": ""
  9162. },
  9163. "require": {
  9164. "php": ">=7.3",
  9165. "sebastian/object-reflector": "^2.0",
  9166. "sebastian/recursion-context": "^4.0"
  9167. },
  9168. "require-dev": {
  9169. "phpunit/phpunit": "^9.3"
  9170. },
  9171. "type": "library",
  9172. "extra": {
  9173. "branch-alias": {
  9174. "dev-master": "4.0-dev"
  9175. }
  9176. },
  9177. "autoload": {
  9178. "classmap": [
  9179. "src/"
  9180. ]
  9181. },
  9182. "notification-url": "https://packagist.org/downloads/",
  9183. "license": [
  9184. "BSD-3-Clause"
  9185. ],
  9186. "authors": [
  9187. {
  9188. "name": "Sebastian Bergmann",
  9189. "email": "sebastian@phpunit.de"
  9190. }
  9191. ],
  9192. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9193. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9194. "support": {
  9195. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9196. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9197. },
  9198. "funding": [
  9199. {
  9200. "url": "https://github.com/sebastianbergmann",
  9201. "type": "github"
  9202. }
  9203. ],
  9204. "time": "2020-10-26T13:12:34+00:00"
  9205. },
  9206. {
  9207. "name": "sebastian/object-reflector",
  9208. "version": "2.0.4",
  9209. "source": {
  9210. "type": "git",
  9211. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9212. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9213. },
  9214. "dist": {
  9215. "type": "zip",
  9216. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9217. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9218. "shasum": ""
  9219. },
  9220. "require": {
  9221. "php": ">=7.3"
  9222. },
  9223. "require-dev": {
  9224. "phpunit/phpunit": "^9.3"
  9225. },
  9226. "type": "library",
  9227. "extra": {
  9228. "branch-alias": {
  9229. "dev-master": "2.0-dev"
  9230. }
  9231. },
  9232. "autoload": {
  9233. "classmap": [
  9234. "src/"
  9235. ]
  9236. },
  9237. "notification-url": "https://packagist.org/downloads/",
  9238. "license": [
  9239. "BSD-3-Clause"
  9240. ],
  9241. "authors": [
  9242. {
  9243. "name": "Sebastian Bergmann",
  9244. "email": "sebastian@phpunit.de"
  9245. }
  9246. ],
  9247. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9248. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9249. "support": {
  9250. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9251. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9252. },
  9253. "funding": [
  9254. {
  9255. "url": "https://github.com/sebastianbergmann",
  9256. "type": "github"
  9257. }
  9258. ],
  9259. "time": "2020-10-26T13:14:26+00:00"
  9260. },
  9261. {
  9262. "name": "sebastian/recursion-context",
  9263. "version": "4.0.5",
  9264. "source": {
  9265. "type": "git",
  9266. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9267. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9268. },
  9269. "dist": {
  9270. "type": "zip",
  9271. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9272. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9273. "shasum": ""
  9274. },
  9275. "require": {
  9276. "php": ">=7.3"
  9277. },
  9278. "require-dev": {
  9279. "phpunit/phpunit": "^9.3"
  9280. },
  9281. "type": "library",
  9282. "extra": {
  9283. "branch-alias": {
  9284. "dev-master": "4.0-dev"
  9285. }
  9286. },
  9287. "autoload": {
  9288. "classmap": [
  9289. "src/"
  9290. ]
  9291. },
  9292. "notification-url": "https://packagist.org/downloads/",
  9293. "license": [
  9294. "BSD-3-Clause"
  9295. ],
  9296. "authors": [
  9297. {
  9298. "name": "Sebastian Bergmann",
  9299. "email": "sebastian@phpunit.de"
  9300. },
  9301. {
  9302. "name": "Jeff Welch",
  9303. "email": "whatthejeff@gmail.com"
  9304. },
  9305. {
  9306. "name": "Adam Harvey",
  9307. "email": "aharvey@php.net"
  9308. }
  9309. ],
  9310. "description": "Provides functionality to recursively process PHP variables",
  9311. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9312. "support": {
  9313. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9314. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9315. },
  9316. "funding": [
  9317. {
  9318. "url": "https://github.com/sebastianbergmann",
  9319. "type": "github"
  9320. }
  9321. ],
  9322. "time": "2023-02-03T06:07:39+00:00"
  9323. },
  9324. {
  9325. "name": "sebastian/resource-operations",
  9326. "version": "3.0.4",
  9327. "source": {
  9328. "type": "git",
  9329. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9330. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  9331. },
  9332. "dist": {
  9333. "type": "zip",
  9334. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9335. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9336. "shasum": ""
  9337. },
  9338. "require": {
  9339. "php": ">=7.3"
  9340. },
  9341. "require-dev": {
  9342. "phpunit/phpunit": "^9.0"
  9343. },
  9344. "type": "library",
  9345. "extra": {
  9346. "branch-alias": {
  9347. "dev-main": "3.0-dev"
  9348. }
  9349. },
  9350. "autoload": {
  9351. "classmap": [
  9352. "src/"
  9353. ]
  9354. },
  9355. "notification-url": "https://packagist.org/downloads/",
  9356. "license": [
  9357. "BSD-3-Clause"
  9358. ],
  9359. "authors": [
  9360. {
  9361. "name": "Sebastian Bergmann",
  9362. "email": "sebastian@phpunit.de"
  9363. }
  9364. ],
  9365. "description": "Provides a list of PHP built-in functions that operate on resources",
  9366. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9367. "support": {
  9368. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  9369. },
  9370. "funding": [
  9371. {
  9372. "url": "https://github.com/sebastianbergmann",
  9373. "type": "github"
  9374. }
  9375. ],
  9376. "time": "2024-03-14T16:00:52+00:00"
  9377. },
  9378. {
  9379. "name": "sebastian/type",
  9380. "version": "3.2.1",
  9381. "source": {
  9382. "type": "git",
  9383. "url": "https://github.com/sebastianbergmann/type.git",
  9384. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9385. },
  9386. "dist": {
  9387. "type": "zip",
  9388. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9389. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9390. "shasum": ""
  9391. },
  9392. "require": {
  9393. "php": ">=7.3"
  9394. },
  9395. "require-dev": {
  9396. "phpunit/phpunit": "^9.5"
  9397. },
  9398. "type": "library",
  9399. "extra": {
  9400. "branch-alias": {
  9401. "dev-master": "3.2-dev"
  9402. }
  9403. },
  9404. "autoload": {
  9405. "classmap": [
  9406. "src/"
  9407. ]
  9408. },
  9409. "notification-url": "https://packagist.org/downloads/",
  9410. "license": [
  9411. "BSD-3-Clause"
  9412. ],
  9413. "authors": [
  9414. {
  9415. "name": "Sebastian Bergmann",
  9416. "email": "sebastian@phpunit.de",
  9417. "role": "lead"
  9418. }
  9419. ],
  9420. "description": "Collection of value objects that represent the types of the PHP type system",
  9421. "homepage": "https://github.com/sebastianbergmann/type",
  9422. "support": {
  9423. "issues": "https://github.com/sebastianbergmann/type/issues",
  9424. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9425. },
  9426. "funding": [
  9427. {
  9428. "url": "https://github.com/sebastianbergmann",
  9429. "type": "github"
  9430. }
  9431. ],
  9432. "time": "2023-02-03T06:13:03+00:00"
  9433. },
  9434. {
  9435. "name": "sebastian/version",
  9436. "version": "3.0.2",
  9437. "source": {
  9438. "type": "git",
  9439. "url": "https://github.com/sebastianbergmann/version.git",
  9440. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9441. },
  9442. "dist": {
  9443. "type": "zip",
  9444. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9445. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9446. "shasum": ""
  9447. },
  9448. "require": {
  9449. "php": ">=7.3"
  9450. },
  9451. "type": "library",
  9452. "extra": {
  9453. "branch-alias": {
  9454. "dev-master": "3.0-dev"
  9455. }
  9456. },
  9457. "autoload": {
  9458. "classmap": [
  9459. "src/"
  9460. ]
  9461. },
  9462. "notification-url": "https://packagist.org/downloads/",
  9463. "license": [
  9464. "BSD-3-Clause"
  9465. ],
  9466. "authors": [
  9467. {
  9468. "name": "Sebastian Bergmann",
  9469. "email": "sebastian@phpunit.de",
  9470. "role": "lead"
  9471. }
  9472. ],
  9473. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9474. "homepage": "https://github.com/sebastianbergmann/version",
  9475. "support": {
  9476. "issues": "https://github.com/sebastianbergmann/version/issues",
  9477. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9478. },
  9479. "funding": [
  9480. {
  9481. "url": "https://github.com/sebastianbergmann",
  9482. "type": "github"
  9483. }
  9484. ],
  9485. "time": "2020-09-28T06:39:44+00:00"
  9486. },
  9487. {
  9488. "name": "symfony/browser-kit",
  9489. "version": "v7.1.1",
  9490. "source": {
  9491. "type": "git",
  9492. "url": "https://github.com/symfony/browser-kit.git",
  9493. "reference": "9c13742e3175b5815e272b981876ae329bec2040"
  9494. },
  9495. "dist": {
  9496. "type": "zip",
  9497. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9c13742e3175b5815e272b981876ae329bec2040",
  9498. "reference": "9c13742e3175b5815e272b981876ae329bec2040",
  9499. "shasum": ""
  9500. },
  9501. "require": {
  9502. "php": ">=8.2",
  9503. "symfony/dom-crawler": "^6.4|^7.0"
  9504. },
  9505. "require-dev": {
  9506. "symfony/css-selector": "^6.4|^7.0",
  9507. "symfony/http-client": "^6.4|^7.0",
  9508. "symfony/mime": "^6.4|^7.0",
  9509. "symfony/process": "^6.4|^7.0"
  9510. },
  9511. "type": "library",
  9512. "autoload": {
  9513. "psr-4": {
  9514. "Symfony\\Component\\BrowserKit\\": ""
  9515. },
  9516. "exclude-from-classmap": [
  9517. "/Tests/"
  9518. ]
  9519. },
  9520. "notification-url": "https://packagist.org/downloads/",
  9521. "license": [
  9522. "MIT"
  9523. ],
  9524. "authors": [
  9525. {
  9526. "name": "Fabien Potencier",
  9527. "email": "fabien@symfony.com"
  9528. },
  9529. {
  9530. "name": "Symfony Community",
  9531. "homepage": "https://symfony.com/contributors"
  9532. }
  9533. ],
  9534. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9535. "homepage": "https://symfony.com",
  9536. "support": {
  9537. "source": "https://github.com/symfony/browser-kit/tree/v7.1.1"
  9538. },
  9539. "funding": [
  9540. {
  9541. "url": "https://symfony.com/sponsor",
  9542. "type": "custom"
  9543. },
  9544. {
  9545. "url": "https://github.com/fabpot",
  9546. "type": "github"
  9547. },
  9548. {
  9549. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9550. "type": "tidelift"
  9551. }
  9552. ],
  9553. "time": "2024-05-31T14:57:53+00:00"
  9554. },
  9555. {
  9556. "name": "symfony/css-selector",
  9557. "version": "v7.1.1",
  9558. "source": {
  9559. "type": "git",
  9560. "url": "https://github.com/symfony/css-selector.git",
  9561. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  9562. },
  9563. "dist": {
  9564. "type": "zip",
  9565. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  9566. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  9567. "shasum": ""
  9568. },
  9569. "require": {
  9570. "php": ">=8.2"
  9571. },
  9572. "type": "library",
  9573. "autoload": {
  9574. "psr-4": {
  9575. "Symfony\\Component\\CssSelector\\": ""
  9576. },
  9577. "exclude-from-classmap": [
  9578. "/Tests/"
  9579. ]
  9580. },
  9581. "notification-url": "https://packagist.org/downloads/",
  9582. "license": [
  9583. "MIT"
  9584. ],
  9585. "authors": [
  9586. {
  9587. "name": "Fabien Potencier",
  9588. "email": "fabien@symfony.com"
  9589. },
  9590. {
  9591. "name": "Jean-François Simon",
  9592. "email": "jeanfrancois.simon@sensiolabs.com"
  9593. },
  9594. {
  9595. "name": "Symfony Community",
  9596. "homepage": "https://symfony.com/contributors"
  9597. }
  9598. ],
  9599. "description": "Converts CSS selectors to XPath expressions",
  9600. "homepage": "https://symfony.com",
  9601. "support": {
  9602. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  9603. },
  9604. "funding": [
  9605. {
  9606. "url": "https://symfony.com/sponsor",
  9607. "type": "custom"
  9608. },
  9609. {
  9610. "url": "https://github.com/fabpot",
  9611. "type": "github"
  9612. },
  9613. {
  9614. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9615. "type": "tidelift"
  9616. }
  9617. ],
  9618. "time": "2024-05-31T14:57:53+00:00"
  9619. },
  9620. {
  9621. "name": "symfony/debug-bundle",
  9622. "version": "v7.1.1",
  9623. "source": {
  9624. "type": "git",
  9625. "url": "https://github.com/symfony/debug-bundle.git",
  9626. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f"
  9627. },
  9628. "dist": {
  9629. "type": "zip",
  9630. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/aa024d28ce7ce0c6a16ee57c066838bece92893f",
  9631. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f",
  9632. "shasum": ""
  9633. },
  9634. "require": {
  9635. "ext-xml": "*",
  9636. "php": ">=8.2",
  9637. "symfony/dependency-injection": "^6.4|^7.0",
  9638. "symfony/http-kernel": "^6.4|^7.0",
  9639. "symfony/twig-bridge": "^6.4|^7.0",
  9640. "symfony/var-dumper": "^6.4|^7.0"
  9641. },
  9642. "conflict": {
  9643. "symfony/config": "<6.4",
  9644. "symfony/dependency-injection": "<6.4"
  9645. },
  9646. "require-dev": {
  9647. "symfony/config": "^6.4|^7.0",
  9648. "symfony/web-profiler-bundle": "^6.4|^7.0"
  9649. },
  9650. "type": "symfony-bundle",
  9651. "autoload": {
  9652. "psr-4": {
  9653. "Symfony\\Bundle\\DebugBundle\\": ""
  9654. },
  9655. "exclude-from-classmap": [
  9656. "/Tests/"
  9657. ]
  9658. },
  9659. "notification-url": "https://packagist.org/downloads/",
  9660. "license": [
  9661. "MIT"
  9662. ],
  9663. "authors": [
  9664. {
  9665. "name": "Fabien Potencier",
  9666. "email": "fabien@symfony.com"
  9667. },
  9668. {
  9669. "name": "Symfony Community",
  9670. "homepage": "https://symfony.com/contributors"
  9671. }
  9672. ],
  9673. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  9674. "homepage": "https://symfony.com",
  9675. "support": {
  9676. "source": "https://github.com/symfony/debug-bundle/tree/v7.1.1"
  9677. },
  9678. "funding": [
  9679. {
  9680. "url": "https://symfony.com/sponsor",
  9681. "type": "custom"
  9682. },
  9683. {
  9684. "url": "https://github.com/fabpot",
  9685. "type": "github"
  9686. },
  9687. {
  9688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9689. "type": "tidelift"
  9690. }
  9691. ],
  9692. "time": "2024-05-31T14:55:39+00:00"
  9693. },
  9694. {
  9695. "name": "symfony/dom-crawler",
  9696. "version": "v7.1.5",
  9697. "source": {
  9698. "type": "git",
  9699. "url": "https://github.com/symfony/dom-crawler.git",
  9700. "reference": "b92af238457a7cdd2738f941cd525d76313e8283"
  9701. },
  9702. "dist": {
  9703. "type": "zip",
  9704. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b92af238457a7cdd2738f941cd525d76313e8283",
  9705. "reference": "b92af238457a7cdd2738f941cd525d76313e8283",
  9706. "shasum": ""
  9707. },
  9708. "require": {
  9709. "masterminds/html5": "^2.6",
  9710. "php": ">=8.2",
  9711. "symfony/polyfill-ctype": "~1.8",
  9712. "symfony/polyfill-mbstring": "~1.0"
  9713. },
  9714. "require-dev": {
  9715. "symfony/css-selector": "^6.4|^7.0"
  9716. },
  9717. "type": "library",
  9718. "autoload": {
  9719. "psr-4": {
  9720. "Symfony\\Component\\DomCrawler\\": ""
  9721. },
  9722. "exclude-from-classmap": [
  9723. "/Tests/"
  9724. ]
  9725. },
  9726. "notification-url": "https://packagist.org/downloads/",
  9727. "license": [
  9728. "MIT"
  9729. ],
  9730. "authors": [
  9731. {
  9732. "name": "Fabien Potencier",
  9733. "email": "fabien@symfony.com"
  9734. },
  9735. {
  9736. "name": "Symfony Community",
  9737. "homepage": "https://symfony.com/contributors"
  9738. }
  9739. ],
  9740. "description": "Eases DOM navigation for HTML and XML documents",
  9741. "homepage": "https://symfony.com",
  9742. "support": {
  9743. "source": "https://github.com/symfony/dom-crawler/tree/v7.1.5"
  9744. },
  9745. "funding": [
  9746. {
  9747. "url": "https://symfony.com/sponsor",
  9748. "type": "custom"
  9749. },
  9750. {
  9751. "url": "https://github.com/fabpot",
  9752. "type": "github"
  9753. },
  9754. {
  9755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9756. "type": "tidelift"
  9757. }
  9758. ],
  9759. "time": "2024-09-15T06:48:17+00:00"
  9760. },
  9761. {
  9762. "name": "symfony/maker-bundle",
  9763. "version": "v1.61.0",
  9764. "source": {
  9765. "type": "git",
  9766. "url": "https://github.com/symfony/maker-bundle.git",
  9767. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18"
  9768. },
  9769. "dist": {
  9770. "type": "zip",
  9771. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  9772. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  9773. "shasum": ""
  9774. },
  9775. "require": {
  9776. "doctrine/inflector": "^2.0",
  9777. "nikic/php-parser": "^4.18|^5.0",
  9778. "php": ">=8.1",
  9779. "symfony/config": "^6.4|^7.0",
  9780. "symfony/console": "^6.4|^7.0",
  9781. "symfony/dependency-injection": "^6.4|^7.0",
  9782. "symfony/deprecation-contracts": "^2.2|^3",
  9783. "symfony/filesystem": "^6.4|^7.0",
  9784. "symfony/finder": "^6.4|^7.0",
  9785. "symfony/framework-bundle": "^6.4|^7.0",
  9786. "symfony/http-kernel": "^6.4|^7.0",
  9787. "symfony/process": "^6.4|^7.0"
  9788. },
  9789. "conflict": {
  9790. "doctrine/doctrine-bundle": "<2.10",
  9791. "doctrine/orm": "<2.15"
  9792. },
  9793. "require-dev": {
  9794. "composer/semver": "^3.0",
  9795. "doctrine/doctrine-bundle": "^2.5.0",
  9796. "doctrine/orm": "^2.15|^3",
  9797. "symfony/http-client": "^6.4|^7.0",
  9798. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  9799. "symfony/security-core": "^6.4|^7.0",
  9800. "symfony/yaml": "^6.4|^7.0",
  9801. "twig/twig": "^3.0|^4.x-dev"
  9802. },
  9803. "type": "symfony-bundle",
  9804. "extra": {
  9805. "branch-alias": {
  9806. "dev-main": "1.x-dev"
  9807. }
  9808. },
  9809. "autoload": {
  9810. "psr-4": {
  9811. "Symfony\\Bundle\\MakerBundle\\": "src/"
  9812. }
  9813. },
  9814. "notification-url": "https://packagist.org/downloads/",
  9815. "license": [
  9816. "MIT"
  9817. ],
  9818. "authors": [
  9819. {
  9820. "name": "Symfony Community",
  9821. "homepage": "https://symfony.com/contributors"
  9822. }
  9823. ],
  9824. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  9825. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  9826. "keywords": [
  9827. "code generator",
  9828. "dev",
  9829. "generator",
  9830. "scaffold",
  9831. "scaffolding"
  9832. ],
  9833. "support": {
  9834. "issues": "https://github.com/symfony/maker-bundle/issues",
  9835. "source": "https://github.com/symfony/maker-bundle/tree/v1.61.0"
  9836. },
  9837. "funding": [
  9838. {
  9839. "url": "https://symfony.com/sponsor",
  9840. "type": "custom"
  9841. },
  9842. {
  9843. "url": "https://github.com/fabpot",
  9844. "type": "github"
  9845. },
  9846. {
  9847. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9848. "type": "tidelift"
  9849. }
  9850. ],
  9851. "time": "2024-08-29T22:50:23+00:00"
  9852. },
  9853. {
  9854. "name": "symfony/phpunit-bridge",
  9855. "version": "v7.1.4",
  9856. "source": {
  9857. "type": "git",
  9858. "url": "https://github.com/symfony/phpunit-bridge.git",
  9859. "reference": "e876eb90e32a8fc4c4911d458e09f88d65877d1c"
  9860. },
  9861. "dist": {
  9862. "type": "zip",
  9863. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/e876eb90e32a8fc4c4911d458e09f88d65877d1c",
  9864. "reference": "e876eb90e32a8fc4c4911d458e09f88d65877d1c",
  9865. "shasum": ""
  9866. },
  9867. "require": {
  9868. "php": ">=7.2.5"
  9869. },
  9870. "conflict": {
  9871. "phpunit/phpunit": "<7.5|9.1.2"
  9872. },
  9873. "require-dev": {
  9874. "symfony/deprecation-contracts": "^2.5|^3.0",
  9875. "symfony/error-handler": "^5.4|^6.4|^7.0",
  9876. "symfony/polyfill-php81": "^1.27"
  9877. },
  9878. "bin": [
  9879. "bin/simple-phpunit"
  9880. ],
  9881. "type": "symfony-bridge",
  9882. "extra": {
  9883. "thanks": {
  9884. "name": "phpunit/phpunit",
  9885. "url": "https://github.com/sebastianbergmann/phpunit"
  9886. }
  9887. },
  9888. "autoload": {
  9889. "files": [
  9890. "bootstrap.php"
  9891. ],
  9892. "psr-4": {
  9893. "Symfony\\Bridge\\PhpUnit\\": ""
  9894. },
  9895. "exclude-from-classmap": [
  9896. "/Tests/",
  9897. "/bin/"
  9898. ]
  9899. },
  9900. "notification-url": "https://packagist.org/downloads/",
  9901. "license": [
  9902. "MIT"
  9903. ],
  9904. "authors": [
  9905. {
  9906. "name": "Nicolas Grekas",
  9907. "email": "p@tchwork.com"
  9908. },
  9909. {
  9910. "name": "Symfony Community",
  9911. "homepage": "https://symfony.com/contributors"
  9912. }
  9913. ],
  9914. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  9915. "homepage": "https://symfony.com",
  9916. "support": {
  9917. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.1.4"
  9918. },
  9919. "funding": [
  9920. {
  9921. "url": "https://symfony.com/sponsor",
  9922. "type": "custom"
  9923. },
  9924. {
  9925. "url": "https://github.com/fabpot",
  9926. "type": "github"
  9927. },
  9928. {
  9929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9930. "type": "tidelift"
  9931. }
  9932. ],
  9933. "time": "2024-08-13T14:28:19+00:00"
  9934. },
  9935. {
  9936. "name": "symfony/web-profiler-bundle",
  9937. "version": "v7.1.4",
  9938. "source": {
  9939. "type": "git",
  9940. "url": "https://github.com/symfony/web-profiler-bundle.git",
  9941. "reference": "3cfc775277a8f2dacdd0f72d196bc87b272a763f"
  9942. },
  9943. "dist": {
  9944. "type": "zip",
  9945. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/3cfc775277a8f2dacdd0f72d196bc87b272a763f",
  9946. "reference": "3cfc775277a8f2dacdd0f72d196bc87b272a763f",
  9947. "shasum": ""
  9948. },
  9949. "require": {
  9950. "php": ">=8.2",
  9951. "symfony/config": "^6.4|^7.0",
  9952. "symfony/framework-bundle": "^6.4|^7.0",
  9953. "symfony/http-kernel": "^6.4|^7.0",
  9954. "symfony/routing": "^6.4|^7.0",
  9955. "symfony/twig-bundle": "^6.4|^7.0",
  9956. "twig/twig": "^3.10"
  9957. },
  9958. "conflict": {
  9959. "symfony/form": "<6.4",
  9960. "symfony/mailer": "<6.4",
  9961. "symfony/messenger": "<6.4"
  9962. },
  9963. "require-dev": {
  9964. "symfony/browser-kit": "^6.4|^7.0",
  9965. "symfony/console": "^6.4|^7.0",
  9966. "symfony/css-selector": "^6.4|^7.0",
  9967. "symfony/stopwatch": "^6.4|^7.0"
  9968. },
  9969. "type": "symfony-bundle",
  9970. "autoload": {
  9971. "psr-4": {
  9972. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  9973. },
  9974. "exclude-from-classmap": [
  9975. "/Tests/"
  9976. ]
  9977. },
  9978. "notification-url": "https://packagist.org/downloads/",
  9979. "license": [
  9980. "MIT"
  9981. ],
  9982. "authors": [
  9983. {
  9984. "name": "Fabien Potencier",
  9985. "email": "fabien@symfony.com"
  9986. },
  9987. {
  9988. "name": "Symfony Community",
  9989. "homepage": "https://symfony.com/contributors"
  9990. }
  9991. ],
  9992. "description": "Provides a development tool that gives detailed information about the execution of any request",
  9993. "homepage": "https://symfony.com",
  9994. "keywords": [
  9995. "dev"
  9996. ],
  9997. "support": {
  9998. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.1.4"
  9999. },
  10000. "funding": [
  10001. {
  10002. "url": "https://symfony.com/sponsor",
  10003. "type": "custom"
  10004. },
  10005. {
  10006. "url": "https://github.com/fabpot",
  10007. "type": "github"
  10008. },
  10009. {
  10010. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10011. "type": "tidelift"
  10012. }
  10013. ],
  10014. "time": "2024-08-12T09:59:40+00:00"
  10015. },
  10016. {
  10017. "name": "theseer/tokenizer",
  10018. "version": "1.2.3",
  10019. "source": {
  10020. "type": "git",
  10021. "url": "https://github.com/theseer/tokenizer.git",
  10022. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10023. },
  10024. "dist": {
  10025. "type": "zip",
  10026. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10027. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10028. "shasum": ""
  10029. },
  10030. "require": {
  10031. "ext-dom": "*",
  10032. "ext-tokenizer": "*",
  10033. "ext-xmlwriter": "*",
  10034. "php": "^7.2 || ^8.0"
  10035. },
  10036. "type": "library",
  10037. "autoload": {
  10038. "classmap": [
  10039. "src/"
  10040. ]
  10041. },
  10042. "notification-url": "https://packagist.org/downloads/",
  10043. "license": [
  10044. "BSD-3-Clause"
  10045. ],
  10046. "authors": [
  10047. {
  10048. "name": "Arne Blankerts",
  10049. "email": "arne@blankerts.de",
  10050. "role": "Developer"
  10051. }
  10052. ],
  10053. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10054. "support": {
  10055. "issues": "https://github.com/theseer/tokenizer/issues",
  10056. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10057. },
  10058. "funding": [
  10059. {
  10060. "url": "https://github.com/theseer",
  10061. "type": "github"
  10062. }
  10063. ],
  10064. "time": "2024-03-03T12:36:25+00:00"
  10065. }
  10066. ],
  10067. "aliases": [],
  10068. "minimum-stability": "stable",
  10069. "stability-flags": {},
  10070. "prefer-stable": true,
  10071. "prefer-lowest": false,
  10072. "platform": {
  10073. "php": ">=8.2",
  10074. "ext-ctype": "*",
  10075. "ext-iconv": "*"
  10076. },
  10077. "platform-dev": {},
  10078. "plugin-api-version": "2.6.0"
  10079. }