composer.lock 387 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679
  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": "d2f1670c9f8d03b65c2aed16f800023a",
  8. "packages": [
  9. {
  10. "name": "composer/package-versions-deprecated",
  11. "version": "1.11.99.5",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/package-versions-deprecated.git",
  15. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
  20. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "composer-plugin-api": "^1.1.0 || ^2.0",
  25. "php": "^7 || ^8"
  26. },
  27. "replace": {
  28. "ocramius/package-versions": "1.11.99"
  29. },
  30. "require-dev": {
  31. "composer/composer": "^1.9.3 || ^2.0@dev",
  32. "ext-zip": "^1.13",
  33. "phpunit/phpunit": "^6.5 || ^7"
  34. },
  35. "type": "composer-plugin",
  36. "extra": {
  37. "class": "PackageVersions\\Installer",
  38. "branch-alias": {
  39. "dev-master": "1.x-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "PackageVersions\\": "src/PackageVersions"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Marco Pivetta",
  54. "email": "ocramius@gmail.com"
  55. },
  56. {
  57. "name": "Jordi Boggiano",
  58. "email": "j.boggiano@seld.be"
  59. }
  60. ],
  61. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  62. "support": {
  63. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  64. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5"
  65. },
  66. "funding": [
  67. {
  68. "url": "https://packagist.com",
  69. "type": "custom"
  70. },
  71. {
  72. "url": "https://github.com/composer",
  73. "type": "github"
  74. },
  75. {
  76. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  77. "type": "tidelift"
  78. }
  79. ],
  80. "time": "2022-01-17T14:14:24+00:00"
  81. },
  82. {
  83. "name": "dflydev/dot-access-data",
  84. "version": "v3.0.3",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  88. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  93. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "php": "^7.1 || ^8.0"
  98. },
  99. "require-dev": {
  100. "phpstan/phpstan": "^0.12.42",
  101. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  102. "scrutinizer/ocular": "1.6.0",
  103. "squizlabs/php_codesniffer": "^3.5",
  104. "vimeo/psalm": "^4.0.0"
  105. },
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-main": "3.x-dev"
  110. }
  111. },
  112. "autoload": {
  113. "psr-4": {
  114. "Dflydev\\DotAccessData\\": "src/"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "MIT"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Dragonfly Development Inc.",
  124. "email": "info@dflydev.com",
  125. "homepage": "http://dflydev.com"
  126. },
  127. {
  128. "name": "Beau Simensen",
  129. "email": "beau@dflydev.com",
  130. "homepage": "http://beausimensen.com"
  131. },
  132. {
  133. "name": "Carlos Frutos",
  134. "email": "carlos@kiwing.it",
  135. "homepage": "https://github.com/cfrutos"
  136. },
  137. {
  138. "name": "Colin O'Dell",
  139. "email": "colinodell@gmail.com",
  140. "homepage": "https://www.colinodell.com"
  141. }
  142. ],
  143. "description": "Given a deep data structure, access data by dot notation.",
  144. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  145. "keywords": [
  146. "access",
  147. "data",
  148. "dot",
  149. "notation"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  153. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  154. },
  155. "time": "2024-07-08T12:26:09+00:00"
  156. },
  157. {
  158. "name": "doctrine/annotations",
  159. "version": "2.0.1",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/doctrine/annotations.git",
  163. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  168. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "doctrine/lexer": "^2 || ^3",
  173. "ext-tokenizer": "*",
  174. "php": "^7.2 || ^8.0",
  175. "psr/cache": "^1 || ^2 || ^3"
  176. },
  177. "require-dev": {
  178. "doctrine/cache": "^2.0",
  179. "doctrine/coding-standard": "^10",
  180. "phpstan/phpstan": "^1.8.0",
  181. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  182. "symfony/cache": "^5.4 || ^6",
  183. "vimeo/psalm": "^4.10"
  184. },
  185. "suggest": {
  186. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  187. },
  188. "type": "library",
  189. "autoload": {
  190. "psr-4": {
  191. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  192. }
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "MIT"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Guilherme Blanco",
  201. "email": "guilhermeblanco@gmail.com"
  202. },
  203. {
  204. "name": "Roman Borschel",
  205. "email": "roman@code-factory.org"
  206. },
  207. {
  208. "name": "Benjamin Eberlei",
  209. "email": "kontakt@beberlei.de"
  210. },
  211. {
  212. "name": "Jonathan Wage",
  213. "email": "jonwage@gmail.com"
  214. },
  215. {
  216. "name": "Johannes Schmitt",
  217. "email": "schmittjoh@gmail.com"
  218. }
  219. ],
  220. "description": "Docblock Annotations Parser",
  221. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  222. "keywords": [
  223. "annotations",
  224. "docblock",
  225. "parser"
  226. ],
  227. "support": {
  228. "issues": "https://github.com/doctrine/annotations/issues",
  229. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  230. },
  231. "time": "2023-02-02T22:02:53+00:00"
  232. },
  233. {
  234. "name": "doctrine/cache",
  235. "version": "2.2.0",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/doctrine/cache.git",
  239. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  244. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "php": "~7.1 || ^8.0"
  249. },
  250. "conflict": {
  251. "doctrine/common": ">2.2,<2.4"
  252. },
  253. "require-dev": {
  254. "cache/integration-tests": "dev-master",
  255. "doctrine/coding-standard": "^9",
  256. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  257. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  258. "symfony/cache": "^4.4 || ^5.4 || ^6",
  259. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  260. },
  261. "type": "library",
  262. "autoload": {
  263. "psr-4": {
  264. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  265. }
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Guilherme Blanco",
  274. "email": "guilhermeblanco@gmail.com"
  275. },
  276. {
  277. "name": "Roman Borschel",
  278. "email": "roman@code-factory.org"
  279. },
  280. {
  281. "name": "Benjamin Eberlei",
  282. "email": "kontakt@beberlei.de"
  283. },
  284. {
  285. "name": "Jonathan Wage",
  286. "email": "jonwage@gmail.com"
  287. },
  288. {
  289. "name": "Johannes Schmitt",
  290. "email": "schmittjoh@gmail.com"
  291. }
  292. ],
  293. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  294. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  295. "keywords": [
  296. "abstraction",
  297. "apcu",
  298. "cache",
  299. "caching",
  300. "couchdb",
  301. "memcached",
  302. "php",
  303. "redis",
  304. "xcache"
  305. ],
  306. "support": {
  307. "issues": "https://github.com/doctrine/cache/issues",
  308. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  309. },
  310. "funding": [
  311. {
  312. "url": "https://www.doctrine-project.org/sponsorship.html",
  313. "type": "custom"
  314. },
  315. {
  316. "url": "https://www.patreon.com/phpdoctrine",
  317. "type": "patreon"
  318. },
  319. {
  320. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  321. "type": "tidelift"
  322. }
  323. ],
  324. "time": "2022-05-20T20:07:39+00:00"
  325. },
  326. {
  327. "name": "doctrine/collections",
  328. "version": "2.2.2",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/doctrine/collections.git",
  332. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59",
  337. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  338. "shasum": ""
  339. },
  340. "require": {
  341. "doctrine/deprecations": "^1",
  342. "php": "^8.1"
  343. },
  344. "require-dev": {
  345. "doctrine/coding-standard": "^12",
  346. "ext-json": "*",
  347. "phpstan/phpstan": "^1.8",
  348. "phpstan/phpstan-phpunit": "^1.0",
  349. "phpunit/phpunit": "^10.5",
  350. "vimeo/psalm": "^5.11"
  351. },
  352. "type": "library",
  353. "autoload": {
  354. "psr-4": {
  355. "Doctrine\\Common\\Collections\\": "src"
  356. }
  357. },
  358. "notification-url": "https://packagist.org/downloads/",
  359. "license": [
  360. "MIT"
  361. ],
  362. "authors": [
  363. {
  364. "name": "Guilherme Blanco",
  365. "email": "guilhermeblanco@gmail.com"
  366. },
  367. {
  368. "name": "Roman Borschel",
  369. "email": "roman@code-factory.org"
  370. },
  371. {
  372. "name": "Benjamin Eberlei",
  373. "email": "kontakt@beberlei.de"
  374. },
  375. {
  376. "name": "Jonathan Wage",
  377. "email": "jonwage@gmail.com"
  378. },
  379. {
  380. "name": "Johannes Schmitt",
  381. "email": "schmittjoh@gmail.com"
  382. }
  383. ],
  384. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  385. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  386. "keywords": [
  387. "array",
  388. "collections",
  389. "iterators",
  390. "php"
  391. ],
  392. "support": {
  393. "issues": "https://github.com/doctrine/collections/issues",
  394. "source": "https://github.com/doctrine/collections/tree/2.2.2"
  395. },
  396. "funding": [
  397. {
  398. "url": "https://www.doctrine-project.org/sponsorship.html",
  399. "type": "custom"
  400. },
  401. {
  402. "url": "https://www.patreon.com/phpdoctrine",
  403. "type": "patreon"
  404. },
  405. {
  406. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  407. "type": "tidelift"
  408. }
  409. ],
  410. "time": "2024-04-18T06:56:21+00:00"
  411. },
  412. {
  413. "name": "doctrine/common",
  414. "version": "3.4.4",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/doctrine/common.git",
  418. "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/doctrine/common/zipball/0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a",
  423. "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "doctrine/persistence": "^2.0 || ^3.0",
  428. "php": "^7.1 || ^8.0"
  429. },
  430. "require-dev": {
  431. "doctrine/coding-standard": "^9.0 || ^10.0",
  432. "doctrine/collections": "^1",
  433. "phpstan/phpstan": "^1.4.1",
  434. "phpstan/phpstan-phpunit": "^1",
  435. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  436. "squizlabs/php_codesniffer": "^3.0",
  437. "symfony/phpunit-bridge": "^6.1",
  438. "vimeo/psalm": "^4.4"
  439. },
  440. "type": "library",
  441. "autoload": {
  442. "psr-4": {
  443. "Doctrine\\Common\\": "src"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Guilherme Blanco",
  453. "email": "guilhermeblanco@gmail.com"
  454. },
  455. {
  456. "name": "Roman Borschel",
  457. "email": "roman@code-factory.org"
  458. },
  459. {
  460. "name": "Benjamin Eberlei",
  461. "email": "kontakt@beberlei.de"
  462. },
  463. {
  464. "name": "Jonathan Wage",
  465. "email": "jonwage@gmail.com"
  466. },
  467. {
  468. "name": "Johannes Schmitt",
  469. "email": "schmittjoh@gmail.com"
  470. },
  471. {
  472. "name": "Marco Pivetta",
  473. "email": "ocramius@gmail.com"
  474. }
  475. ],
  476. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  477. "homepage": "https://www.doctrine-project.org/projects/common.html",
  478. "keywords": [
  479. "common",
  480. "doctrine",
  481. "php"
  482. ],
  483. "support": {
  484. "issues": "https://github.com/doctrine/common/issues",
  485. "source": "https://github.com/doctrine/common/tree/3.4.4"
  486. },
  487. "funding": [
  488. {
  489. "url": "https://www.doctrine-project.org/sponsorship.html",
  490. "type": "custom"
  491. },
  492. {
  493. "url": "https://www.patreon.com/phpdoctrine",
  494. "type": "patreon"
  495. },
  496. {
  497. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  498. "type": "tidelift"
  499. }
  500. ],
  501. "time": "2024-04-16T13:35:33+00:00"
  502. },
  503. {
  504. "name": "doctrine/dbal",
  505. "version": "3.8.6",
  506. "source": {
  507. "type": "git",
  508. "url": "https://github.com/doctrine/dbal.git",
  509. "reference": "b7411825cf7efb7e51f9791dea19d86e43b399a1"
  510. },
  511. "dist": {
  512. "type": "zip",
  513. "url": "https://api.github.com/repos/doctrine/dbal/zipball/b7411825cf7efb7e51f9791dea19d86e43b399a1",
  514. "reference": "b7411825cf7efb7e51f9791dea19d86e43b399a1",
  515. "shasum": ""
  516. },
  517. "require": {
  518. "composer-runtime-api": "^2",
  519. "doctrine/cache": "^1.11|^2.0",
  520. "doctrine/deprecations": "^0.5.3|^1",
  521. "doctrine/event-manager": "^1|^2",
  522. "php": "^7.4 || ^8.0",
  523. "psr/cache": "^1|^2|^3",
  524. "psr/log": "^1|^2|^3"
  525. },
  526. "require-dev": {
  527. "doctrine/coding-standard": "12.0.0",
  528. "fig/log-test": "^1",
  529. "jetbrains/phpstorm-stubs": "2023.1",
  530. "phpstan/phpstan": "1.11.5",
  531. "phpstan/phpstan-strict-rules": "^1.6",
  532. "phpunit/phpunit": "9.6.19",
  533. "psalm/plugin-phpunit": "0.18.4",
  534. "slevomat/coding-standard": "8.13.1",
  535. "squizlabs/php_codesniffer": "3.10.1",
  536. "symfony/cache": "^5.4|^6.0|^7.0",
  537. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  538. "vimeo/psalm": "4.30.0"
  539. },
  540. "suggest": {
  541. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  542. },
  543. "bin": [
  544. "bin/doctrine-dbal"
  545. ],
  546. "type": "library",
  547. "autoload": {
  548. "psr-4": {
  549. "Doctrine\\DBAL\\": "src"
  550. }
  551. },
  552. "notification-url": "https://packagist.org/downloads/",
  553. "license": [
  554. "MIT"
  555. ],
  556. "authors": [
  557. {
  558. "name": "Guilherme Blanco",
  559. "email": "guilhermeblanco@gmail.com"
  560. },
  561. {
  562. "name": "Roman Borschel",
  563. "email": "roman@code-factory.org"
  564. },
  565. {
  566. "name": "Benjamin Eberlei",
  567. "email": "kontakt@beberlei.de"
  568. },
  569. {
  570. "name": "Jonathan Wage",
  571. "email": "jonwage@gmail.com"
  572. }
  573. ],
  574. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  575. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  576. "keywords": [
  577. "abstraction",
  578. "database",
  579. "db2",
  580. "dbal",
  581. "mariadb",
  582. "mssql",
  583. "mysql",
  584. "oci8",
  585. "oracle",
  586. "pdo",
  587. "pgsql",
  588. "postgresql",
  589. "queryobject",
  590. "sasql",
  591. "sql",
  592. "sqlite",
  593. "sqlserver",
  594. "sqlsrv"
  595. ],
  596. "support": {
  597. "issues": "https://github.com/doctrine/dbal/issues",
  598. "source": "https://github.com/doctrine/dbal/tree/3.8.6"
  599. },
  600. "funding": [
  601. {
  602. "url": "https://www.doctrine-project.org/sponsorship.html",
  603. "type": "custom"
  604. },
  605. {
  606. "url": "https://www.patreon.com/phpdoctrine",
  607. "type": "patreon"
  608. },
  609. {
  610. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  611. "type": "tidelift"
  612. }
  613. ],
  614. "time": "2024-06-19T10:38:17+00:00"
  615. },
  616. {
  617. "name": "doctrine/deprecations",
  618. "version": "1.1.3",
  619. "source": {
  620. "type": "git",
  621. "url": "https://github.com/doctrine/deprecations.git",
  622. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  623. },
  624. "dist": {
  625. "type": "zip",
  626. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  627. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  628. "shasum": ""
  629. },
  630. "require": {
  631. "php": "^7.1 || ^8.0"
  632. },
  633. "require-dev": {
  634. "doctrine/coding-standard": "^9",
  635. "phpstan/phpstan": "1.4.10 || 1.10.15",
  636. "phpstan/phpstan-phpunit": "^1.0",
  637. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  638. "psalm/plugin-phpunit": "0.18.4",
  639. "psr/log": "^1 || ^2 || ^3",
  640. "vimeo/psalm": "4.30.0 || 5.12.0"
  641. },
  642. "suggest": {
  643. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  644. },
  645. "type": "library",
  646. "autoload": {
  647. "psr-4": {
  648. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  649. }
  650. },
  651. "notification-url": "https://packagist.org/downloads/",
  652. "license": [
  653. "MIT"
  654. ],
  655. "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.",
  656. "homepage": "https://www.doctrine-project.org/",
  657. "support": {
  658. "issues": "https://github.com/doctrine/deprecations/issues",
  659. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  660. },
  661. "time": "2024-01-30T19:34:25+00:00"
  662. },
  663. {
  664. "name": "doctrine/doctrine-bundle",
  665. "version": "2.12.0",
  666. "source": {
  667. "type": "git",
  668. "url": "https://github.com/doctrine/DoctrineBundle.git",
  669. "reference": "5418e811a14724068e95e0ba43353b903ada530f"
  670. },
  671. "dist": {
  672. "type": "zip",
  673. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/5418e811a14724068e95e0ba43353b903ada530f",
  674. "reference": "5418e811a14724068e95e0ba43353b903ada530f",
  675. "shasum": ""
  676. },
  677. "require": {
  678. "doctrine/cache": "^1.11 || ^2.0",
  679. "doctrine/dbal": "^3.7.0 || ^4.0",
  680. "doctrine/persistence": "^2.2 || ^3",
  681. "doctrine/sql-formatter": "^1.0.1",
  682. "php": "^7.4 || ^8.0",
  683. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  684. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  685. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  686. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  687. "symfony/deprecation-contracts": "^2.1 || ^3",
  688. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  689. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  690. "symfony/polyfill-php80": "^1.15",
  691. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  692. },
  693. "conflict": {
  694. "doctrine/annotations": ">=3.0",
  695. "doctrine/orm": "<2.17 || >=4.0",
  696. "twig/twig": "<1.34 || >=2.0 <2.4"
  697. },
  698. "require-dev": {
  699. "doctrine/annotations": "^1 || ^2",
  700. "doctrine/coding-standard": "^12",
  701. "doctrine/deprecations": "^1.0",
  702. "doctrine/orm": "^2.17 || ^3.0",
  703. "friendsofphp/proxy-manager-lts": "^1.0",
  704. "phpunit/phpunit": "^9.5.26",
  705. "psalm/plugin-phpunit": "^0.18.4",
  706. "psalm/plugin-symfony": "^5",
  707. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  708. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  709. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  710. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  711. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  712. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  713. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  714. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  715. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  716. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  717. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  718. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  719. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  720. "vimeo/psalm": "^5.15"
  721. },
  722. "suggest": {
  723. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  724. "ext-pdo": "*",
  725. "symfony/web-profiler-bundle": "To use the data collector."
  726. },
  727. "type": "symfony-bundle",
  728. "autoload": {
  729. "psr-4": {
  730. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  731. }
  732. },
  733. "notification-url": "https://packagist.org/downloads/",
  734. "license": [
  735. "MIT"
  736. ],
  737. "authors": [
  738. {
  739. "name": "Fabien Potencier",
  740. "email": "fabien@symfony.com"
  741. },
  742. {
  743. "name": "Benjamin Eberlei",
  744. "email": "kontakt@beberlei.de"
  745. },
  746. {
  747. "name": "Symfony Community",
  748. "homepage": "https://symfony.com/contributors"
  749. },
  750. {
  751. "name": "Doctrine Project",
  752. "homepage": "https://www.doctrine-project.org/"
  753. }
  754. ],
  755. "description": "Symfony DoctrineBundle",
  756. "homepage": "https://www.doctrine-project.org",
  757. "keywords": [
  758. "database",
  759. "dbal",
  760. "orm",
  761. "persistence"
  762. ],
  763. "support": {
  764. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  765. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.12.0"
  766. },
  767. "funding": [
  768. {
  769. "url": "https://www.doctrine-project.org/sponsorship.html",
  770. "type": "custom"
  771. },
  772. {
  773. "url": "https://www.patreon.com/phpdoctrine",
  774. "type": "patreon"
  775. },
  776. {
  777. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  778. "type": "tidelift"
  779. }
  780. ],
  781. "time": "2024-03-19T07:20:37+00:00"
  782. },
  783. {
  784. "name": "doctrine/doctrine-migrations-bundle",
  785. "version": "3.3.1",
  786. "source": {
  787. "type": "git",
  788. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  789. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
  790. },
  791. "dist": {
  792. "type": "zip",
  793. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  794. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  795. "shasum": ""
  796. },
  797. "require": {
  798. "doctrine/doctrine-bundle": "^2.4",
  799. "doctrine/migrations": "^3.2",
  800. "php": "^7.2|^8.0",
  801. "symfony/deprecation-contracts": "^2.1 || ^3",
  802. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  803. },
  804. "require-dev": {
  805. "composer/semver": "^3.0",
  806. "doctrine/coding-standard": "^12",
  807. "doctrine/orm": "^2.6 || ^3",
  808. "doctrine/persistence": "^2.0 || ^3 ",
  809. "phpstan/phpstan": "^1.4",
  810. "phpstan/phpstan-deprecation-rules": "^1",
  811. "phpstan/phpstan-phpunit": "^1",
  812. "phpstan/phpstan-strict-rules": "^1.1",
  813. "phpstan/phpstan-symfony": "^1.3",
  814. "phpunit/phpunit": "^8.5|^9.5",
  815. "psalm/plugin-phpunit": "^0.18.4",
  816. "psalm/plugin-symfony": "^3 || ^5",
  817. "symfony/phpunit-bridge": "^6.3 || ^7",
  818. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  819. "vimeo/psalm": "^4.30 || ^5.15"
  820. },
  821. "type": "symfony-bundle",
  822. "autoload": {
  823. "psr-4": {
  824. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  825. },
  826. "exclude-from-classmap": [
  827. "/Tests/"
  828. ]
  829. },
  830. "notification-url": "https://packagist.org/downloads/",
  831. "license": [
  832. "MIT"
  833. ],
  834. "authors": [
  835. {
  836. "name": "Fabien Potencier",
  837. "email": "fabien@symfony.com"
  838. },
  839. {
  840. "name": "Doctrine Project",
  841. "homepage": "https://www.doctrine-project.org"
  842. },
  843. {
  844. "name": "Symfony Community",
  845. "homepage": "https://symfony.com/contributors"
  846. }
  847. ],
  848. "description": "Symfony DoctrineMigrationsBundle",
  849. "homepage": "https://www.doctrine-project.org",
  850. "keywords": [
  851. "dbal",
  852. "migrations",
  853. "schema"
  854. ],
  855. "support": {
  856. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  857. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
  858. },
  859. "funding": [
  860. {
  861. "url": "https://www.doctrine-project.org/sponsorship.html",
  862. "type": "custom"
  863. },
  864. {
  865. "url": "https://www.patreon.com/phpdoctrine",
  866. "type": "patreon"
  867. },
  868. {
  869. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  870. "type": "tidelift"
  871. }
  872. ],
  873. "time": "2024-05-14T20:32:18+00:00"
  874. },
  875. {
  876. "name": "doctrine/event-manager",
  877. "version": "2.0.1",
  878. "source": {
  879. "type": "git",
  880. "url": "https://github.com/doctrine/event-manager.git",
  881. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  882. },
  883. "dist": {
  884. "type": "zip",
  885. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  886. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  887. "shasum": ""
  888. },
  889. "require": {
  890. "php": "^8.1"
  891. },
  892. "conflict": {
  893. "doctrine/common": "<2.9"
  894. },
  895. "require-dev": {
  896. "doctrine/coding-standard": "^12",
  897. "phpstan/phpstan": "^1.8.8",
  898. "phpunit/phpunit": "^10.5",
  899. "vimeo/psalm": "^5.24"
  900. },
  901. "type": "library",
  902. "autoload": {
  903. "psr-4": {
  904. "Doctrine\\Common\\": "src"
  905. }
  906. },
  907. "notification-url": "https://packagist.org/downloads/",
  908. "license": [
  909. "MIT"
  910. ],
  911. "authors": [
  912. {
  913. "name": "Guilherme Blanco",
  914. "email": "guilhermeblanco@gmail.com"
  915. },
  916. {
  917. "name": "Roman Borschel",
  918. "email": "roman@code-factory.org"
  919. },
  920. {
  921. "name": "Benjamin Eberlei",
  922. "email": "kontakt@beberlei.de"
  923. },
  924. {
  925. "name": "Jonathan Wage",
  926. "email": "jonwage@gmail.com"
  927. },
  928. {
  929. "name": "Johannes Schmitt",
  930. "email": "schmittjoh@gmail.com"
  931. },
  932. {
  933. "name": "Marco Pivetta",
  934. "email": "ocramius@gmail.com"
  935. }
  936. ],
  937. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  938. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  939. "keywords": [
  940. "event",
  941. "event dispatcher",
  942. "event manager",
  943. "event system",
  944. "events"
  945. ],
  946. "support": {
  947. "issues": "https://github.com/doctrine/event-manager/issues",
  948. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  949. },
  950. "funding": [
  951. {
  952. "url": "https://www.doctrine-project.org/sponsorship.html",
  953. "type": "custom"
  954. },
  955. {
  956. "url": "https://www.patreon.com/phpdoctrine",
  957. "type": "patreon"
  958. },
  959. {
  960. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  961. "type": "tidelift"
  962. }
  963. ],
  964. "time": "2024-05-22T20:47:39+00:00"
  965. },
  966. {
  967. "name": "doctrine/inflector",
  968. "version": "2.0.10",
  969. "source": {
  970. "type": "git",
  971. "url": "https://github.com/doctrine/inflector.git",
  972. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  973. },
  974. "dist": {
  975. "type": "zip",
  976. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  977. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  978. "shasum": ""
  979. },
  980. "require": {
  981. "php": "^7.2 || ^8.0"
  982. },
  983. "require-dev": {
  984. "doctrine/coding-standard": "^11.0",
  985. "phpstan/phpstan": "^1.8",
  986. "phpstan/phpstan-phpunit": "^1.1",
  987. "phpstan/phpstan-strict-rules": "^1.3",
  988. "phpunit/phpunit": "^8.5 || ^9.5",
  989. "vimeo/psalm": "^4.25 || ^5.4"
  990. },
  991. "type": "library",
  992. "autoload": {
  993. "psr-4": {
  994. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  995. }
  996. },
  997. "notification-url": "https://packagist.org/downloads/",
  998. "license": [
  999. "MIT"
  1000. ],
  1001. "authors": [
  1002. {
  1003. "name": "Guilherme Blanco",
  1004. "email": "guilhermeblanco@gmail.com"
  1005. },
  1006. {
  1007. "name": "Roman Borschel",
  1008. "email": "roman@code-factory.org"
  1009. },
  1010. {
  1011. "name": "Benjamin Eberlei",
  1012. "email": "kontakt@beberlei.de"
  1013. },
  1014. {
  1015. "name": "Jonathan Wage",
  1016. "email": "jonwage@gmail.com"
  1017. },
  1018. {
  1019. "name": "Johannes Schmitt",
  1020. "email": "schmittjoh@gmail.com"
  1021. }
  1022. ],
  1023. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1024. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1025. "keywords": [
  1026. "inflection",
  1027. "inflector",
  1028. "lowercase",
  1029. "manipulation",
  1030. "php",
  1031. "plural",
  1032. "singular",
  1033. "strings",
  1034. "uppercase",
  1035. "words"
  1036. ],
  1037. "support": {
  1038. "issues": "https://github.com/doctrine/inflector/issues",
  1039. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1040. },
  1041. "funding": [
  1042. {
  1043. "url": "https://www.doctrine-project.org/sponsorship.html",
  1044. "type": "custom"
  1045. },
  1046. {
  1047. "url": "https://www.patreon.com/phpdoctrine",
  1048. "type": "patreon"
  1049. },
  1050. {
  1051. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1052. "type": "tidelift"
  1053. }
  1054. ],
  1055. "time": "2024-02-18T20:23:39+00:00"
  1056. },
  1057. {
  1058. "name": "doctrine/instantiator",
  1059. "version": "2.0.0",
  1060. "source": {
  1061. "type": "git",
  1062. "url": "https://github.com/doctrine/instantiator.git",
  1063. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  1064. },
  1065. "dist": {
  1066. "type": "zip",
  1067. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1068. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1069. "shasum": ""
  1070. },
  1071. "require": {
  1072. "php": "^8.1"
  1073. },
  1074. "require-dev": {
  1075. "doctrine/coding-standard": "^11",
  1076. "ext-pdo": "*",
  1077. "ext-phar": "*",
  1078. "phpbench/phpbench": "^1.2",
  1079. "phpstan/phpstan": "^1.9.4",
  1080. "phpstan/phpstan-phpunit": "^1.3",
  1081. "phpunit/phpunit": "^9.5.27",
  1082. "vimeo/psalm": "^5.4"
  1083. },
  1084. "type": "library",
  1085. "autoload": {
  1086. "psr-4": {
  1087. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1088. }
  1089. },
  1090. "notification-url": "https://packagist.org/downloads/",
  1091. "license": [
  1092. "MIT"
  1093. ],
  1094. "authors": [
  1095. {
  1096. "name": "Marco Pivetta",
  1097. "email": "ocramius@gmail.com",
  1098. "homepage": "https://ocramius.github.io/"
  1099. }
  1100. ],
  1101. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1102. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1103. "keywords": [
  1104. "constructor",
  1105. "instantiate"
  1106. ],
  1107. "support": {
  1108. "issues": "https://github.com/doctrine/instantiator/issues",
  1109. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  1110. },
  1111. "funding": [
  1112. {
  1113. "url": "https://www.doctrine-project.org/sponsorship.html",
  1114. "type": "custom"
  1115. },
  1116. {
  1117. "url": "https://www.patreon.com/phpdoctrine",
  1118. "type": "patreon"
  1119. },
  1120. {
  1121. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1122. "type": "tidelift"
  1123. }
  1124. ],
  1125. "time": "2022-12-30T00:23:10+00:00"
  1126. },
  1127. {
  1128. "name": "doctrine/lexer",
  1129. "version": "3.0.1",
  1130. "source": {
  1131. "type": "git",
  1132. "url": "https://github.com/doctrine/lexer.git",
  1133. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1134. },
  1135. "dist": {
  1136. "type": "zip",
  1137. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1138. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1139. "shasum": ""
  1140. },
  1141. "require": {
  1142. "php": "^8.1"
  1143. },
  1144. "require-dev": {
  1145. "doctrine/coding-standard": "^12",
  1146. "phpstan/phpstan": "^1.10",
  1147. "phpunit/phpunit": "^10.5",
  1148. "psalm/plugin-phpunit": "^0.18.3",
  1149. "vimeo/psalm": "^5.21"
  1150. },
  1151. "type": "library",
  1152. "autoload": {
  1153. "psr-4": {
  1154. "Doctrine\\Common\\Lexer\\": "src"
  1155. }
  1156. },
  1157. "notification-url": "https://packagist.org/downloads/",
  1158. "license": [
  1159. "MIT"
  1160. ],
  1161. "authors": [
  1162. {
  1163. "name": "Guilherme Blanco",
  1164. "email": "guilhermeblanco@gmail.com"
  1165. },
  1166. {
  1167. "name": "Roman Borschel",
  1168. "email": "roman@code-factory.org"
  1169. },
  1170. {
  1171. "name": "Johannes Schmitt",
  1172. "email": "schmittjoh@gmail.com"
  1173. }
  1174. ],
  1175. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1176. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1177. "keywords": [
  1178. "annotations",
  1179. "docblock",
  1180. "lexer",
  1181. "parser",
  1182. "php"
  1183. ],
  1184. "support": {
  1185. "issues": "https://github.com/doctrine/lexer/issues",
  1186. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1187. },
  1188. "funding": [
  1189. {
  1190. "url": "https://www.doctrine-project.org/sponsorship.html",
  1191. "type": "custom"
  1192. },
  1193. {
  1194. "url": "https://www.patreon.com/phpdoctrine",
  1195. "type": "patreon"
  1196. },
  1197. {
  1198. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1199. "type": "tidelift"
  1200. }
  1201. ],
  1202. "time": "2024-02-05T11:56:58+00:00"
  1203. },
  1204. {
  1205. "name": "doctrine/migrations",
  1206. "version": "3.8.0",
  1207. "source": {
  1208. "type": "git",
  1209. "url": "https://github.com/doctrine/migrations.git",
  1210. "reference": "535a70dcbd88b8c6ba945be050977457f4f4c06c"
  1211. },
  1212. "dist": {
  1213. "type": "zip",
  1214. "url": "https://api.github.com/repos/doctrine/migrations/zipball/535a70dcbd88b8c6ba945be050977457f4f4c06c",
  1215. "reference": "535a70dcbd88b8c6ba945be050977457f4f4c06c",
  1216. "shasum": ""
  1217. },
  1218. "require": {
  1219. "composer-runtime-api": "^2",
  1220. "doctrine/dbal": "^3.6 || ^4",
  1221. "doctrine/deprecations": "^0.5.3 || ^1",
  1222. "doctrine/event-manager": "^1.2 || ^2.0",
  1223. "php": "^8.1",
  1224. "psr/log": "^1.1.3 || ^2 || ^3",
  1225. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1226. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1227. "symfony/var-exporter": "^6.2 || ^7.0"
  1228. },
  1229. "conflict": {
  1230. "doctrine/orm": "<2.12 || >=4"
  1231. },
  1232. "require-dev": {
  1233. "doctrine/coding-standard": "^12",
  1234. "doctrine/orm": "^2.13 || ^3",
  1235. "doctrine/persistence": "^2 || ^3",
  1236. "doctrine/sql-formatter": "^1.0",
  1237. "ext-pdo_sqlite": "*",
  1238. "phpstan/phpstan": "^1.10",
  1239. "phpstan/phpstan-deprecation-rules": "^1.1",
  1240. "phpstan/phpstan-phpunit": "^1.3",
  1241. "phpstan/phpstan-strict-rules": "^1.4",
  1242. "phpstan/phpstan-symfony": "^1.3",
  1243. "phpunit/phpunit": "^10.3",
  1244. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1245. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1246. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1247. },
  1248. "suggest": {
  1249. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1250. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1251. },
  1252. "bin": [
  1253. "bin/doctrine-migrations"
  1254. ],
  1255. "type": "library",
  1256. "autoload": {
  1257. "psr-4": {
  1258. "Doctrine\\Migrations\\": "src"
  1259. }
  1260. },
  1261. "notification-url": "https://packagist.org/downloads/",
  1262. "license": [
  1263. "MIT"
  1264. ],
  1265. "authors": [
  1266. {
  1267. "name": "Benjamin Eberlei",
  1268. "email": "kontakt@beberlei.de"
  1269. },
  1270. {
  1271. "name": "Jonathan Wage",
  1272. "email": "jonwage@gmail.com"
  1273. },
  1274. {
  1275. "name": "Michael Simonson",
  1276. "email": "contact@mikesimonson.com"
  1277. }
  1278. ],
  1279. "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.",
  1280. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1281. "keywords": [
  1282. "database",
  1283. "dbal",
  1284. "migrations"
  1285. ],
  1286. "support": {
  1287. "issues": "https://github.com/doctrine/migrations/issues",
  1288. "source": "https://github.com/doctrine/migrations/tree/3.8.0"
  1289. },
  1290. "funding": [
  1291. {
  1292. "url": "https://www.doctrine-project.org/sponsorship.html",
  1293. "type": "custom"
  1294. },
  1295. {
  1296. "url": "https://www.patreon.com/phpdoctrine",
  1297. "type": "patreon"
  1298. },
  1299. {
  1300. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1301. "type": "tidelift"
  1302. }
  1303. ],
  1304. "time": "2024-06-26T14:12:46+00:00"
  1305. },
  1306. {
  1307. "name": "doctrine/orm",
  1308. "version": "2.19.6",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/doctrine/orm.git",
  1312. "reference": "c1bb2ccf4b19c845f91ff7c4c01dc7cbba7f4073"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/doctrine/orm/zipball/c1bb2ccf4b19c845f91ff7c4c01dc7cbba7f4073",
  1317. "reference": "c1bb2ccf4b19c845f91ff7c4c01dc7cbba7f4073",
  1318. "shasum": ""
  1319. },
  1320. "require": {
  1321. "composer-runtime-api": "^2",
  1322. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1323. "doctrine/collections": "^1.5 || ^2.1",
  1324. "doctrine/common": "^3.0.3",
  1325. "doctrine/dbal": "^2.13.1 || ^3.2",
  1326. "doctrine/deprecations": "^0.5.3 || ^1",
  1327. "doctrine/event-manager": "^1.2 || ^2",
  1328. "doctrine/inflector": "^1.4 || ^2.0",
  1329. "doctrine/instantiator": "^1.3 || ^2",
  1330. "doctrine/lexer": "^2 || ^3",
  1331. "doctrine/persistence": "^2.4 || ^3",
  1332. "ext-ctype": "*",
  1333. "php": "^7.1 || ^8.0",
  1334. "psr/cache": "^1 || ^2 || ^3",
  1335. "symfony/console": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  1336. "symfony/polyfill-php72": "^1.23",
  1337. "symfony/polyfill-php80": "^1.16"
  1338. },
  1339. "conflict": {
  1340. "doctrine/annotations": "<1.13 || >= 3.0"
  1341. },
  1342. "require-dev": {
  1343. "doctrine/annotations": "^1.13 || ^2",
  1344. "doctrine/coding-standard": "^9.0.2 || ^12.0",
  1345. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1346. "phpstan/phpstan": "~1.4.10 || 1.11.1",
  1347. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1348. "psr/log": "^1 || ^2 || ^3",
  1349. "squizlabs/php_codesniffer": "3.7.2",
  1350. "symfony/cache": "^4.4 || ^5.4 || ^6.4 || ^7.0",
  1351. "symfony/var-exporter": "^4.4 || ^5.4 || ^6.2 || ^7.0",
  1352. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
  1353. "vimeo/psalm": "4.30.0 || 5.24.0"
  1354. },
  1355. "suggest": {
  1356. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1357. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1358. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1359. },
  1360. "bin": [
  1361. "bin/doctrine"
  1362. ],
  1363. "type": "library",
  1364. "autoload": {
  1365. "psr-4": {
  1366. "Doctrine\\ORM\\": "src"
  1367. }
  1368. },
  1369. "notification-url": "https://packagist.org/downloads/",
  1370. "license": [
  1371. "MIT"
  1372. ],
  1373. "authors": [
  1374. {
  1375. "name": "Guilherme Blanco",
  1376. "email": "guilhermeblanco@gmail.com"
  1377. },
  1378. {
  1379. "name": "Roman Borschel",
  1380. "email": "roman@code-factory.org"
  1381. },
  1382. {
  1383. "name": "Benjamin Eberlei",
  1384. "email": "kontakt@beberlei.de"
  1385. },
  1386. {
  1387. "name": "Jonathan Wage",
  1388. "email": "jonwage@gmail.com"
  1389. },
  1390. {
  1391. "name": "Marco Pivetta",
  1392. "email": "ocramius@gmail.com"
  1393. }
  1394. ],
  1395. "description": "Object-Relational-Mapper for PHP",
  1396. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1397. "keywords": [
  1398. "database",
  1399. "orm"
  1400. ],
  1401. "support": {
  1402. "issues": "https://github.com/doctrine/orm/issues",
  1403. "source": "https://github.com/doctrine/orm/tree/2.19.6"
  1404. },
  1405. "time": "2024-06-26T17:24:40+00:00"
  1406. },
  1407. {
  1408. "name": "doctrine/persistence",
  1409. "version": "3.3.3",
  1410. "source": {
  1411. "type": "git",
  1412. "url": "https://github.com/doctrine/persistence.git",
  1413. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1414. },
  1415. "dist": {
  1416. "type": "zip",
  1417. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1418. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1419. "shasum": ""
  1420. },
  1421. "require": {
  1422. "doctrine/event-manager": "^1 || ^2",
  1423. "php": "^7.2 || ^8.0",
  1424. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1425. },
  1426. "conflict": {
  1427. "doctrine/common": "<2.10"
  1428. },
  1429. "require-dev": {
  1430. "doctrine/coding-standard": "^12",
  1431. "doctrine/common": "^3.0",
  1432. "phpstan/phpstan": "1.11.1",
  1433. "phpstan/phpstan-phpunit": "^1",
  1434. "phpstan/phpstan-strict-rules": "^1.1",
  1435. "phpunit/phpunit": "^8.5 || ^9.5",
  1436. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1437. "vimeo/psalm": "4.30.0 || 5.24.0"
  1438. },
  1439. "type": "library",
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Doctrine\\Persistence\\": "src/Persistence"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "Guilherme Blanco",
  1452. "email": "guilhermeblanco@gmail.com"
  1453. },
  1454. {
  1455. "name": "Roman Borschel",
  1456. "email": "roman@code-factory.org"
  1457. },
  1458. {
  1459. "name": "Benjamin Eberlei",
  1460. "email": "kontakt@beberlei.de"
  1461. },
  1462. {
  1463. "name": "Jonathan Wage",
  1464. "email": "jonwage@gmail.com"
  1465. },
  1466. {
  1467. "name": "Johannes Schmitt",
  1468. "email": "schmittjoh@gmail.com"
  1469. },
  1470. {
  1471. "name": "Marco Pivetta",
  1472. "email": "ocramius@gmail.com"
  1473. }
  1474. ],
  1475. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1476. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1477. "keywords": [
  1478. "mapper",
  1479. "object",
  1480. "odm",
  1481. "orm",
  1482. "persistence"
  1483. ],
  1484. "support": {
  1485. "issues": "https://github.com/doctrine/persistence/issues",
  1486. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1487. },
  1488. "funding": [
  1489. {
  1490. "url": "https://www.doctrine-project.org/sponsorship.html",
  1491. "type": "custom"
  1492. },
  1493. {
  1494. "url": "https://www.patreon.com/phpdoctrine",
  1495. "type": "patreon"
  1496. },
  1497. {
  1498. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1499. "type": "tidelift"
  1500. }
  1501. ],
  1502. "time": "2024-06-20T10:14:30+00:00"
  1503. },
  1504. {
  1505. "name": "doctrine/sql-formatter",
  1506. "version": "1.4.0",
  1507. "source": {
  1508. "type": "git",
  1509. "url": "https://github.com/doctrine/sql-formatter.git",
  1510. "reference": "d1ac84aef745c69ea034929eb6d65a6908b675cc"
  1511. },
  1512. "dist": {
  1513. "type": "zip",
  1514. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/d1ac84aef745c69ea034929eb6d65a6908b675cc",
  1515. "reference": "d1ac84aef745c69ea034929eb6d65a6908b675cc",
  1516. "shasum": ""
  1517. },
  1518. "require": {
  1519. "php": "^8.1"
  1520. },
  1521. "require-dev": {
  1522. "doctrine/coding-standard": "^12",
  1523. "phpstan/phpstan": "^1.10",
  1524. "phpunit/phpunit": "^10.5",
  1525. "vimeo/psalm": "^5.24"
  1526. },
  1527. "bin": [
  1528. "bin/sql-formatter"
  1529. ],
  1530. "type": "library",
  1531. "autoload": {
  1532. "psr-4": {
  1533. "Doctrine\\SqlFormatter\\": "src"
  1534. }
  1535. },
  1536. "notification-url": "https://packagist.org/downloads/",
  1537. "license": [
  1538. "MIT"
  1539. ],
  1540. "authors": [
  1541. {
  1542. "name": "Jeremy Dorn",
  1543. "email": "jeremy@jeremydorn.com",
  1544. "homepage": "https://jeremydorn.com/"
  1545. }
  1546. ],
  1547. "description": "a PHP SQL highlighting library",
  1548. "homepage": "https://github.com/doctrine/sql-formatter/",
  1549. "keywords": [
  1550. "highlight",
  1551. "sql"
  1552. ],
  1553. "support": {
  1554. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1555. "source": "https://github.com/doctrine/sql-formatter/tree/1.4.0"
  1556. },
  1557. "time": "2024-05-08T08:12:09+00:00"
  1558. },
  1559. {
  1560. "name": "egulias/email-validator",
  1561. "version": "4.0.2",
  1562. "source": {
  1563. "type": "git",
  1564. "url": "https://github.com/egulias/EmailValidator.git",
  1565. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1566. },
  1567. "dist": {
  1568. "type": "zip",
  1569. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1570. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1571. "shasum": ""
  1572. },
  1573. "require": {
  1574. "doctrine/lexer": "^2.0 || ^3.0",
  1575. "php": ">=8.1",
  1576. "symfony/polyfill-intl-idn": "^1.26"
  1577. },
  1578. "require-dev": {
  1579. "phpunit/phpunit": "^10.2",
  1580. "vimeo/psalm": "^5.12"
  1581. },
  1582. "suggest": {
  1583. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1584. },
  1585. "type": "library",
  1586. "extra": {
  1587. "branch-alias": {
  1588. "dev-master": "4.0.x-dev"
  1589. }
  1590. },
  1591. "autoload": {
  1592. "psr-4": {
  1593. "Egulias\\EmailValidator\\": "src"
  1594. }
  1595. },
  1596. "notification-url": "https://packagist.org/downloads/",
  1597. "license": [
  1598. "MIT"
  1599. ],
  1600. "authors": [
  1601. {
  1602. "name": "Eduardo Gulias Davis"
  1603. }
  1604. ],
  1605. "description": "A library for validating emails against several RFCs",
  1606. "homepage": "https://github.com/egulias/EmailValidator",
  1607. "keywords": [
  1608. "email",
  1609. "emailvalidation",
  1610. "emailvalidator",
  1611. "validation",
  1612. "validator"
  1613. ],
  1614. "support": {
  1615. "issues": "https://github.com/egulias/EmailValidator/issues",
  1616. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1617. },
  1618. "funding": [
  1619. {
  1620. "url": "https://github.com/egulias",
  1621. "type": "github"
  1622. }
  1623. ],
  1624. "time": "2023-10-06T06:47:41+00:00"
  1625. },
  1626. {
  1627. "name": "friendsofphp/proxy-manager-lts",
  1628. "version": "v1.0.18",
  1629. "source": {
  1630. "type": "git",
  1631. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1632. "reference": "2c8a6cffc3220e99352ad958fe7cf06bf6f7690f"
  1633. },
  1634. "dist": {
  1635. "type": "zip",
  1636. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/2c8a6cffc3220e99352ad958fe7cf06bf6f7690f",
  1637. "reference": "2c8a6cffc3220e99352ad958fe7cf06bf6f7690f",
  1638. "shasum": ""
  1639. },
  1640. "require": {
  1641. "laminas/laminas-code": "~3.4.1|^4.0",
  1642. "php": ">=7.1",
  1643. "symfony/filesystem": "^4.4.17|^5.0|^6.0|^7.0"
  1644. },
  1645. "conflict": {
  1646. "laminas/laminas-stdlib": "<3.2.1",
  1647. "zendframework/zend-stdlib": "<3.2.1"
  1648. },
  1649. "replace": {
  1650. "ocramius/proxy-manager": "^2.1"
  1651. },
  1652. "require-dev": {
  1653. "ext-phar": "*",
  1654. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0"
  1655. },
  1656. "type": "library",
  1657. "extra": {
  1658. "thanks": {
  1659. "name": "ocramius/proxy-manager",
  1660. "url": "https://github.com/Ocramius/ProxyManager"
  1661. }
  1662. },
  1663. "autoload": {
  1664. "psr-4": {
  1665. "ProxyManager\\": "src/ProxyManager"
  1666. }
  1667. },
  1668. "notification-url": "https://packagist.org/downloads/",
  1669. "license": [
  1670. "MIT"
  1671. ],
  1672. "authors": [
  1673. {
  1674. "name": "Marco Pivetta",
  1675. "email": "ocramius@gmail.com",
  1676. "homepage": "https://ocramius.github.io/"
  1677. },
  1678. {
  1679. "name": "Nicolas Grekas",
  1680. "email": "p@tchwork.com"
  1681. }
  1682. ],
  1683. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1684. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1685. "keywords": [
  1686. "aop",
  1687. "lazy loading",
  1688. "proxy",
  1689. "proxy pattern",
  1690. "service proxies"
  1691. ],
  1692. "support": {
  1693. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1694. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.18"
  1695. },
  1696. "funding": [
  1697. {
  1698. "url": "https://github.com/Ocramius",
  1699. "type": "github"
  1700. },
  1701. {
  1702. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1703. "type": "tidelift"
  1704. }
  1705. ],
  1706. "time": "2024-03-20T12:50:41+00:00"
  1707. },
  1708. {
  1709. "name": "laminas/laminas-code",
  1710. "version": "4.14.0",
  1711. "source": {
  1712. "type": "git",
  1713. "url": "https://github.com/laminas/laminas-code.git",
  1714. "reference": "562e02b7d85cb9142b5116cc76c4c7c162a11a1c"
  1715. },
  1716. "dist": {
  1717. "type": "zip",
  1718. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/562e02b7d85cb9142b5116cc76c4c7c162a11a1c",
  1719. "reference": "562e02b7d85cb9142b5116cc76c4c7c162a11a1c",
  1720. "shasum": ""
  1721. },
  1722. "require": {
  1723. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  1724. },
  1725. "require-dev": {
  1726. "doctrine/annotations": "^2.0.1",
  1727. "ext-phar": "*",
  1728. "laminas/laminas-coding-standard": "^2.5.0",
  1729. "laminas/laminas-stdlib": "^3.17.0",
  1730. "phpunit/phpunit": "^10.3.3",
  1731. "psalm/plugin-phpunit": "^0.19.0",
  1732. "vimeo/psalm": "^5.15.0"
  1733. },
  1734. "suggest": {
  1735. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1736. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1737. },
  1738. "type": "library",
  1739. "autoload": {
  1740. "psr-4": {
  1741. "Laminas\\Code\\": "src/"
  1742. }
  1743. },
  1744. "notification-url": "https://packagist.org/downloads/",
  1745. "license": [
  1746. "BSD-3-Clause"
  1747. ],
  1748. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1749. "homepage": "https://laminas.dev",
  1750. "keywords": [
  1751. "code",
  1752. "laminas",
  1753. "laminasframework"
  1754. ],
  1755. "support": {
  1756. "chat": "https://laminas.dev/chat",
  1757. "docs": "https://docs.laminas.dev/laminas-code/",
  1758. "forum": "https://discourse.laminas.dev",
  1759. "issues": "https://github.com/laminas/laminas-code/issues",
  1760. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1761. "source": "https://github.com/laminas/laminas-code"
  1762. },
  1763. "funding": [
  1764. {
  1765. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1766. "type": "community_bridge"
  1767. }
  1768. ],
  1769. "time": "2024-06-17T08:50:25+00:00"
  1770. },
  1771. {
  1772. "name": "league/commonmark",
  1773. "version": "2.5.1",
  1774. "source": {
  1775. "type": "git",
  1776. "url": "https://github.com/thephpleague/commonmark.git",
  1777. "reference": "ac815920de0eff6de947eac0a6a94e5ed0fb147c"
  1778. },
  1779. "dist": {
  1780. "type": "zip",
  1781. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/ac815920de0eff6de947eac0a6a94e5ed0fb147c",
  1782. "reference": "ac815920de0eff6de947eac0a6a94e5ed0fb147c",
  1783. "shasum": ""
  1784. },
  1785. "require": {
  1786. "ext-mbstring": "*",
  1787. "league/config": "^1.1.1",
  1788. "php": "^7.4 || ^8.0",
  1789. "psr/event-dispatcher": "^1.0",
  1790. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1791. "symfony/polyfill-php80": "^1.16"
  1792. },
  1793. "require-dev": {
  1794. "cebe/markdown": "^1.0",
  1795. "commonmark/cmark": "0.31.0",
  1796. "commonmark/commonmark.js": "0.31.0",
  1797. "composer/package-versions-deprecated": "^1.8",
  1798. "embed/embed": "^4.4",
  1799. "erusev/parsedown": "^1.0",
  1800. "ext-json": "*",
  1801. "github/gfm": "0.29.0",
  1802. "michelf/php-markdown": "^1.4 || ^2.0",
  1803. "nyholm/psr7": "^1.5",
  1804. "phpstan/phpstan": "^1.8.2",
  1805. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1806. "scrutinizer/ocular": "^1.8.1",
  1807. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  1808. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  1809. "unleashedtech/php-coding-standard": "^3.1.1",
  1810. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1811. },
  1812. "suggest": {
  1813. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1814. },
  1815. "type": "library",
  1816. "extra": {
  1817. "branch-alias": {
  1818. "dev-main": "2.6-dev"
  1819. }
  1820. },
  1821. "autoload": {
  1822. "psr-4": {
  1823. "League\\CommonMark\\": "src"
  1824. }
  1825. },
  1826. "notification-url": "https://packagist.org/downloads/",
  1827. "license": [
  1828. "BSD-3-Clause"
  1829. ],
  1830. "authors": [
  1831. {
  1832. "name": "Colin O'Dell",
  1833. "email": "colinodell@gmail.com",
  1834. "homepage": "https://www.colinodell.com",
  1835. "role": "Lead Developer"
  1836. }
  1837. ],
  1838. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1839. "homepage": "https://commonmark.thephpleague.com",
  1840. "keywords": [
  1841. "commonmark",
  1842. "flavored",
  1843. "gfm",
  1844. "github",
  1845. "github-flavored",
  1846. "markdown",
  1847. "md",
  1848. "parser"
  1849. ],
  1850. "support": {
  1851. "docs": "https://commonmark.thephpleague.com/",
  1852. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1853. "issues": "https://github.com/thephpleague/commonmark/issues",
  1854. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1855. "source": "https://github.com/thephpleague/commonmark"
  1856. },
  1857. "funding": [
  1858. {
  1859. "url": "https://www.colinodell.com/sponsor",
  1860. "type": "custom"
  1861. },
  1862. {
  1863. "url": "https://www.paypal.me/colinpodell/10.00",
  1864. "type": "custom"
  1865. },
  1866. {
  1867. "url": "https://github.com/colinodell",
  1868. "type": "github"
  1869. },
  1870. {
  1871. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1872. "type": "tidelift"
  1873. }
  1874. ],
  1875. "time": "2024-07-24T12:52:09+00:00"
  1876. },
  1877. {
  1878. "name": "league/config",
  1879. "version": "v1.2.0",
  1880. "source": {
  1881. "type": "git",
  1882. "url": "https://github.com/thephpleague/config.git",
  1883. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1884. },
  1885. "dist": {
  1886. "type": "zip",
  1887. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1888. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1889. "shasum": ""
  1890. },
  1891. "require": {
  1892. "dflydev/dot-access-data": "^3.0.1",
  1893. "nette/schema": "^1.2",
  1894. "php": "^7.4 || ^8.0"
  1895. },
  1896. "require-dev": {
  1897. "phpstan/phpstan": "^1.8.2",
  1898. "phpunit/phpunit": "^9.5.5",
  1899. "scrutinizer/ocular": "^1.8.1",
  1900. "unleashedtech/php-coding-standard": "^3.1",
  1901. "vimeo/psalm": "^4.7.3"
  1902. },
  1903. "type": "library",
  1904. "extra": {
  1905. "branch-alias": {
  1906. "dev-main": "1.2-dev"
  1907. }
  1908. },
  1909. "autoload": {
  1910. "psr-4": {
  1911. "League\\Config\\": "src"
  1912. }
  1913. },
  1914. "notification-url": "https://packagist.org/downloads/",
  1915. "license": [
  1916. "BSD-3-Clause"
  1917. ],
  1918. "authors": [
  1919. {
  1920. "name": "Colin O'Dell",
  1921. "email": "colinodell@gmail.com",
  1922. "homepage": "https://www.colinodell.com",
  1923. "role": "Lead Developer"
  1924. }
  1925. ],
  1926. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1927. "homepage": "https://config.thephpleague.com",
  1928. "keywords": [
  1929. "array",
  1930. "config",
  1931. "configuration",
  1932. "dot",
  1933. "dot-access",
  1934. "nested",
  1935. "schema"
  1936. ],
  1937. "support": {
  1938. "docs": "https://config.thephpleague.com/",
  1939. "issues": "https://github.com/thephpleague/config/issues",
  1940. "rss": "https://github.com/thephpleague/config/releases.atom",
  1941. "source": "https://github.com/thephpleague/config"
  1942. },
  1943. "funding": [
  1944. {
  1945. "url": "https://www.colinodell.com/sponsor",
  1946. "type": "custom"
  1947. },
  1948. {
  1949. "url": "https://www.paypal.me/colinpodell/10.00",
  1950. "type": "custom"
  1951. },
  1952. {
  1953. "url": "https://github.com/colinodell",
  1954. "type": "github"
  1955. }
  1956. ],
  1957. "time": "2022-12-11T20:36:23+00:00"
  1958. },
  1959. {
  1960. "name": "league/uri",
  1961. "version": "7.4.1",
  1962. "source": {
  1963. "type": "git",
  1964. "url": "https://github.com/thephpleague/uri.git",
  1965. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4"
  1966. },
  1967. "dist": {
  1968. "type": "zip",
  1969. "url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  1970. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  1971. "shasum": ""
  1972. },
  1973. "require": {
  1974. "league/uri-interfaces": "^7.3",
  1975. "php": "^8.1"
  1976. },
  1977. "conflict": {
  1978. "league/uri-schemes": "^1.0"
  1979. },
  1980. "suggest": {
  1981. "ext-bcmath": "to improve IPV4 host parsing",
  1982. "ext-fileinfo": "to create Data URI from file contennts",
  1983. "ext-gmp": "to improve IPV4 host parsing",
  1984. "ext-intl": "to handle IDN host with the best performance",
  1985. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  1986. "league/uri-components": "Needed to easily manipulate URI objects components",
  1987. "php-64bit": "to improve IPV4 host parsing",
  1988. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  1989. },
  1990. "type": "library",
  1991. "extra": {
  1992. "branch-alias": {
  1993. "dev-master": "7.x-dev"
  1994. }
  1995. },
  1996. "autoload": {
  1997. "psr-4": {
  1998. "League\\Uri\\": ""
  1999. }
  2000. },
  2001. "notification-url": "https://packagist.org/downloads/",
  2002. "license": [
  2003. "MIT"
  2004. ],
  2005. "authors": [
  2006. {
  2007. "name": "Ignace Nyamagana Butera",
  2008. "email": "nyamsprod@gmail.com",
  2009. "homepage": "https://nyamsprod.com"
  2010. }
  2011. ],
  2012. "description": "URI manipulation library",
  2013. "homepage": "https://uri.thephpleague.com",
  2014. "keywords": [
  2015. "data-uri",
  2016. "file-uri",
  2017. "ftp",
  2018. "hostname",
  2019. "http",
  2020. "https",
  2021. "middleware",
  2022. "parse_str",
  2023. "parse_url",
  2024. "psr-7",
  2025. "query-string",
  2026. "querystring",
  2027. "rfc3986",
  2028. "rfc3987",
  2029. "rfc6570",
  2030. "uri",
  2031. "uri-template",
  2032. "url",
  2033. "ws"
  2034. ],
  2035. "support": {
  2036. "docs": "https://uri.thephpleague.com",
  2037. "forum": "https://thephpleague.slack.com",
  2038. "issues": "https://github.com/thephpleague/uri-src/issues",
  2039. "source": "https://github.com/thephpleague/uri/tree/7.4.1"
  2040. },
  2041. "funding": [
  2042. {
  2043. "url": "https://github.com/sponsors/nyamsprod",
  2044. "type": "github"
  2045. }
  2046. ],
  2047. "time": "2024-03-23T07:42:40+00:00"
  2048. },
  2049. {
  2050. "name": "league/uri-interfaces",
  2051. "version": "7.4.1",
  2052. "source": {
  2053. "type": "git",
  2054. "url": "https://github.com/thephpleague/uri-interfaces.git",
  2055. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718"
  2056. },
  2057. "dist": {
  2058. "type": "zip",
  2059. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718",
  2060. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718",
  2061. "shasum": ""
  2062. },
  2063. "require": {
  2064. "ext-filter": "*",
  2065. "php": "^8.1",
  2066. "psr/http-factory": "^1",
  2067. "psr/http-message": "^1.1 || ^2.0"
  2068. },
  2069. "suggest": {
  2070. "ext-bcmath": "to improve IPV4 host parsing",
  2071. "ext-gmp": "to improve IPV4 host parsing",
  2072. "ext-intl": "to handle IDN host with the best performance",
  2073. "php-64bit": "to improve IPV4 host parsing",
  2074. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  2075. },
  2076. "type": "library",
  2077. "extra": {
  2078. "branch-alias": {
  2079. "dev-master": "7.x-dev"
  2080. }
  2081. },
  2082. "autoload": {
  2083. "psr-4": {
  2084. "League\\Uri\\": ""
  2085. }
  2086. },
  2087. "notification-url": "https://packagist.org/downloads/",
  2088. "license": [
  2089. "MIT"
  2090. ],
  2091. "authors": [
  2092. {
  2093. "name": "Ignace Nyamagana Butera",
  2094. "email": "nyamsprod@gmail.com",
  2095. "homepage": "https://nyamsprod.com"
  2096. }
  2097. ],
  2098. "description": "Common interfaces and classes for URI representation and interaction",
  2099. "homepage": "https://uri.thephpleague.com",
  2100. "keywords": [
  2101. "data-uri",
  2102. "file-uri",
  2103. "ftp",
  2104. "hostname",
  2105. "http",
  2106. "https",
  2107. "parse_str",
  2108. "parse_url",
  2109. "psr-7",
  2110. "query-string",
  2111. "querystring",
  2112. "rfc3986",
  2113. "rfc3987",
  2114. "rfc6570",
  2115. "uri",
  2116. "url",
  2117. "ws"
  2118. ],
  2119. "support": {
  2120. "docs": "https://uri.thephpleague.com",
  2121. "forum": "https://thephpleague.slack.com",
  2122. "issues": "https://github.com/thephpleague/uri-src/issues",
  2123. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.1"
  2124. },
  2125. "funding": [
  2126. {
  2127. "url": "https://github.com/sponsors/nyamsprod",
  2128. "type": "github"
  2129. }
  2130. ],
  2131. "time": "2024-03-23T07:42:40+00:00"
  2132. },
  2133. {
  2134. "name": "masterminds/html5",
  2135. "version": "2.9.0",
  2136. "source": {
  2137. "type": "git",
  2138. "url": "https://github.com/Masterminds/html5-php.git",
  2139. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  2140. },
  2141. "dist": {
  2142. "type": "zip",
  2143. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  2144. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  2145. "shasum": ""
  2146. },
  2147. "require": {
  2148. "ext-dom": "*",
  2149. "php": ">=5.3.0"
  2150. },
  2151. "require-dev": {
  2152. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  2153. },
  2154. "type": "library",
  2155. "extra": {
  2156. "branch-alias": {
  2157. "dev-master": "2.7-dev"
  2158. }
  2159. },
  2160. "autoload": {
  2161. "psr-4": {
  2162. "Masterminds\\": "src"
  2163. }
  2164. },
  2165. "notification-url": "https://packagist.org/downloads/",
  2166. "license": [
  2167. "MIT"
  2168. ],
  2169. "authors": [
  2170. {
  2171. "name": "Matt Butcher",
  2172. "email": "technosophos@gmail.com"
  2173. },
  2174. {
  2175. "name": "Matt Farina",
  2176. "email": "matt@mattfarina.com"
  2177. },
  2178. {
  2179. "name": "Asmir Mustafic",
  2180. "email": "goetas@gmail.com"
  2181. }
  2182. ],
  2183. "description": "An HTML5 parser and serializer.",
  2184. "homepage": "http://masterminds.github.io/html5-php",
  2185. "keywords": [
  2186. "HTML5",
  2187. "dom",
  2188. "html",
  2189. "parser",
  2190. "querypath",
  2191. "serializer",
  2192. "xml"
  2193. ],
  2194. "support": {
  2195. "issues": "https://github.com/Masterminds/html5-php/issues",
  2196. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  2197. },
  2198. "time": "2024-03-31T07:05:07+00:00"
  2199. },
  2200. {
  2201. "name": "monolog/monolog",
  2202. "version": "3.7.0",
  2203. "source": {
  2204. "type": "git",
  2205. "url": "https://github.com/Seldaek/monolog.git",
  2206. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  2207. },
  2208. "dist": {
  2209. "type": "zip",
  2210. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  2211. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  2212. "shasum": ""
  2213. },
  2214. "require": {
  2215. "php": ">=8.1",
  2216. "psr/log": "^2.0 || ^3.0"
  2217. },
  2218. "provide": {
  2219. "psr/log-implementation": "3.0.0"
  2220. },
  2221. "require-dev": {
  2222. "aws/aws-sdk-php": "^3.0",
  2223. "doctrine/couchdb": "~1.0@dev",
  2224. "elasticsearch/elasticsearch": "^7 || ^8",
  2225. "ext-json": "*",
  2226. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2227. "guzzlehttp/guzzle": "^7.4.5",
  2228. "guzzlehttp/psr7": "^2.2",
  2229. "mongodb/mongodb": "^1.8",
  2230. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2231. "phpstan/phpstan": "^1.9",
  2232. "phpstan/phpstan-deprecation-rules": "^1.0",
  2233. "phpstan/phpstan-strict-rules": "^1.4",
  2234. "phpunit/phpunit": "^10.5.17",
  2235. "predis/predis": "^1.1 || ^2",
  2236. "ruflin/elastica": "^7",
  2237. "symfony/mailer": "^5.4 || ^6",
  2238. "symfony/mime": "^5.4 || ^6"
  2239. },
  2240. "suggest": {
  2241. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2242. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2243. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2244. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2245. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2246. "ext-mbstring": "Allow to work properly with unicode symbols",
  2247. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2248. "ext-openssl": "Required to send log messages using SSL",
  2249. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2250. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2251. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2252. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2253. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2254. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2255. },
  2256. "type": "library",
  2257. "extra": {
  2258. "branch-alias": {
  2259. "dev-main": "3.x-dev"
  2260. }
  2261. },
  2262. "autoload": {
  2263. "psr-4": {
  2264. "Monolog\\": "src/Monolog"
  2265. }
  2266. },
  2267. "notification-url": "https://packagist.org/downloads/",
  2268. "license": [
  2269. "MIT"
  2270. ],
  2271. "authors": [
  2272. {
  2273. "name": "Jordi Boggiano",
  2274. "email": "j.boggiano@seld.be",
  2275. "homepage": "https://seld.be"
  2276. }
  2277. ],
  2278. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2279. "homepage": "https://github.com/Seldaek/monolog",
  2280. "keywords": [
  2281. "log",
  2282. "logging",
  2283. "psr-3"
  2284. ],
  2285. "support": {
  2286. "issues": "https://github.com/Seldaek/monolog/issues",
  2287. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  2288. },
  2289. "funding": [
  2290. {
  2291. "url": "https://github.com/Seldaek",
  2292. "type": "github"
  2293. },
  2294. {
  2295. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2296. "type": "tidelift"
  2297. }
  2298. ],
  2299. "time": "2024-06-28T09:40:51+00:00"
  2300. },
  2301. {
  2302. "name": "nette/schema",
  2303. "version": "v1.3.0",
  2304. "source": {
  2305. "type": "git",
  2306. "url": "https://github.com/nette/schema.git",
  2307. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188"
  2308. },
  2309. "dist": {
  2310. "type": "zip",
  2311. "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  2312. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  2313. "shasum": ""
  2314. },
  2315. "require": {
  2316. "nette/utils": "^4.0",
  2317. "php": "8.1 - 8.3"
  2318. },
  2319. "require-dev": {
  2320. "nette/tester": "^2.4",
  2321. "phpstan/phpstan-nette": "^1.0",
  2322. "tracy/tracy": "^2.8"
  2323. },
  2324. "type": "library",
  2325. "extra": {
  2326. "branch-alias": {
  2327. "dev-master": "1.3-dev"
  2328. }
  2329. },
  2330. "autoload": {
  2331. "classmap": [
  2332. "src/"
  2333. ]
  2334. },
  2335. "notification-url": "https://packagist.org/downloads/",
  2336. "license": [
  2337. "BSD-3-Clause",
  2338. "GPL-2.0-only",
  2339. "GPL-3.0-only"
  2340. ],
  2341. "authors": [
  2342. {
  2343. "name": "David Grudl",
  2344. "homepage": "https://davidgrudl.com"
  2345. },
  2346. {
  2347. "name": "Nette Community",
  2348. "homepage": "https://nette.org/contributors"
  2349. }
  2350. ],
  2351. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2352. "homepage": "https://nette.org",
  2353. "keywords": [
  2354. "config",
  2355. "nette"
  2356. ],
  2357. "support": {
  2358. "issues": "https://github.com/nette/schema/issues",
  2359. "source": "https://github.com/nette/schema/tree/v1.3.0"
  2360. },
  2361. "time": "2023-12-11T11:54:22+00:00"
  2362. },
  2363. {
  2364. "name": "nette/utils",
  2365. "version": "v4.0.4",
  2366. "source": {
  2367. "type": "git",
  2368. "url": "https://github.com/nette/utils.git",
  2369. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
  2370. },
  2371. "dist": {
  2372. "type": "zip",
  2373. "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  2374. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  2375. "shasum": ""
  2376. },
  2377. "require": {
  2378. "php": ">=8.0 <8.4"
  2379. },
  2380. "conflict": {
  2381. "nette/finder": "<3",
  2382. "nette/schema": "<1.2.2"
  2383. },
  2384. "require-dev": {
  2385. "jetbrains/phpstorm-attributes": "dev-master",
  2386. "nette/tester": "^2.5",
  2387. "phpstan/phpstan": "^1.0",
  2388. "tracy/tracy": "^2.9"
  2389. },
  2390. "suggest": {
  2391. "ext-gd": "to use Image",
  2392. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2393. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2394. "ext-json": "to use Nette\\Utils\\Json",
  2395. "ext-mbstring": "to use Strings::lower() etc...",
  2396. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2397. },
  2398. "type": "library",
  2399. "extra": {
  2400. "branch-alias": {
  2401. "dev-master": "4.0-dev"
  2402. }
  2403. },
  2404. "autoload": {
  2405. "classmap": [
  2406. "src/"
  2407. ]
  2408. },
  2409. "notification-url": "https://packagist.org/downloads/",
  2410. "license": [
  2411. "BSD-3-Clause",
  2412. "GPL-2.0-only",
  2413. "GPL-3.0-only"
  2414. ],
  2415. "authors": [
  2416. {
  2417. "name": "David Grudl",
  2418. "homepage": "https://davidgrudl.com"
  2419. },
  2420. {
  2421. "name": "Nette Community",
  2422. "homepage": "https://nette.org/contributors"
  2423. }
  2424. ],
  2425. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2426. "homepage": "https://nette.org",
  2427. "keywords": [
  2428. "array",
  2429. "core",
  2430. "datetime",
  2431. "images",
  2432. "json",
  2433. "nette",
  2434. "paginator",
  2435. "password",
  2436. "slugify",
  2437. "string",
  2438. "unicode",
  2439. "utf-8",
  2440. "utility",
  2441. "validation"
  2442. ],
  2443. "support": {
  2444. "issues": "https://github.com/nette/utils/issues",
  2445. "source": "https://github.com/nette/utils/tree/v4.0.4"
  2446. },
  2447. "time": "2024-01-17T16:50:36+00:00"
  2448. },
  2449. {
  2450. "name": "phpdocumentor/reflection-common",
  2451. "version": "2.2.0",
  2452. "source": {
  2453. "type": "git",
  2454. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2455. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2456. },
  2457. "dist": {
  2458. "type": "zip",
  2459. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2460. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2461. "shasum": ""
  2462. },
  2463. "require": {
  2464. "php": "^7.2 || ^8.0"
  2465. },
  2466. "type": "library",
  2467. "extra": {
  2468. "branch-alias": {
  2469. "dev-2.x": "2.x-dev"
  2470. }
  2471. },
  2472. "autoload": {
  2473. "psr-4": {
  2474. "phpDocumentor\\Reflection\\": "src/"
  2475. }
  2476. },
  2477. "notification-url": "https://packagist.org/downloads/",
  2478. "license": [
  2479. "MIT"
  2480. ],
  2481. "authors": [
  2482. {
  2483. "name": "Jaap van Otterdijk",
  2484. "email": "opensource@ijaap.nl"
  2485. }
  2486. ],
  2487. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2488. "homepage": "http://www.phpdoc.org",
  2489. "keywords": [
  2490. "FQSEN",
  2491. "phpDocumentor",
  2492. "phpdoc",
  2493. "reflection",
  2494. "static analysis"
  2495. ],
  2496. "support": {
  2497. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2498. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2499. },
  2500. "time": "2020-06-27T09:03:43+00:00"
  2501. },
  2502. {
  2503. "name": "phpdocumentor/reflection-docblock",
  2504. "version": "5.4.1",
  2505. "source": {
  2506. "type": "git",
  2507. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2508. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
  2509. },
  2510. "dist": {
  2511. "type": "zip",
  2512. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2513. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2514. "shasum": ""
  2515. },
  2516. "require": {
  2517. "doctrine/deprecations": "^1.1",
  2518. "ext-filter": "*",
  2519. "php": "^7.4 || ^8.0",
  2520. "phpdocumentor/reflection-common": "^2.2",
  2521. "phpdocumentor/type-resolver": "^1.7",
  2522. "phpstan/phpdoc-parser": "^1.7",
  2523. "webmozart/assert": "^1.9.1"
  2524. },
  2525. "require-dev": {
  2526. "mockery/mockery": "~1.3.5",
  2527. "phpstan/extension-installer": "^1.1",
  2528. "phpstan/phpstan": "^1.8",
  2529. "phpstan/phpstan-mockery": "^1.1",
  2530. "phpstan/phpstan-webmozart-assert": "^1.2",
  2531. "phpunit/phpunit": "^9.5",
  2532. "vimeo/psalm": "^5.13"
  2533. },
  2534. "type": "library",
  2535. "extra": {
  2536. "branch-alias": {
  2537. "dev-master": "5.x-dev"
  2538. }
  2539. },
  2540. "autoload": {
  2541. "psr-4": {
  2542. "phpDocumentor\\Reflection\\": "src"
  2543. }
  2544. },
  2545. "notification-url": "https://packagist.org/downloads/",
  2546. "license": [
  2547. "MIT"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "Mike van Riel",
  2552. "email": "me@mikevanriel.com"
  2553. },
  2554. {
  2555. "name": "Jaap van Otterdijk",
  2556. "email": "opensource@ijaap.nl"
  2557. }
  2558. ],
  2559. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2560. "support": {
  2561. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2562. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
  2563. },
  2564. "time": "2024-05-21T05:55:05+00:00"
  2565. },
  2566. {
  2567. "name": "phpdocumentor/type-resolver",
  2568. "version": "1.8.2",
  2569. "source": {
  2570. "type": "git",
  2571. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2572. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  2573. },
  2574. "dist": {
  2575. "type": "zip",
  2576. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  2577. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  2578. "shasum": ""
  2579. },
  2580. "require": {
  2581. "doctrine/deprecations": "^1.0",
  2582. "php": "^7.3 || ^8.0",
  2583. "phpdocumentor/reflection-common": "^2.0",
  2584. "phpstan/phpdoc-parser": "^1.13"
  2585. },
  2586. "require-dev": {
  2587. "ext-tokenizer": "*",
  2588. "phpbench/phpbench": "^1.2",
  2589. "phpstan/extension-installer": "^1.1",
  2590. "phpstan/phpstan": "^1.8",
  2591. "phpstan/phpstan-phpunit": "^1.1",
  2592. "phpunit/phpunit": "^9.5",
  2593. "rector/rector": "^0.13.9",
  2594. "vimeo/psalm": "^4.25"
  2595. },
  2596. "type": "library",
  2597. "extra": {
  2598. "branch-alias": {
  2599. "dev-1.x": "1.x-dev"
  2600. }
  2601. },
  2602. "autoload": {
  2603. "psr-4": {
  2604. "phpDocumentor\\Reflection\\": "src"
  2605. }
  2606. },
  2607. "notification-url": "https://packagist.org/downloads/",
  2608. "license": [
  2609. "MIT"
  2610. ],
  2611. "authors": [
  2612. {
  2613. "name": "Mike van Riel",
  2614. "email": "me@mikevanriel.com"
  2615. }
  2616. ],
  2617. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2618. "support": {
  2619. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2620. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  2621. },
  2622. "time": "2024-02-23T11:10:43+00:00"
  2623. },
  2624. {
  2625. "name": "phpstan/phpdoc-parser",
  2626. "version": "1.29.1",
  2627. "source": {
  2628. "type": "git",
  2629. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2630. "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4"
  2631. },
  2632. "dist": {
  2633. "type": "zip",
  2634. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fcaefacf2d5c417e928405b71b400d4ce10daaf4",
  2635. "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4",
  2636. "shasum": ""
  2637. },
  2638. "require": {
  2639. "php": "^7.2 || ^8.0"
  2640. },
  2641. "require-dev": {
  2642. "doctrine/annotations": "^2.0",
  2643. "nikic/php-parser": "^4.15",
  2644. "php-parallel-lint/php-parallel-lint": "^1.2",
  2645. "phpstan/extension-installer": "^1.0",
  2646. "phpstan/phpstan": "^1.5",
  2647. "phpstan/phpstan-phpunit": "^1.1",
  2648. "phpstan/phpstan-strict-rules": "^1.0",
  2649. "phpunit/phpunit": "^9.5",
  2650. "symfony/process": "^5.2"
  2651. },
  2652. "type": "library",
  2653. "autoload": {
  2654. "psr-4": {
  2655. "PHPStan\\PhpDocParser\\": [
  2656. "src/"
  2657. ]
  2658. }
  2659. },
  2660. "notification-url": "https://packagist.org/downloads/",
  2661. "license": [
  2662. "MIT"
  2663. ],
  2664. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2665. "support": {
  2666. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2667. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.29.1"
  2668. },
  2669. "time": "2024-05-31T08:52:43+00:00"
  2670. },
  2671. {
  2672. "name": "psr/cache",
  2673. "version": "3.0.0",
  2674. "source": {
  2675. "type": "git",
  2676. "url": "https://github.com/php-fig/cache.git",
  2677. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2678. },
  2679. "dist": {
  2680. "type": "zip",
  2681. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2682. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2683. "shasum": ""
  2684. },
  2685. "require": {
  2686. "php": ">=8.0.0"
  2687. },
  2688. "type": "library",
  2689. "extra": {
  2690. "branch-alias": {
  2691. "dev-master": "1.0.x-dev"
  2692. }
  2693. },
  2694. "autoload": {
  2695. "psr-4": {
  2696. "Psr\\Cache\\": "src/"
  2697. }
  2698. },
  2699. "notification-url": "https://packagist.org/downloads/",
  2700. "license": [
  2701. "MIT"
  2702. ],
  2703. "authors": [
  2704. {
  2705. "name": "PHP-FIG",
  2706. "homepage": "https://www.php-fig.org/"
  2707. }
  2708. ],
  2709. "description": "Common interface for caching libraries",
  2710. "keywords": [
  2711. "cache",
  2712. "psr",
  2713. "psr-6"
  2714. ],
  2715. "support": {
  2716. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2717. },
  2718. "time": "2021-02-03T23:26:27+00:00"
  2719. },
  2720. {
  2721. "name": "psr/clock",
  2722. "version": "1.0.0",
  2723. "source": {
  2724. "type": "git",
  2725. "url": "https://github.com/php-fig/clock.git",
  2726. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2727. },
  2728. "dist": {
  2729. "type": "zip",
  2730. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2731. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2732. "shasum": ""
  2733. },
  2734. "require": {
  2735. "php": "^7.0 || ^8.0"
  2736. },
  2737. "type": "library",
  2738. "autoload": {
  2739. "psr-4": {
  2740. "Psr\\Clock\\": "src/"
  2741. }
  2742. },
  2743. "notification-url": "https://packagist.org/downloads/",
  2744. "license": [
  2745. "MIT"
  2746. ],
  2747. "authors": [
  2748. {
  2749. "name": "PHP-FIG",
  2750. "homepage": "https://www.php-fig.org/"
  2751. }
  2752. ],
  2753. "description": "Common interface for reading the clock.",
  2754. "homepage": "https://github.com/php-fig/clock",
  2755. "keywords": [
  2756. "clock",
  2757. "now",
  2758. "psr",
  2759. "psr-20",
  2760. "time"
  2761. ],
  2762. "support": {
  2763. "issues": "https://github.com/php-fig/clock/issues",
  2764. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2765. },
  2766. "time": "2022-11-25T14:36:26+00:00"
  2767. },
  2768. {
  2769. "name": "psr/container",
  2770. "version": "2.0.2",
  2771. "source": {
  2772. "type": "git",
  2773. "url": "https://github.com/php-fig/container.git",
  2774. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2775. },
  2776. "dist": {
  2777. "type": "zip",
  2778. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2779. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2780. "shasum": ""
  2781. },
  2782. "require": {
  2783. "php": ">=7.4.0"
  2784. },
  2785. "type": "library",
  2786. "extra": {
  2787. "branch-alias": {
  2788. "dev-master": "2.0.x-dev"
  2789. }
  2790. },
  2791. "autoload": {
  2792. "psr-4": {
  2793. "Psr\\Container\\": "src/"
  2794. }
  2795. },
  2796. "notification-url": "https://packagist.org/downloads/",
  2797. "license": [
  2798. "MIT"
  2799. ],
  2800. "authors": [
  2801. {
  2802. "name": "PHP-FIG",
  2803. "homepage": "https://www.php-fig.org/"
  2804. }
  2805. ],
  2806. "description": "Common Container Interface (PHP FIG PSR-11)",
  2807. "homepage": "https://github.com/php-fig/container",
  2808. "keywords": [
  2809. "PSR-11",
  2810. "container",
  2811. "container-interface",
  2812. "container-interop",
  2813. "psr"
  2814. ],
  2815. "support": {
  2816. "issues": "https://github.com/php-fig/container/issues",
  2817. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2818. },
  2819. "time": "2021-11-05T16:47:00+00:00"
  2820. },
  2821. {
  2822. "name": "psr/event-dispatcher",
  2823. "version": "1.0.0",
  2824. "source": {
  2825. "type": "git",
  2826. "url": "https://github.com/php-fig/event-dispatcher.git",
  2827. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2828. },
  2829. "dist": {
  2830. "type": "zip",
  2831. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2832. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2833. "shasum": ""
  2834. },
  2835. "require": {
  2836. "php": ">=7.2.0"
  2837. },
  2838. "type": "library",
  2839. "extra": {
  2840. "branch-alias": {
  2841. "dev-master": "1.0.x-dev"
  2842. }
  2843. },
  2844. "autoload": {
  2845. "psr-4": {
  2846. "Psr\\EventDispatcher\\": "src/"
  2847. }
  2848. },
  2849. "notification-url": "https://packagist.org/downloads/",
  2850. "license": [
  2851. "MIT"
  2852. ],
  2853. "authors": [
  2854. {
  2855. "name": "PHP-FIG",
  2856. "homepage": "http://www.php-fig.org/"
  2857. }
  2858. ],
  2859. "description": "Standard interfaces for event handling.",
  2860. "keywords": [
  2861. "events",
  2862. "psr",
  2863. "psr-14"
  2864. ],
  2865. "support": {
  2866. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2867. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2868. },
  2869. "time": "2019-01-08T18:20:26+00:00"
  2870. },
  2871. {
  2872. "name": "psr/http-factory",
  2873. "version": "1.1.0",
  2874. "source": {
  2875. "type": "git",
  2876. "url": "https://github.com/php-fig/http-factory.git",
  2877. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2878. },
  2879. "dist": {
  2880. "type": "zip",
  2881. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2882. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2883. "shasum": ""
  2884. },
  2885. "require": {
  2886. "php": ">=7.1",
  2887. "psr/http-message": "^1.0 || ^2.0"
  2888. },
  2889. "type": "library",
  2890. "extra": {
  2891. "branch-alias": {
  2892. "dev-master": "1.0.x-dev"
  2893. }
  2894. },
  2895. "autoload": {
  2896. "psr-4": {
  2897. "Psr\\Http\\Message\\": "src/"
  2898. }
  2899. },
  2900. "notification-url": "https://packagist.org/downloads/",
  2901. "license": [
  2902. "MIT"
  2903. ],
  2904. "authors": [
  2905. {
  2906. "name": "PHP-FIG",
  2907. "homepage": "https://www.php-fig.org/"
  2908. }
  2909. ],
  2910. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  2911. "keywords": [
  2912. "factory",
  2913. "http",
  2914. "message",
  2915. "psr",
  2916. "psr-17",
  2917. "psr-7",
  2918. "request",
  2919. "response"
  2920. ],
  2921. "support": {
  2922. "source": "https://github.com/php-fig/http-factory"
  2923. },
  2924. "time": "2024-04-15T12:06:14+00:00"
  2925. },
  2926. {
  2927. "name": "psr/http-message",
  2928. "version": "2.0",
  2929. "source": {
  2930. "type": "git",
  2931. "url": "https://github.com/php-fig/http-message.git",
  2932. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2933. },
  2934. "dist": {
  2935. "type": "zip",
  2936. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2937. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2938. "shasum": ""
  2939. },
  2940. "require": {
  2941. "php": "^7.2 || ^8.0"
  2942. },
  2943. "type": "library",
  2944. "extra": {
  2945. "branch-alias": {
  2946. "dev-master": "2.0.x-dev"
  2947. }
  2948. },
  2949. "autoload": {
  2950. "psr-4": {
  2951. "Psr\\Http\\Message\\": "src/"
  2952. }
  2953. },
  2954. "notification-url": "https://packagist.org/downloads/",
  2955. "license": [
  2956. "MIT"
  2957. ],
  2958. "authors": [
  2959. {
  2960. "name": "PHP-FIG",
  2961. "homepage": "https://www.php-fig.org/"
  2962. }
  2963. ],
  2964. "description": "Common interface for HTTP messages",
  2965. "homepage": "https://github.com/php-fig/http-message",
  2966. "keywords": [
  2967. "http",
  2968. "http-message",
  2969. "psr",
  2970. "psr-7",
  2971. "request",
  2972. "response"
  2973. ],
  2974. "support": {
  2975. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2976. },
  2977. "time": "2023-04-04T09:54:51+00:00"
  2978. },
  2979. {
  2980. "name": "psr/link",
  2981. "version": "2.0.1",
  2982. "source": {
  2983. "type": "git",
  2984. "url": "https://github.com/php-fig/link.git",
  2985. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2986. },
  2987. "dist": {
  2988. "type": "zip",
  2989. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2990. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2991. "shasum": ""
  2992. },
  2993. "require": {
  2994. "php": ">=8.0.0"
  2995. },
  2996. "suggest": {
  2997. "fig/link-util": "Provides some useful PSR-13 utilities"
  2998. },
  2999. "type": "library",
  3000. "extra": {
  3001. "branch-alias": {
  3002. "dev-master": "2.0.x-dev"
  3003. }
  3004. },
  3005. "autoload": {
  3006. "psr-4": {
  3007. "Psr\\Link\\": "src/"
  3008. }
  3009. },
  3010. "notification-url": "https://packagist.org/downloads/",
  3011. "license": [
  3012. "MIT"
  3013. ],
  3014. "authors": [
  3015. {
  3016. "name": "PHP-FIG",
  3017. "homepage": "http://www.php-fig.org/"
  3018. }
  3019. ],
  3020. "description": "Common interfaces for HTTP links",
  3021. "homepage": "https://github.com/php-fig/link",
  3022. "keywords": [
  3023. "http",
  3024. "http-link",
  3025. "link",
  3026. "psr",
  3027. "psr-13",
  3028. "rest"
  3029. ],
  3030. "support": {
  3031. "source": "https://github.com/php-fig/link/tree/2.0.1"
  3032. },
  3033. "time": "2021-03-11T23:00:27+00:00"
  3034. },
  3035. {
  3036. "name": "psr/log",
  3037. "version": "3.0.0",
  3038. "source": {
  3039. "type": "git",
  3040. "url": "https://github.com/php-fig/log.git",
  3041. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  3042. },
  3043. "dist": {
  3044. "type": "zip",
  3045. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3046. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3047. "shasum": ""
  3048. },
  3049. "require": {
  3050. "php": ">=8.0.0"
  3051. },
  3052. "type": "library",
  3053. "extra": {
  3054. "branch-alias": {
  3055. "dev-master": "3.x-dev"
  3056. }
  3057. },
  3058. "autoload": {
  3059. "psr-4": {
  3060. "Psr\\Log\\": "src"
  3061. }
  3062. },
  3063. "notification-url": "https://packagist.org/downloads/",
  3064. "license": [
  3065. "MIT"
  3066. ],
  3067. "authors": [
  3068. {
  3069. "name": "PHP-FIG",
  3070. "homepage": "https://www.php-fig.org/"
  3071. }
  3072. ],
  3073. "description": "Common interface for logging libraries",
  3074. "homepage": "https://github.com/php-fig/log",
  3075. "keywords": [
  3076. "log",
  3077. "psr",
  3078. "psr-3"
  3079. ],
  3080. "support": {
  3081. "source": "https://github.com/php-fig/log/tree/3.0.0"
  3082. },
  3083. "time": "2021-07-14T16:46:02+00:00"
  3084. },
  3085. {
  3086. "name": "symfony/apache-pack",
  3087. "version": "v1.0.1",
  3088. "source": {
  3089. "type": "git",
  3090. "url": "https://github.com/symfony/apache-pack.git",
  3091. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  3092. },
  3093. "dist": {
  3094. "type": "zip",
  3095. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3096. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3097. "shasum": ""
  3098. },
  3099. "type": "symfony-pack",
  3100. "notification-url": "https://packagist.org/downloads/",
  3101. "license": [
  3102. "MIT"
  3103. ],
  3104. "description": "A pack for Apache support in Symfony",
  3105. "support": {
  3106. "issues": "https://github.com/symfony/apache-pack/issues",
  3107. "source": "https://github.com/symfony/apache-pack/tree/master"
  3108. },
  3109. "time": "2017-12-12T01:46:35+00:00"
  3110. },
  3111. {
  3112. "name": "symfony/asset",
  3113. "version": "v6.4.8",
  3114. "source": {
  3115. "type": "git",
  3116. "url": "https://github.com/symfony/asset.git",
  3117. "reference": "c668aa320e26b7379540368832b9d1dd43d32603"
  3118. },
  3119. "dist": {
  3120. "type": "zip",
  3121. "url": "https://api.github.com/repos/symfony/asset/zipball/c668aa320e26b7379540368832b9d1dd43d32603",
  3122. "reference": "c668aa320e26b7379540368832b9d1dd43d32603",
  3123. "shasum": ""
  3124. },
  3125. "require": {
  3126. "php": ">=8.1"
  3127. },
  3128. "conflict": {
  3129. "symfony/http-foundation": "<5.4"
  3130. },
  3131. "require-dev": {
  3132. "symfony/http-client": "^5.4|^6.0|^7.0",
  3133. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  3134. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  3135. },
  3136. "type": "library",
  3137. "autoload": {
  3138. "psr-4": {
  3139. "Symfony\\Component\\Asset\\": ""
  3140. },
  3141. "exclude-from-classmap": [
  3142. "/Tests/"
  3143. ]
  3144. },
  3145. "notification-url": "https://packagist.org/downloads/",
  3146. "license": [
  3147. "MIT"
  3148. ],
  3149. "authors": [
  3150. {
  3151. "name": "Fabien Potencier",
  3152. "email": "fabien@symfony.com"
  3153. },
  3154. {
  3155. "name": "Symfony Community",
  3156. "homepage": "https://symfony.com/contributors"
  3157. }
  3158. ],
  3159. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3160. "homepage": "https://symfony.com",
  3161. "support": {
  3162. "source": "https://github.com/symfony/asset/tree/v6.4.8"
  3163. },
  3164. "funding": [
  3165. {
  3166. "url": "https://symfony.com/sponsor",
  3167. "type": "custom"
  3168. },
  3169. {
  3170. "url": "https://github.com/fabpot",
  3171. "type": "github"
  3172. },
  3173. {
  3174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3175. "type": "tidelift"
  3176. }
  3177. ],
  3178. "time": "2024-05-31T14:49:08+00:00"
  3179. },
  3180. {
  3181. "name": "symfony/cache",
  3182. "version": "v6.4.10",
  3183. "source": {
  3184. "type": "git",
  3185. "url": "https://github.com/symfony/cache.git",
  3186. "reference": "6702d2d777260e6ff3451fee2d7d78ab5f715cdc"
  3187. },
  3188. "dist": {
  3189. "type": "zip",
  3190. "url": "https://api.github.com/repos/symfony/cache/zipball/6702d2d777260e6ff3451fee2d7d78ab5f715cdc",
  3191. "reference": "6702d2d777260e6ff3451fee2d7d78ab5f715cdc",
  3192. "shasum": ""
  3193. },
  3194. "require": {
  3195. "php": ">=8.1",
  3196. "psr/cache": "^2.0|^3.0",
  3197. "psr/log": "^1.1|^2|^3",
  3198. "symfony/cache-contracts": "^2.5|^3",
  3199. "symfony/service-contracts": "^2.5|^3",
  3200. "symfony/var-exporter": "^6.3.6|^7.0"
  3201. },
  3202. "conflict": {
  3203. "doctrine/dbal": "<2.13.1",
  3204. "symfony/dependency-injection": "<5.4",
  3205. "symfony/http-kernel": "<5.4",
  3206. "symfony/var-dumper": "<5.4"
  3207. },
  3208. "provide": {
  3209. "psr/cache-implementation": "2.0|3.0",
  3210. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3211. "symfony/cache-implementation": "1.1|2.0|3.0"
  3212. },
  3213. "require-dev": {
  3214. "cache/integration-tests": "dev-master",
  3215. "doctrine/dbal": "^2.13.1|^3|^4",
  3216. "predis/predis": "^1.1|^2.0",
  3217. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3218. "symfony/config": "^5.4|^6.0|^7.0",
  3219. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3220. "symfony/filesystem": "^5.4|^6.0|^7.0",
  3221. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  3222. "symfony/messenger": "^5.4|^6.0|^7.0",
  3223. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3224. },
  3225. "type": "library",
  3226. "autoload": {
  3227. "psr-4": {
  3228. "Symfony\\Component\\Cache\\": ""
  3229. },
  3230. "classmap": [
  3231. "Traits/ValueWrapper.php"
  3232. ],
  3233. "exclude-from-classmap": [
  3234. "/Tests/"
  3235. ]
  3236. },
  3237. "notification-url": "https://packagist.org/downloads/",
  3238. "license": [
  3239. "MIT"
  3240. ],
  3241. "authors": [
  3242. {
  3243. "name": "Nicolas Grekas",
  3244. "email": "p@tchwork.com"
  3245. },
  3246. {
  3247. "name": "Symfony Community",
  3248. "homepage": "https://symfony.com/contributors"
  3249. }
  3250. ],
  3251. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3252. "homepage": "https://symfony.com",
  3253. "keywords": [
  3254. "caching",
  3255. "psr6"
  3256. ],
  3257. "support": {
  3258. "source": "https://github.com/symfony/cache/tree/v6.4.10"
  3259. },
  3260. "funding": [
  3261. {
  3262. "url": "https://symfony.com/sponsor",
  3263. "type": "custom"
  3264. },
  3265. {
  3266. "url": "https://github.com/fabpot",
  3267. "type": "github"
  3268. },
  3269. {
  3270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3271. "type": "tidelift"
  3272. }
  3273. ],
  3274. "time": "2024-07-17T06:05:49+00:00"
  3275. },
  3276. {
  3277. "name": "symfony/cache-contracts",
  3278. "version": "v3.5.0",
  3279. "source": {
  3280. "type": "git",
  3281. "url": "https://github.com/symfony/cache-contracts.git",
  3282. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  3283. },
  3284. "dist": {
  3285. "type": "zip",
  3286. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3287. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3288. "shasum": ""
  3289. },
  3290. "require": {
  3291. "php": ">=8.1",
  3292. "psr/cache": "^3.0"
  3293. },
  3294. "type": "library",
  3295. "extra": {
  3296. "branch-alias": {
  3297. "dev-main": "3.5-dev"
  3298. },
  3299. "thanks": {
  3300. "name": "symfony/contracts",
  3301. "url": "https://github.com/symfony/contracts"
  3302. }
  3303. },
  3304. "autoload": {
  3305. "psr-4": {
  3306. "Symfony\\Contracts\\Cache\\": ""
  3307. }
  3308. },
  3309. "notification-url": "https://packagist.org/downloads/",
  3310. "license": [
  3311. "MIT"
  3312. ],
  3313. "authors": [
  3314. {
  3315. "name": "Nicolas Grekas",
  3316. "email": "p@tchwork.com"
  3317. },
  3318. {
  3319. "name": "Symfony Community",
  3320. "homepage": "https://symfony.com/contributors"
  3321. }
  3322. ],
  3323. "description": "Generic abstractions related to caching",
  3324. "homepage": "https://symfony.com",
  3325. "keywords": [
  3326. "abstractions",
  3327. "contracts",
  3328. "decoupling",
  3329. "interfaces",
  3330. "interoperability",
  3331. "standards"
  3332. ],
  3333. "support": {
  3334. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  3335. },
  3336. "funding": [
  3337. {
  3338. "url": "https://symfony.com/sponsor",
  3339. "type": "custom"
  3340. },
  3341. {
  3342. "url": "https://github.com/fabpot",
  3343. "type": "github"
  3344. },
  3345. {
  3346. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3347. "type": "tidelift"
  3348. }
  3349. ],
  3350. "time": "2024-04-18T09:32:20+00:00"
  3351. },
  3352. {
  3353. "name": "symfony/clock",
  3354. "version": "v6.4.8",
  3355. "source": {
  3356. "type": "git",
  3357. "url": "https://github.com/symfony/clock.git",
  3358. "reference": "7a4840efd17135cbd547e41ec49fb910ed4f8b98"
  3359. },
  3360. "dist": {
  3361. "type": "zip",
  3362. "url": "https://api.github.com/repos/symfony/clock/zipball/7a4840efd17135cbd547e41ec49fb910ed4f8b98",
  3363. "reference": "7a4840efd17135cbd547e41ec49fb910ed4f8b98",
  3364. "shasum": ""
  3365. },
  3366. "require": {
  3367. "php": ">=8.1",
  3368. "psr/clock": "^1.0",
  3369. "symfony/polyfill-php83": "^1.28"
  3370. },
  3371. "provide": {
  3372. "psr/clock-implementation": "1.0"
  3373. },
  3374. "type": "library",
  3375. "autoload": {
  3376. "files": [
  3377. "Resources/now.php"
  3378. ],
  3379. "psr-4": {
  3380. "Symfony\\Component\\Clock\\": ""
  3381. },
  3382. "exclude-from-classmap": [
  3383. "/Tests/"
  3384. ]
  3385. },
  3386. "notification-url": "https://packagist.org/downloads/",
  3387. "license": [
  3388. "MIT"
  3389. ],
  3390. "authors": [
  3391. {
  3392. "name": "Nicolas Grekas",
  3393. "email": "p@tchwork.com"
  3394. },
  3395. {
  3396. "name": "Symfony Community",
  3397. "homepage": "https://symfony.com/contributors"
  3398. }
  3399. ],
  3400. "description": "Decouples applications from the system clock",
  3401. "homepage": "https://symfony.com",
  3402. "keywords": [
  3403. "clock",
  3404. "psr20",
  3405. "time"
  3406. ],
  3407. "support": {
  3408. "source": "https://github.com/symfony/clock/tree/v6.4.8"
  3409. },
  3410. "funding": [
  3411. {
  3412. "url": "https://symfony.com/sponsor",
  3413. "type": "custom"
  3414. },
  3415. {
  3416. "url": "https://github.com/fabpot",
  3417. "type": "github"
  3418. },
  3419. {
  3420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3421. "type": "tidelift"
  3422. }
  3423. ],
  3424. "time": "2024-05-31T14:51:39+00:00"
  3425. },
  3426. {
  3427. "name": "symfony/config",
  3428. "version": "v6.4.8",
  3429. "source": {
  3430. "type": "git",
  3431. "url": "https://github.com/symfony/config.git",
  3432. "reference": "12e7e52515ce37191b193cf3365903c4f3951e35"
  3433. },
  3434. "dist": {
  3435. "type": "zip",
  3436. "url": "https://api.github.com/repos/symfony/config/zipball/12e7e52515ce37191b193cf3365903c4f3951e35",
  3437. "reference": "12e7e52515ce37191b193cf3365903c4f3951e35",
  3438. "shasum": ""
  3439. },
  3440. "require": {
  3441. "php": ">=8.1",
  3442. "symfony/deprecation-contracts": "^2.5|^3",
  3443. "symfony/filesystem": "^5.4|^6.0|^7.0",
  3444. "symfony/polyfill-ctype": "~1.8"
  3445. },
  3446. "conflict": {
  3447. "symfony/finder": "<5.4",
  3448. "symfony/service-contracts": "<2.5"
  3449. },
  3450. "require-dev": {
  3451. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3452. "symfony/finder": "^5.4|^6.0|^7.0",
  3453. "symfony/messenger": "^5.4|^6.0|^7.0",
  3454. "symfony/service-contracts": "^2.5|^3",
  3455. "symfony/yaml": "^5.4|^6.0|^7.0"
  3456. },
  3457. "type": "library",
  3458. "autoload": {
  3459. "psr-4": {
  3460. "Symfony\\Component\\Config\\": ""
  3461. },
  3462. "exclude-from-classmap": [
  3463. "/Tests/"
  3464. ]
  3465. },
  3466. "notification-url": "https://packagist.org/downloads/",
  3467. "license": [
  3468. "MIT"
  3469. ],
  3470. "authors": [
  3471. {
  3472. "name": "Fabien Potencier",
  3473. "email": "fabien@symfony.com"
  3474. },
  3475. {
  3476. "name": "Symfony Community",
  3477. "homepage": "https://symfony.com/contributors"
  3478. }
  3479. ],
  3480. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3481. "homepage": "https://symfony.com",
  3482. "support": {
  3483. "source": "https://github.com/symfony/config/tree/v6.4.8"
  3484. },
  3485. "funding": [
  3486. {
  3487. "url": "https://symfony.com/sponsor",
  3488. "type": "custom"
  3489. },
  3490. {
  3491. "url": "https://github.com/fabpot",
  3492. "type": "github"
  3493. },
  3494. {
  3495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3496. "type": "tidelift"
  3497. }
  3498. ],
  3499. "time": "2024-05-31T14:49:08+00:00"
  3500. },
  3501. {
  3502. "name": "symfony/console",
  3503. "version": "v6.4.10",
  3504. "source": {
  3505. "type": "git",
  3506. "url": "https://github.com/symfony/console.git",
  3507. "reference": "504974cbe43d05f83b201d6498c206f16fc0cdbc"
  3508. },
  3509. "dist": {
  3510. "type": "zip",
  3511. "url": "https://api.github.com/repos/symfony/console/zipball/504974cbe43d05f83b201d6498c206f16fc0cdbc",
  3512. "reference": "504974cbe43d05f83b201d6498c206f16fc0cdbc",
  3513. "shasum": ""
  3514. },
  3515. "require": {
  3516. "php": ">=8.1",
  3517. "symfony/deprecation-contracts": "^2.5|^3",
  3518. "symfony/polyfill-mbstring": "~1.0",
  3519. "symfony/service-contracts": "^2.5|^3",
  3520. "symfony/string": "^5.4|^6.0|^7.0"
  3521. },
  3522. "conflict": {
  3523. "symfony/dependency-injection": "<5.4",
  3524. "symfony/dotenv": "<5.4",
  3525. "symfony/event-dispatcher": "<5.4",
  3526. "symfony/lock": "<5.4",
  3527. "symfony/process": "<5.4"
  3528. },
  3529. "provide": {
  3530. "psr/log-implementation": "1.0|2.0|3.0"
  3531. },
  3532. "require-dev": {
  3533. "psr/log": "^1|^2|^3",
  3534. "symfony/config": "^5.4|^6.0|^7.0",
  3535. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3536. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3537. "symfony/http-foundation": "^6.4|^7.0",
  3538. "symfony/http-kernel": "^6.4|^7.0",
  3539. "symfony/lock": "^5.4|^6.0|^7.0",
  3540. "symfony/messenger": "^5.4|^6.0|^7.0",
  3541. "symfony/process": "^5.4|^6.0|^7.0",
  3542. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  3543. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3544. },
  3545. "type": "library",
  3546. "autoload": {
  3547. "psr-4": {
  3548. "Symfony\\Component\\Console\\": ""
  3549. },
  3550. "exclude-from-classmap": [
  3551. "/Tests/"
  3552. ]
  3553. },
  3554. "notification-url": "https://packagist.org/downloads/",
  3555. "license": [
  3556. "MIT"
  3557. ],
  3558. "authors": [
  3559. {
  3560. "name": "Fabien Potencier",
  3561. "email": "fabien@symfony.com"
  3562. },
  3563. {
  3564. "name": "Symfony Community",
  3565. "homepage": "https://symfony.com/contributors"
  3566. }
  3567. ],
  3568. "description": "Eases the creation of beautiful and testable command line interfaces",
  3569. "homepage": "https://symfony.com",
  3570. "keywords": [
  3571. "cli",
  3572. "command-line",
  3573. "console",
  3574. "terminal"
  3575. ],
  3576. "support": {
  3577. "source": "https://github.com/symfony/console/tree/v6.4.10"
  3578. },
  3579. "funding": [
  3580. {
  3581. "url": "https://symfony.com/sponsor",
  3582. "type": "custom"
  3583. },
  3584. {
  3585. "url": "https://github.com/fabpot",
  3586. "type": "github"
  3587. },
  3588. {
  3589. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3590. "type": "tidelift"
  3591. }
  3592. ],
  3593. "time": "2024-07-26T12:30:32+00:00"
  3594. },
  3595. {
  3596. "name": "symfony/dependency-injection",
  3597. "version": "v6.4.10",
  3598. "source": {
  3599. "type": "git",
  3600. "url": "https://github.com/symfony/dependency-injection.git",
  3601. "reference": "5caf9c5f6085f13b27d70a236b776c07e4a1c3eb"
  3602. },
  3603. "dist": {
  3604. "type": "zip",
  3605. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/5caf9c5f6085f13b27d70a236b776c07e4a1c3eb",
  3606. "reference": "5caf9c5f6085f13b27d70a236b776c07e4a1c3eb",
  3607. "shasum": ""
  3608. },
  3609. "require": {
  3610. "php": ">=8.1",
  3611. "psr/container": "^1.1|^2.0",
  3612. "symfony/deprecation-contracts": "^2.5|^3",
  3613. "symfony/service-contracts": "^2.5|^3.0",
  3614. "symfony/var-exporter": "^6.2.10|^7.0"
  3615. },
  3616. "conflict": {
  3617. "ext-psr": "<1.1|>=2",
  3618. "symfony/config": "<6.1",
  3619. "symfony/finder": "<5.4",
  3620. "symfony/proxy-manager-bridge": "<6.3",
  3621. "symfony/yaml": "<5.4"
  3622. },
  3623. "provide": {
  3624. "psr/container-implementation": "1.1|2.0",
  3625. "symfony/service-implementation": "1.1|2.0|3.0"
  3626. },
  3627. "require-dev": {
  3628. "symfony/config": "^6.1|^7.0",
  3629. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3630. "symfony/yaml": "^5.4|^6.0|^7.0"
  3631. },
  3632. "type": "library",
  3633. "autoload": {
  3634. "psr-4": {
  3635. "Symfony\\Component\\DependencyInjection\\": ""
  3636. },
  3637. "exclude-from-classmap": [
  3638. "/Tests/"
  3639. ]
  3640. },
  3641. "notification-url": "https://packagist.org/downloads/",
  3642. "license": [
  3643. "MIT"
  3644. ],
  3645. "authors": [
  3646. {
  3647. "name": "Fabien Potencier",
  3648. "email": "fabien@symfony.com"
  3649. },
  3650. {
  3651. "name": "Symfony Community",
  3652. "homepage": "https://symfony.com/contributors"
  3653. }
  3654. ],
  3655. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3656. "homepage": "https://symfony.com",
  3657. "support": {
  3658. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.10"
  3659. },
  3660. "funding": [
  3661. {
  3662. "url": "https://symfony.com/sponsor",
  3663. "type": "custom"
  3664. },
  3665. {
  3666. "url": "https://github.com/fabpot",
  3667. "type": "github"
  3668. },
  3669. {
  3670. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3671. "type": "tidelift"
  3672. }
  3673. ],
  3674. "time": "2024-07-26T07:32:07+00:00"
  3675. },
  3676. {
  3677. "name": "symfony/deprecation-contracts",
  3678. "version": "v3.5.0",
  3679. "source": {
  3680. "type": "git",
  3681. "url": "https://github.com/symfony/deprecation-contracts.git",
  3682. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  3683. },
  3684. "dist": {
  3685. "type": "zip",
  3686. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3687. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3688. "shasum": ""
  3689. },
  3690. "require": {
  3691. "php": ">=8.1"
  3692. },
  3693. "type": "library",
  3694. "extra": {
  3695. "branch-alias": {
  3696. "dev-main": "3.5-dev"
  3697. },
  3698. "thanks": {
  3699. "name": "symfony/contracts",
  3700. "url": "https://github.com/symfony/contracts"
  3701. }
  3702. },
  3703. "autoload": {
  3704. "files": [
  3705. "function.php"
  3706. ]
  3707. },
  3708. "notification-url": "https://packagist.org/downloads/",
  3709. "license": [
  3710. "MIT"
  3711. ],
  3712. "authors": [
  3713. {
  3714. "name": "Nicolas Grekas",
  3715. "email": "p@tchwork.com"
  3716. },
  3717. {
  3718. "name": "Symfony Community",
  3719. "homepage": "https://symfony.com/contributors"
  3720. }
  3721. ],
  3722. "description": "A generic function and convention to trigger deprecation notices",
  3723. "homepage": "https://symfony.com",
  3724. "support": {
  3725. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  3726. },
  3727. "funding": [
  3728. {
  3729. "url": "https://symfony.com/sponsor",
  3730. "type": "custom"
  3731. },
  3732. {
  3733. "url": "https://github.com/fabpot",
  3734. "type": "github"
  3735. },
  3736. {
  3737. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3738. "type": "tidelift"
  3739. }
  3740. ],
  3741. "time": "2024-04-18T09:32:20+00:00"
  3742. },
  3743. {
  3744. "name": "symfony/doctrine-bridge",
  3745. "version": "v6.4.10",
  3746. "source": {
  3747. "type": "git",
  3748. "url": "https://github.com/symfony/doctrine-bridge.git",
  3749. "reference": "0de9662441bce4670506d0c371cc819a9d0a7607"
  3750. },
  3751. "dist": {
  3752. "type": "zip",
  3753. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/0de9662441bce4670506d0c371cc819a9d0a7607",
  3754. "reference": "0de9662441bce4670506d0c371cc819a9d0a7607",
  3755. "shasum": ""
  3756. },
  3757. "require": {
  3758. "doctrine/event-manager": "^1.2|^2",
  3759. "doctrine/persistence": "^3.1",
  3760. "php": ">=8.1",
  3761. "symfony/deprecation-contracts": "^2.5|^3",
  3762. "symfony/polyfill-ctype": "~1.8",
  3763. "symfony/polyfill-mbstring": "~1.0",
  3764. "symfony/service-contracts": "^2.5|^3"
  3765. },
  3766. "conflict": {
  3767. "doctrine/dbal": "<2.13.1",
  3768. "doctrine/lexer": "<1.1",
  3769. "doctrine/orm": "<2.15",
  3770. "symfony/cache": "<5.4",
  3771. "symfony/dependency-injection": "<6.2",
  3772. "symfony/form": "<5.4.38|>=6,<6.4.6|>=7,<7.0.6",
  3773. "symfony/http-foundation": "<6.3",
  3774. "symfony/http-kernel": "<6.2",
  3775. "symfony/lock": "<6.3",
  3776. "symfony/messenger": "<5.4",
  3777. "symfony/property-info": "<5.4",
  3778. "symfony/security-bundle": "<5.4",
  3779. "symfony/security-core": "<6.4",
  3780. "symfony/validator": "<6.4"
  3781. },
  3782. "require-dev": {
  3783. "doctrine/collections": "^1.0|^2.0",
  3784. "doctrine/data-fixtures": "^1.1",
  3785. "doctrine/dbal": "^2.13.1|^3|^4",
  3786. "doctrine/orm": "^2.15|^3",
  3787. "psr/log": "^1|^2|^3",
  3788. "symfony/cache": "^5.4|^6.0|^7.0",
  3789. "symfony/config": "^5.4|^6.0|^7.0",
  3790. "symfony/dependency-injection": "^6.2|^7.0",
  3791. "symfony/doctrine-messenger": "^5.4|^6.0|^7.0",
  3792. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3793. "symfony/form": "^5.4.38|^6.4.6|^7.0.6",
  3794. "symfony/http-kernel": "^6.3|^7.0",
  3795. "symfony/lock": "^6.3|^7.0",
  3796. "symfony/messenger": "^5.4|^6.0|^7.0",
  3797. "symfony/property-access": "^5.4|^6.0|^7.0",
  3798. "symfony/property-info": "^5.4|^6.0|^7.0",
  3799. "symfony/proxy-manager-bridge": "^6.4",
  3800. "symfony/security-core": "^6.4|^7.0",
  3801. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  3802. "symfony/translation": "^5.4|^6.0|^7.0",
  3803. "symfony/uid": "^5.4|^6.0|^7.0",
  3804. "symfony/validator": "^6.4|^7.0",
  3805. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3806. },
  3807. "type": "symfony-bridge",
  3808. "autoload": {
  3809. "psr-4": {
  3810. "Symfony\\Bridge\\Doctrine\\": ""
  3811. },
  3812. "exclude-from-classmap": [
  3813. "/Tests/"
  3814. ]
  3815. },
  3816. "notification-url": "https://packagist.org/downloads/",
  3817. "license": [
  3818. "MIT"
  3819. ],
  3820. "authors": [
  3821. {
  3822. "name": "Fabien Potencier",
  3823. "email": "fabien@symfony.com"
  3824. },
  3825. {
  3826. "name": "Symfony Community",
  3827. "homepage": "https://symfony.com/contributors"
  3828. }
  3829. ],
  3830. "description": "Provides integration for Doctrine with various Symfony components",
  3831. "homepage": "https://symfony.com",
  3832. "support": {
  3833. "source": "https://github.com/symfony/doctrine-bridge/tree/v6.4.10"
  3834. },
  3835. "funding": [
  3836. {
  3837. "url": "https://symfony.com/sponsor",
  3838. "type": "custom"
  3839. },
  3840. {
  3841. "url": "https://github.com/fabpot",
  3842. "type": "github"
  3843. },
  3844. {
  3845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3846. "type": "tidelift"
  3847. }
  3848. ],
  3849. "time": "2024-07-26T12:30:32+00:00"
  3850. },
  3851. {
  3852. "name": "symfony/dotenv",
  3853. "version": "v6.4.10",
  3854. "source": {
  3855. "type": "git",
  3856. "url": "https://github.com/symfony/dotenv.git",
  3857. "reference": "2ae0c84cc9be0dc1eeb86016970b63c764d8472e"
  3858. },
  3859. "dist": {
  3860. "type": "zip",
  3861. "url": "https://api.github.com/repos/symfony/dotenv/zipball/2ae0c84cc9be0dc1eeb86016970b63c764d8472e",
  3862. "reference": "2ae0c84cc9be0dc1eeb86016970b63c764d8472e",
  3863. "shasum": ""
  3864. },
  3865. "require": {
  3866. "php": ">=8.1"
  3867. },
  3868. "conflict": {
  3869. "symfony/console": "<5.4",
  3870. "symfony/process": "<5.4"
  3871. },
  3872. "require-dev": {
  3873. "symfony/console": "^5.4|^6.0|^7.0",
  3874. "symfony/process": "^5.4|^6.0|^7.0"
  3875. },
  3876. "type": "library",
  3877. "autoload": {
  3878. "psr-4": {
  3879. "Symfony\\Component\\Dotenv\\": ""
  3880. },
  3881. "exclude-from-classmap": [
  3882. "/Tests/"
  3883. ]
  3884. },
  3885. "notification-url": "https://packagist.org/downloads/",
  3886. "license": [
  3887. "MIT"
  3888. ],
  3889. "authors": [
  3890. {
  3891. "name": "Fabien Potencier",
  3892. "email": "fabien@symfony.com"
  3893. },
  3894. {
  3895. "name": "Symfony Community",
  3896. "homepage": "https://symfony.com/contributors"
  3897. }
  3898. ],
  3899. "description": "Registers environment variables from a .env file",
  3900. "homepage": "https://symfony.com",
  3901. "keywords": [
  3902. "dotenv",
  3903. "env",
  3904. "environment"
  3905. ],
  3906. "support": {
  3907. "source": "https://github.com/symfony/dotenv/tree/v6.4.10"
  3908. },
  3909. "funding": [
  3910. {
  3911. "url": "https://symfony.com/sponsor",
  3912. "type": "custom"
  3913. },
  3914. {
  3915. "url": "https://github.com/fabpot",
  3916. "type": "github"
  3917. },
  3918. {
  3919. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3920. "type": "tidelift"
  3921. }
  3922. ],
  3923. "time": "2024-07-09T18:29:35+00:00"
  3924. },
  3925. {
  3926. "name": "symfony/error-handler",
  3927. "version": "v6.4.10",
  3928. "source": {
  3929. "type": "git",
  3930. "url": "https://github.com/symfony/error-handler.git",
  3931. "reference": "231f1b2ee80f72daa1972f7340297d67439224f0"
  3932. },
  3933. "dist": {
  3934. "type": "zip",
  3935. "url": "https://api.github.com/repos/symfony/error-handler/zipball/231f1b2ee80f72daa1972f7340297d67439224f0",
  3936. "reference": "231f1b2ee80f72daa1972f7340297d67439224f0",
  3937. "shasum": ""
  3938. },
  3939. "require": {
  3940. "php": ">=8.1",
  3941. "psr/log": "^1|^2|^3",
  3942. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3943. },
  3944. "conflict": {
  3945. "symfony/deprecation-contracts": "<2.5",
  3946. "symfony/http-kernel": "<6.4"
  3947. },
  3948. "require-dev": {
  3949. "symfony/deprecation-contracts": "^2.5|^3",
  3950. "symfony/http-kernel": "^6.4|^7.0",
  3951. "symfony/serializer": "^5.4|^6.0|^7.0"
  3952. },
  3953. "bin": [
  3954. "Resources/bin/patch-type-declarations"
  3955. ],
  3956. "type": "library",
  3957. "autoload": {
  3958. "psr-4": {
  3959. "Symfony\\Component\\ErrorHandler\\": ""
  3960. },
  3961. "exclude-from-classmap": [
  3962. "/Tests/"
  3963. ]
  3964. },
  3965. "notification-url": "https://packagist.org/downloads/",
  3966. "license": [
  3967. "MIT"
  3968. ],
  3969. "authors": [
  3970. {
  3971. "name": "Fabien Potencier",
  3972. "email": "fabien@symfony.com"
  3973. },
  3974. {
  3975. "name": "Symfony Community",
  3976. "homepage": "https://symfony.com/contributors"
  3977. }
  3978. ],
  3979. "description": "Provides tools to manage errors and ease debugging PHP code",
  3980. "homepage": "https://symfony.com",
  3981. "support": {
  3982. "source": "https://github.com/symfony/error-handler/tree/v6.4.10"
  3983. },
  3984. "funding": [
  3985. {
  3986. "url": "https://symfony.com/sponsor",
  3987. "type": "custom"
  3988. },
  3989. {
  3990. "url": "https://github.com/fabpot",
  3991. "type": "github"
  3992. },
  3993. {
  3994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3995. "type": "tidelift"
  3996. }
  3997. ],
  3998. "time": "2024-07-26T12:30:32+00:00"
  3999. },
  4000. {
  4001. "name": "symfony/event-dispatcher",
  4002. "version": "v6.4.8",
  4003. "source": {
  4004. "type": "git",
  4005. "url": "https://github.com/symfony/event-dispatcher.git",
  4006. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  4007. },
  4008. "dist": {
  4009. "type": "zip",
  4010. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  4011. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  4012. "shasum": ""
  4013. },
  4014. "require": {
  4015. "php": ">=8.1",
  4016. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4017. },
  4018. "conflict": {
  4019. "symfony/dependency-injection": "<5.4",
  4020. "symfony/service-contracts": "<2.5"
  4021. },
  4022. "provide": {
  4023. "psr/event-dispatcher-implementation": "1.0",
  4024. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4025. },
  4026. "require-dev": {
  4027. "psr/log": "^1|^2|^3",
  4028. "symfony/config": "^5.4|^6.0|^7.0",
  4029. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4030. "symfony/error-handler": "^5.4|^6.0|^7.0",
  4031. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4032. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  4033. "symfony/service-contracts": "^2.5|^3",
  4034. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  4035. },
  4036. "type": "library",
  4037. "autoload": {
  4038. "psr-4": {
  4039. "Symfony\\Component\\EventDispatcher\\": ""
  4040. },
  4041. "exclude-from-classmap": [
  4042. "/Tests/"
  4043. ]
  4044. },
  4045. "notification-url": "https://packagist.org/downloads/",
  4046. "license": [
  4047. "MIT"
  4048. ],
  4049. "authors": [
  4050. {
  4051. "name": "Fabien Potencier",
  4052. "email": "fabien@symfony.com"
  4053. },
  4054. {
  4055. "name": "Symfony Community",
  4056. "homepage": "https://symfony.com/contributors"
  4057. }
  4058. ],
  4059. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4060. "homepage": "https://symfony.com",
  4061. "support": {
  4062. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  4063. },
  4064. "funding": [
  4065. {
  4066. "url": "https://symfony.com/sponsor",
  4067. "type": "custom"
  4068. },
  4069. {
  4070. "url": "https://github.com/fabpot",
  4071. "type": "github"
  4072. },
  4073. {
  4074. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4075. "type": "tidelift"
  4076. }
  4077. ],
  4078. "time": "2024-05-31T14:49:08+00:00"
  4079. },
  4080. {
  4081. "name": "symfony/event-dispatcher-contracts",
  4082. "version": "v3.5.0",
  4083. "source": {
  4084. "type": "git",
  4085. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4086. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  4087. },
  4088. "dist": {
  4089. "type": "zip",
  4090. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  4091. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  4092. "shasum": ""
  4093. },
  4094. "require": {
  4095. "php": ">=8.1",
  4096. "psr/event-dispatcher": "^1"
  4097. },
  4098. "type": "library",
  4099. "extra": {
  4100. "branch-alias": {
  4101. "dev-main": "3.5-dev"
  4102. },
  4103. "thanks": {
  4104. "name": "symfony/contracts",
  4105. "url": "https://github.com/symfony/contracts"
  4106. }
  4107. },
  4108. "autoload": {
  4109. "psr-4": {
  4110. "Symfony\\Contracts\\EventDispatcher\\": ""
  4111. }
  4112. },
  4113. "notification-url": "https://packagist.org/downloads/",
  4114. "license": [
  4115. "MIT"
  4116. ],
  4117. "authors": [
  4118. {
  4119. "name": "Nicolas Grekas",
  4120. "email": "p@tchwork.com"
  4121. },
  4122. {
  4123. "name": "Symfony Community",
  4124. "homepage": "https://symfony.com/contributors"
  4125. }
  4126. ],
  4127. "description": "Generic abstractions related to dispatching event",
  4128. "homepage": "https://symfony.com",
  4129. "keywords": [
  4130. "abstractions",
  4131. "contracts",
  4132. "decoupling",
  4133. "interfaces",
  4134. "interoperability",
  4135. "standards"
  4136. ],
  4137. "support": {
  4138. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  4139. },
  4140. "funding": [
  4141. {
  4142. "url": "https://symfony.com/sponsor",
  4143. "type": "custom"
  4144. },
  4145. {
  4146. "url": "https://github.com/fabpot",
  4147. "type": "github"
  4148. },
  4149. {
  4150. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4151. "type": "tidelift"
  4152. }
  4153. ],
  4154. "time": "2024-04-18T09:32:20+00:00"
  4155. },
  4156. {
  4157. "name": "symfony/expression-language",
  4158. "version": "v6.4.8",
  4159. "source": {
  4160. "type": "git",
  4161. "url": "https://github.com/symfony/expression-language.git",
  4162. "reference": "0b63cb437741a42104d3ccc9bf60bbd8e1acbd2a"
  4163. },
  4164. "dist": {
  4165. "type": "zip",
  4166. "url": "https://api.github.com/repos/symfony/expression-language/zipball/0b63cb437741a42104d3ccc9bf60bbd8e1acbd2a",
  4167. "reference": "0b63cb437741a42104d3ccc9bf60bbd8e1acbd2a",
  4168. "shasum": ""
  4169. },
  4170. "require": {
  4171. "php": ">=8.1",
  4172. "symfony/cache": "^5.4|^6.0|^7.0",
  4173. "symfony/deprecation-contracts": "^2.5|^3",
  4174. "symfony/service-contracts": "^2.5|^3"
  4175. },
  4176. "type": "library",
  4177. "autoload": {
  4178. "psr-4": {
  4179. "Symfony\\Component\\ExpressionLanguage\\": ""
  4180. },
  4181. "exclude-from-classmap": [
  4182. "/Tests/"
  4183. ]
  4184. },
  4185. "notification-url": "https://packagist.org/downloads/",
  4186. "license": [
  4187. "MIT"
  4188. ],
  4189. "authors": [
  4190. {
  4191. "name": "Fabien Potencier",
  4192. "email": "fabien@symfony.com"
  4193. },
  4194. {
  4195. "name": "Symfony Community",
  4196. "homepage": "https://symfony.com/contributors"
  4197. }
  4198. ],
  4199. "description": "Provides an engine that can compile and evaluate expressions",
  4200. "homepage": "https://symfony.com",
  4201. "support": {
  4202. "source": "https://github.com/symfony/expression-language/tree/v6.4.8"
  4203. },
  4204. "funding": [
  4205. {
  4206. "url": "https://symfony.com/sponsor",
  4207. "type": "custom"
  4208. },
  4209. {
  4210. "url": "https://github.com/fabpot",
  4211. "type": "github"
  4212. },
  4213. {
  4214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4215. "type": "tidelift"
  4216. }
  4217. ],
  4218. "time": "2024-05-31T14:49:08+00:00"
  4219. },
  4220. {
  4221. "name": "symfony/filesystem",
  4222. "version": "v6.4.9",
  4223. "source": {
  4224. "type": "git",
  4225. "url": "https://github.com/symfony/filesystem.git",
  4226. "reference": "b51ef8059159330b74a4d52f68e671033c0fe463"
  4227. },
  4228. "dist": {
  4229. "type": "zip",
  4230. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b51ef8059159330b74a4d52f68e671033c0fe463",
  4231. "reference": "b51ef8059159330b74a4d52f68e671033c0fe463",
  4232. "shasum": ""
  4233. },
  4234. "require": {
  4235. "php": ">=8.1",
  4236. "symfony/polyfill-ctype": "~1.8",
  4237. "symfony/polyfill-mbstring": "~1.8"
  4238. },
  4239. "require-dev": {
  4240. "symfony/process": "^5.4|^6.4|^7.0"
  4241. },
  4242. "type": "library",
  4243. "autoload": {
  4244. "psr-4": {
  4245. "Symfony\\Component\\Filesystem\\": ""
  4246. },
  4247. "exclude-from-classmap": [
  4248. "/Tests/"
  4249. ]
  4250. },
  4251. "notification-url": "https://packagist.org/downloads/",
  4252. "license": [
  4253. "MIT"
  4254. ],
  4255. "authors": [
  4256. {
  4257. "name": "Fabien Potencier",
  4258. "email": "fabien@symfony.com"
  4259. },
  4260. {
  4261. "name": "Symfony Community",
  4262. "homepage": "https://symfony.com/contributors"
  4263. }
  4264. ],
  4265. "description": "Provides basic utilities for the filesystem",
  4266. "homepage": "https://symfony.com",
  4267. "support": {
  4268. "source": "https://github.com/symfony/filesystem/tree/v6.4.9"
  4269. },
  4270. "funding": [
  4271. {
  4272. "url": "https://symfony.com/sponsor",
  4273. "type": "custom"
  4274. },
  4275. {
  4276. "url": "https://github.com/fabpot",
  4277. "type": "github"
  4278. },
  4279. {
  4280. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4281. "type": "tidelift"
  4282. }
  4283. ],
  4284. "time": "2024-06-28T09:49:33+00:00"
  4285. },
  4286. {
  4287. "name": "symfony/finder",
  4288. "version": "v6.4.10",
  4289. "source": {
  4290. "type": "git",
  4291. "url": "https://github.com/symfony/finder.git",
  4292. "reference": "af29198d87112bebdd397bd7735fbd115997824c"
  4293. },
  4294. "dist": {
  4295. "type": "zip",
  4296. "url": "https://api.github.com/repos/symfony/finder/zipball/af29198d87112bebdd397bd7735fbd115997824c",
  4297. "reference": "af29198d87112bebdd397bd7735fbd115997824c",
  4298. "shasum": ""
  4299. },
  4300. "require": {
  4301. "php": ">=8.1"
  4302. },
  4303. "require-dev": {
  4304. "symfony/filesystem": "^6.0|^7.0"
  4305. },
  4306. "type": "library",
  4307. "autoload": {
  4308. "psr-4": {
  4309. "Symfony\\Component\\Finder\\": ""
  4310. },
  4311. "exclude-from-classmap": [
  4312. "/Tests/"
  4313. ]
  4314. },
  4315. "notification-url": "https://packagist.org/downloads/",
  4316. "license": [
  4317. "MIT"
  4318. ],
  4319. "authors": [
  4320. {
  4321. "name": "Fabien Potencier",
  4322. "email": "fabien@symfony.com"
  4323. },
  4324. {
  4325. "name": "Symfony Community",
  4326. "homepage": "https://symfony.com/contributors"
  4327. }
  4328. ],
  4329. "description": "Finds files and directories via an intuitive fluent interface",
  4330. "homepage": "https://symfony.com",
  4331. "support": {
  4332. "source": "https://github.com/symfony/finder/tree/v6.4.10"
  4333. },
  4334. "funding": [
  4335. {
  4336. "url": "https://symfony.com/sponsor",
  4337. "type": "custom"
  4338. },
  4339. {
  4340. "url": "https://github.com/fabpot",
  4341. "type": "github"
  4342. },
  4343. {
  4344. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4345. "type": "tidelift"
  4346. }
  4347. ],
  4348. "time": "2024-07-24T07:06:38+00:00"
  4349. },
  4350. {
  4351. "name": "symfony/flex",
  4352. "version": "v2.4.6",
  4353. "source": {
  4354. "type": "git",
  4355. "url": "https://github.com/symfony/flex.git",
  4356. "reference": "4dc11919791f81d087a12db2ab4c7e044431ef6b"
  4357. },
  4358. "dist": {
  4359. "type": "zip",
  4360. "url": "https://api.github.com/repos/symfony/flex/zipball/4dc11919791f81d087a12db2ab4c7e044431ef6b",
  4361. "reference": "4dc11919791f81d087a12db2ab4c7e044431ef6b",
  4362. "shasum": ""
  4363. },
  4364. "require": {
  4365. "composer-plugin-api": "^2.1",
  4366. "php": ">=8.0"
  4367. },
  4368. "require-dev": {
  4369. "composer/composer": "^2.1",
  4370. "symfony/dotenv": "^5.4|^6.0",
  4371. "symfony/filesystem": "^5.4|^6.0",
  4372. "symfony/phpunit-bridge": "^5.4|^6.0",
  4373. "symfony/process": "^5.4|^6.0"
  4374. },
  4375. "type": "composer-plugin",
  4376. "extra": {
  4377. "class": "Symfony\\Flex\\Flex"
  4378. },
  4379. "autoload": {
  4380. "psr-4": {
  4381. "Symfony\\Flex\\": "src"
  4382. }
  4383. },
  4384. "notification-url": "https://packagist.org/downloads/",
  4385. "license": [
  4386. "MIT"
  4387. ],
  4388. "authors": [
  4389. {
  4390. "name": "Fabien Potencier",
  4391. "email": "fabien.potencier@gmail.com"
  4392. }
  4393. ],
  4394. "description": "Composer plugin for Symfony",
  4395. "support": {
  4396. "issues": "https://github.com/symfony/flex/issues",
  4397. "source": "https://github.com/symfony/flex/tree/v2.4.6"
  4398. },
  4399. "funding": [
  4400. {
  4401. "url": "https://symfony.com/sponsor",
  4402. "type": "custom"
  4403. },
  4404. {
  4405. "url": "https://github.com/fabpot",
  4406. "type": "github"
  4407. },
  4408. {
  4409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4410. "type": "tidelift"
  4411. }
  4412. ],
  4413. "time": "2024-04-27T10:22:22+00:00"
  4414. },
  4415. {
  4416. "name": "symfony/form",
  4417. "version": "v6.4.10",
  4418. "source": {
  4419. "type": "git",
  4420. "url": "https://github.com/symfony/form.git",
  4421. "reference": "67dd6a3fd986cae9a90a8c2c526464c06f525863"
  4422. },
  4423. "dist": {
  4424. "type": "zip",
  4425. "url": "https://api.github.com/repos/symfony/form/zipball/67dd6a3fd986cae9a90a8c2c526464c06f525863",
  4426. "reference": "67dd6a3fd986cae9a90a8c2c526464c06f525863",
  4427. "shasum": ""
  4428. },
  4429. "require": {
  4430. "php": ">=8.1",
  4431. "symfony/deprecation-contracts": "^2.5|^3",
  4432. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4433. "symfony/options-resolver": "^5.4|^6.0|^7.0",
  4434. "symfony/polyfill-ctype": "~1.8",
  4435. "symfony/polyfill-intl-icu": "^1.21",
  4436. "symfony/polyfill-mbstring": "~1.0",
  4437. "symfony/property-access": "^5.4|^6.0|^7.0",
  4438. "symfony/service-contracts": "^2.5|^3"
  4439. },
  4440. "conflict": {
  4441. "symfony/console": "<5.4",
  4442. "symfony/dependency-injection": "<5.4",
  4443. "symfony/doctrine-bridge": "<5.4.21|>=6,<6.2.7",
  4444. "symfony/error-handler": "<5.4",
  4445. "symfony/framework-bundle": "<5.4",
  4446. "symfony/http-kernel": "<5.4",
  4447. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  4448. "symfony/translation-contracts": "<2.5",
  4449. "symfony/twig-bridge": "<6.3"
  4450. },
  4451. "require-dev": {
  4452. "doctrine/collections": "^1.0|^2.0",
  4453. "symfony/config": "^5.4|^6.0|^7.0",
  4454. "symfony/console": "^5.4|^6.0|^7.0",
  4455. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4456. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4457. "symfony/html-sanitizer": "^6.1|^7.0",
  4458. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  4459. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  4460. "symfony/intl": "^5.4|^6.0|^7.0",
  4461. "symfony/security-core": "^6.2|^7.0",
  4462. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  4463. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  4464. "symfony/uid": "^5.4|^6.0|^7.0",
  4465. "symfony/validator": "^5.4|^6.0|^7.0",
  4466. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  4467. },
  4468. "type": "library",
  4469. "autoload": {
  4470. "psr-4": {
  4471. "Symfony\\Component\\Form\\": ""
  4472. },
  4473. "exclude-from-classmap": [
  4474. "/Tests/"
  4475. ]
  4476. },
  4477. "notification-url": "https://packagist.org/downloads/",
  4478. "license": [
  4479. "MIT"
  4480. ],
  4481. "authors": [
  4482. {
  4483. "name": "Fabien Potencier",
  4484. "email": "fabien@symfony.com"
  4485. },
  4486. {
  4487. "name": "Symfony Community",
  4488. "homepage": "https://symfony.com/contributors"
  4489. }
  4490. ],
  4491. "description": "Allows to easily create, process and reuse HTML forms",
  4492. "homepage": "https://symfony.com",
  4493. "support": {
  4494. "source": "https://github.com/symfony/form/tree/v6.4.10"
  4495. },
  4496. "funding": [
  4497. {
  4498. "url": "https://symfony.com/sponsor",
  4499. "type": "custom"
  4500. },
  4501. {
  4502. "url": "https://github.com/fabpot",
  4503. "type": "github"
  4504. },
  4505. {
  4506. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4507. "type": "tidelift"
  4508. }
  4509. ],
  4510. "time": "2024-07-19T08:21:35+00:00"
  4511. },
  4512. {
  4513. "name": "symfony/framework-bundle",
  4514. "version": "v6.4.10",
  4515. "source": {
  4516. "type": "git",
  4517. "url": "https://github.com/symfony/framework-bundle.git",
  4518. "reference": "6cbdb0cc3ddbb63499262cd3036882b08ee2690b"
  4519. },
  4520. "dist": {
  4521. "type": "zip",
  4522. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/6cbdb0cc3ddbb63499262cd3036882b08ee2690b",
  4523. "reference": "6cbdb0cc3ddbb63499262cd3036882b08ee2690b",
  4524. "shasum": ""
  4525. },
  4526. "require": {
  4527. "composer-runtime-api": ">=2.1",
  4528. "ext-xml": "*",
  4529. "php": ">=8.1",
  4530. "symfony/cache": "^5.4|^6.0|^7.0",
  4531. "symfony/config": "^6.1|^7.0",
  4532. "symfony/dependency-injection": "^6.4|^7.0",
  4533. "symfony/deprecation-contracts": "^2.5|^3",
  4534. "symfony/error-handler": "^6.1|^7.0",
  4535. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4536. "symfony/filesystem": "^5.4|^6.0|^7.0",
  4537. "symfony/finder": "^5.4|^6.0|^7.0",
  4538. "symfony/http-foundation": "^6.4|^7.0",
  4539. "symfony/http-kernel": "^6.4",
  4540. "symfony/polyfill-mbstring": "~1.0",
  4541. "symfony/routing": "^6.4|^7.0"
  4542. },
  4543. "conflict": {
  4544. "doctrine/annotations": "<1.13.1",
  4545. "doctrine/persistence": "<1.3",
  4546. "phpdocumentor/reflection-docblock": "<3.2.2",
  4547. "phpdocumentor/type-resolver": "<1.4.0",
  4548. "symfony/asset": "<5.4",
  4549. "symfony/asset-mapper": "<6.4",
  4550. "symfony/clock": "<6.3",
  4551. "symfony/console": "<5.4|>=7.0",
  4552. "symfony/dom-crawler": "<6.4",
  4553. "symfony/dotenv": "<5.4",
  4554. "symfony/form": "<5.4",
  4555. "symfony/http-client": "<6.3",
  4556. "symfony/lock": "<5.4",
  4557. "symfony/mailer": "<5.4",
  4558. "symfony/messenger": "<6.3",
  4559. "symfony/mime": "<6.4",
  4560. "symfony/property-access": "<5.4",
  4561. "symfony/property-info": "<5.4",
  4562. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4563. "symfony/security-core": "<5.4",
  4564. "symfony/security-csrf": "<5.4",
  4565. "symfony/serializer": "<6.4",
  4566. "symfony/stopwatch": "<5.4",
  4567. "symfony/translation": "<6.4",
  4568. "symfony/twig-bridge": "<5.4",
  4569. "symfony/twig-bundle": "<5.4",
  4570. "symfony/validator": "<6.4",
  4571. "symfony/web-profiler-bundle": "<6.4",
  4572. "symfony/workflow": "<6.4"
  4573. },
  4574. "require-dev": {
  4575. "doctrine/annotations": "^1.13.1|^2",
  4576. "doctrine/persistence": "^1.3|^2|^3",
  4577. "dragonmantank/cron-expression": "^3.1",
  4578. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4579. "seld/jsonlint": "^1.10",
  4580. "symfony/asset": "^5.4|^6.0|^7.0",
  4581. "symfony/asset-mapper": "^6.4|^7.0",
  4582. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  4583. "symfony/clock": "^6.2|^7.0",
  4584. "symfony/console": "^5.4.9|^6.0.9|^7.0",
  4585. "symfony/css-selector": "^5.4|^6.0|^7.0",
  4586. "symfony/dom-crawler": "^6.4|^7.0",
  4587. "symfony/dotenv": "^5.4|^6.0|^7.0",
  4588. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4589. "symfony/form": "^5.4|^6.0|^7.0",
  4590. "symfony/html-sanitizer": "^6.1|^7.0",
  4591. "symfony/http-client": "^6.3|^7.0",
  4592. "symfony/lock": "^5.4|^6.0|^7.0",
  4593. "symfony/mailer": "^5.4|^6.0|^7.0",
  4594. "symfony/messenger": "^6.3|^7.0",
  4595. "symfony/mime": "^6.4|^7.0",
  4596. "symfony/notifier": "^5.4|^6.0|^7.0",
  4597. "symfony/polyfill-intl-icu": "~1.0",
  4598. "symfony/process": "^5.4|^6.0|^7.0",
  4599. "symfony/property-info": "^5.4|^6.0|^7.0",
  4600. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  4601. "symfony/scheduler": "^6.4.4|^7.0.4",
  4602. "symfony/security-bundle": "^5.4|^6.0|^7.0",
  4603. "symfony/semaphore": "^5.4|^6.0|^7.0",
  4604. "symfony/serializer": "^6.4|^7.0",
  4605. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  4606. "symfony/string": "^5.4|^6.0|^7.0",
  4607. "symfony/translation": "^6.4|^7.0",
  4608. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  4609. "symfony/uid": "^5.4|^6.0|^7.0",
  4610. "symfony/validator": "^6.4|^7.0",
  4611. "symfony/web-link": "^5.4|^6.0|^7.0",
  4612. "symfony/workflow": "^6.4|^7.0",
  4613. "symfony/yaml": "^5.4|^6.0|^7.0",
  4614. "twig/twig": "^2.10|^3.0.4"
  4615. },
  4616. "type": "symfony-bundle",
  4617. "autoload": {
  4618. "psr-4": {
  4619. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4620. },
  4621. "exclude-from-classmap": [
  4622. "/Tests/"
  4623. ]
  4624. },
  4625. "notification-url": "https://packagist.org/downloads/",
  4626. "license": [
  4627. "MIT"
  4628. ],
  4629. "authors": [
  4630. {
  4631. "name": "Fabien Potencier",
  4632. "email": "fabien@symfony.com"
  4633. },
  4634. {
  4635. "name": "Symfony Community",
  4636. "homepage": "https://symfony.com/contributors"
  4637. }
  4638. ],
  4639. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4640. "homepage": "https://symfony.com",
  4641. "support": {
  4642. "source": "https://github.com/symfony/framework-bundle/tree/v6.4.10"
  4643. },
  4644. "funding": [
  4645. {
  4646. "url": "https://symfony.com/sponsor",
  4647. "type": "custom"
  4648. },
  4649. {
  4650. "url": "https://github.com/fabpot",
  4651. "type": "github"
  4652. },
  4653. {
  4654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4655. "type": "tidelift"
  4656. }
  4657. ],
  4658. "time": "2024-07-26T13:24:20+00:00"
  4659. },
  4660. {
  4661. "name": "symfony/html-sanitizer",
  4662. "version": "v6.4.8",
  4663. "source": {
  4664. "type": "git",
  4665. "url": "https://github.com/symfony/html-sanitizer.git",
  4666. "reference": "9de29a710320ee802374e479169c5a82f9ee7854"
  4667. },
  4668. "dist": {
  4669. "type": "zip",
  4670. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/9de29a710320ee802374e479169c5a82f9ee7854",
  4671. "reference": "9de29a710320ee802374e479169c5a82f9ee7854",
  4672. "shasum": ""
  4673. },
  4674. "require": {
  4675. "ext-dom": "*",
  4676. "league/uri": "^6.5|^7.0",
  4677. "masterminds/html5": "^2.7.2",
  4678. "php": ">=8.1"
  4679. },
  4680. "type": "library",
  4681. "autoload": {
  4682. "psr-4": {
  4683. "Symfony\\Component\\HtmlSanitizer\\": ""
  4684. },
  4685. "exclude-from-classmap": [
  4686. "/Tests/"
  4687. ]
  4688. },
  4689. "notification-url": "https://packagist.org/downloads/",
  4690. "license": [
  4691. "MIT"
  4692. ],
  4693. "authors": [
  4694. {
  4695. "name": "Titouan Galopin",
  4696. "email": "galopintitouan@gmail.com"
  4697. },
  4698. {
  4699. "name": "Symfony Community",
  4700. "homepage": "https://symfony.com/contributors"
  4701. }
  4702. ],
  4703. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  4704. "homepage": "https://symfony.com",
  4705. "keywords": [
  4706. "Purifier",
  4707. "html",
  4708. "sanitizer"
  4709. ],
  4710. "support": {
  4711. "source": "https://github.com/symfony/html-sanitizer/tree/v6.4.8"
  4712. },
  4713. "funding": [
  4714. {
  4715. "url": "https://symfony.com/sponsor",
  4716. "type": "custom"
  4717. },
  4718. {
  4719. "url": "https://github.com/fabpot",
  4720. "type": "github"
  4721. },
  4722. {
  4723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4724. "type": "tidelift"
  4725. }
  4726. ],
  4727. "time": "2024-05-31T14:51:39+00:00"
  4728. },
  4729. {
  4730. "name": "symfony/http-client",
  4731. "version": "v6.4.10",
  4732. "source": {
  4733. "type": "git",
  4734. "url": "https://github.com/symfony/http-client.git",
  4735. "reference": "b5e498f763e0bf5eed8dcd946e50a3b3f71d4ded"
  4736. },
  4737. "dist": {
  4738. "type": "zip",
  4739. "url": "https://api.github.com/repos/symfony/http-client/zipball/b5e498f763e0bf5eed8dcd946e50a3b3f71d4ded",
  4740. "reference": "b5e498f763e0bf5eed8dcd946e50a3b3f71d4ded",
  4741. "shasum": ""
  4742. },
  4743. "require": {
  4744. "php": ">=8.1",
  4745. "psr/log": "^1|^2|^3",
  4746. "symfony/deprecation-contracts": "^2.5|^3",
  4747. "symfony/http-client-contracts": "^3.4.1",
  4748. "symfony/service-contracts": "^2.5|^3"
  4749. },
  4750. "conflict": {
  4751. "php-http/discovery": "<1.15",
  4752. "symfony/http-foundation": "<6.3"
  4753. },
  4754. "provide": {
  4755. "php-http/async-client-implementation": "*",
  4756. "php-http/client-implementation": "*",
  4757. "psr/http-client-implementation": "1.0",
  4758. "symfony/http-client-implementation": "3.0"
  4759. },
  4760. "require-dev": {
  4761. "amphp/amp": "^2.5",
  4762. "amphp/http-client": "^4.2.1",
  4763. "amphp/http-tunnel": "^1.0",
  4764. "amphp/socket": "^1.1",
  4765. "guzzlehttp/promises": "^1.4|^2.0",
  4766. "nyholm/psr7": "^1.0",
  4767. "php-http/httplug": "^1.0|^2.0",
  4768. "psr/http-client": "^1.0",
  4769. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4770. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  4771. "symfony/messenger": "^5.4|^6.0|^7.0",
  4772. "symfony/process": "^5.4|^6.0|^7.0",
  4773. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  4774. },
  4775. "type": "library",
  4776. "autoload": {
  4777. "psr-4": {
  4778. "Symfony\\Component\\HttpClient\\": ""
  4779. },
  4780. "exclude-from-classmap": [
  4781. "/Tests/"
  4782. ]
  4783. },
  4784. "notification-url": "https://packagist.org/downloads/",
  4785. "license": [
  4786. "MIT"
  4787. ],
  4788. "authors": [
  4789. {
  4790. "name": "Nicolas Grekas",
  4791. "email": "p@tchwork.com"
  4792. },
  4793. {
  4794. "name": "Symfony Community",
  4795. "homepage": "https://symfony.com/contributors"
  4796. }
  4797. ],
  4798. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4799. "homepage": "https://symfony.com",
  4800. "keywords": [
  4801. "http"
  4802. ],
  4803. "support": {
  4804. "source": "https://github.com/symfony/http-client/tree/v6.4.10"
  4805. },
  4806. "funding": [
  4807. {
  4808. "url": "https://symfony.com/sponsor",
  4809. "type": "custom"
  4810. },
  4811. {
  4812. "url": "https://github.com/fabpot",
  4813. "type": "github"
  4814. },
  4815. {
  4816. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4817. "type": "tidelift"
  4818. }
  4819. ],
  4820. "time": "2024-07-15T09:26:24+00:00"
  4821. },
  4822. {
  4823. "name": "symfony/http-client-contracts",
  4824. "version": "v3.5.0",
  4825. "source": {
  4826. "type": "git",
  4827. "url": "https://github.com/symfony/http-client-contracts.git",
  4828. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  4829. },
  4830. "dist": {
  4831. "type": "zip",
  4832. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  4833. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  4834. "shasum": ""
  4835. },
  4836. "require": {
  4837. "php": ">=8.1"
  4838. },
  4839. "type": "library",
  4840. "extra": {
  4841. "branch-alias": {
  4842. "dev-main": "3.5-dev"
  4843. },
  4844. "thanks": {
  4845. "name": "symfony/contracts",
  4846. "url": "https://github.com/symfony/contracts"
  4847. }
  4848. },
  4849. "autoload": {
  4850. "psr-4": {
  4851. "Symfony\\Contracts\\HttpClient\\": ""
  4852. },
  4853. "exclude-from-classmap": [
  4854. "/Test/"
  4855. ]
  4856. },
  4857. "notification-url": "https://packagist.org/downloads/",
  4858. "license": [
  4859. "MIT"
  4860. ],
  4861. "authors": [
  4862. {
  4863. "name": "Nicolas Grekas",
  4864. "email": "p@tchwork.com"
  4865. },
  4866. {
  4867. "name": "Symfony Community",
  4868. "homepage": "https://symfony.com/contributors"
  4869. }
  4870. ],
  4871. "description": "Generic abstractions related to HTTP clients",
  4872. "homepage": "https://symfony.com",
  4873. "keywords": [
  4874. "abstractions",
  4875. "contracts",
  4876. "decoupling",
  4877. "interfaces",
  4878. "interoperability",
  4879. "standards"
  4880. ],
  4881. "support": {
  4882. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  4883. },
  4884. "funding": [
  4885. {
  4886. "url": "https://symfony.com/sponsor",
  4887. "type": "custom"
  4888. },
  4889. {
  4890. "url": "https://github.com/fabpot",
  4891. "type": "github"
  4892. },
  4893. {
  4894. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4895. "type": "tidelift"
  4896. }
  4897. ],
  4898. "time": "2024-04-18T09:32:20+00:00"
  4899. },
  4900. {
  4901. "name": "symfony/http-foundation",
  4902. "version": "v6.4.10",
  4903. "source": {
  4904. "type": "git",
  4905. "url": "https://github.com/symfony/http-foundation.git",
  4906. "reference": "117f1f20a7ade7bcea28b861fb79160a21a1e37b"
  4907. },
  4908. "dist": {
  4909. "type": "zip",
  4910. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/117f1f20a7ade7bcea28b861fb79160a21a1e37b",
  4911. "reference": "117f1f20a7ade7bcea28b861fb79160a21a1e37b",
  4912. "shasum": ""
  4913. },
  4914. "require": {
  4915. "php": ">=8.1",
  4916. "symfony/deprecation-contracts": "^2.5|^3",
  4917. "symfony/polyfill-mbstring": "~1.1",
  4918. "symfony/polyfill-php83": "^1.27"
  4919. },
  4920. "conflict": {
  4921. "symfony/cache": "<6.3"
  4922. },
  4923. "require-dev": {
  4924. "doctrine/dbal": "^2.13.1|^3|^4",
  4925. "predis/predis": "^1.1|^2.0",
  4926. "symfony/cache": "^6.3|^7.0",
  4927. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4928. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4929. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  4930. "symfony/mime": "^5.4|^6.0|^7.0",
  4931. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  4932. },
  4933. "type": "library",
  4934. "autoload": {
  4935. "psr-4": {
  4936. "Symfony\\Component\\HttpFoundation\\": ""
  4937. },
  4938. "exclude-from-classmap": [
  4939. "/Tests/"
  4940. ]
  4941. },
  4942. "notification-url": "https://packagist.org/downloads/",
  4943. "license": [
  4944. "MIT"
  4945. ],
  4946. "authors": [
  4947. {
  4948. "name": "Fabien Potencier",
  4949. "email": "fabien@symfony.com"
  4950. },
  4951. {
  4952. "name": "Symfony Community",
  4953. "homepage": "https://symfony.com/contributors"
  4954. }
  4955. ],
  4956. "description": "Defines an object-oriented layer for the HTTP specification",
  4957. "homepage": "https://symfony.com",
  4958. "support": {
  4959. "source": "https://github.com/symfony/http-foundation/tree/v6.4.10"
  4960. },
  4961. "funding": [
  4962. {
  4963. "url": "https://symfony.com/sponsor",
  4964. "type": "custom"
  4965. },
  4966. {
  4967. "url": "https://github.com/fabpot",
  4968. "type": "github"
  4969. },
  4970. {
  4971. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4972. "type": "tidelift"
  4973. }
  4974. ],
  4975. "time": "2024-07-26T12:36:27+00:00"
  4976. },
  4977. {
  4978. "name": "symfony/http-kernel",
  4979. "version": "v6.4.10",
  4980. "source": {
  4981. "type": "git",
  4982. "url": "https://github.com/symfony/http-kernel.git",
  4983. "reference": "147e0daf618d7575b5007055340d09aece5cf068"
  4984. },
  4985. "dist": {
  4986. "type": "zip",
  4987. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/147e0daf618d7575b5007055340d09aece5cf068",
  4988. "reference": "147e0daf618d7575b5007055340d09aece5cf068",
  4989. "shasum": ""
  4990. },
  4991. "require": {
  4992. "php": ">=8.1",
  4993. "psr/log": "^1|^2|^3",
  4994. "symfony/deprecation-contracts": "^2.5|^3",
  4995. "symfony/error-handler": "^6.4|^7.0",
  4996. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4997. "symfony/http-foundation": "^6.4|^7.0",
  4998. "symfony/polyfill-ctype": "^1.8"
  4999. },
  5000. "conflict": {
  5001. "symfony/browser-kit": "<5.4",
  5002. "symfony/cache": "<5.4",
  5003. "symfony/config": "<6.1",
  5004. "symfony/console": "<5.4",
  5005. "symfony/dependency-injection": "<6.4",
  5006. "symfony/doctrine-bridge": "<5.4",
  5007. "symfony/form": "<5.4",
  5008. "symfony/http-client": "<5.4",
  5009. "symfony/http-client-contracts": "<2.5",
  5010. "symfony/mailer": "<5.4",
  5011. "symfony/messenger": "<5.4",
  5012. "symfony/translation": "<5.4",
  5013. "symfony/translation-contracts": "<2.5",
  5014. "symfony/twig-bridge": "<5.4",
  5015. "symfony/validator": "<6.4",
  5016. "symfony/var-dumper": "<6.3",
  5017. "twig/twig": "<2.13"
  5018. },
  5019. "provide": {
  5020. "psr/log-implementation": "1.0|2.0|3.0"
  5021. },
  5022. "require-dev": {
  5023. "psr/cache": "^1.0|^2.0|^3.0",
  5024. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  5025. "symfony/clock": "^6.2|^7.0",
  5026. "symfony/config": "^6.1|^7.0",
  5027. "symfony/console": "^5.4|^6.0|^7.0",
  5028. "symfony/css-selector": "^5.4|^6.0|^7.0",
  5029. "symfony/dependency-injection": "^6.4|^7.0",
  5030. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  5031. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5032. "symfony/finder": "^5.4|^6.0|^7.0",
  5033. "symfony/http-client-contracts": "^2.5|^3",
  5034. "symfony/process": "^5.4|^6.0|^7.0",
  5035. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  5036. "symfony/routing": "^5.4|^6.0|^7.0",
  5037. "symfony/serializer": "^6.4.4|^7.0.4",
  5038. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5039. "symfony/translation": "^5.4|^6.0|^7.0",
  5040. "symfony/translation-contracts": "^2.5|^3",
  5041. "symfony/uid": "^5.4|^6.0|^7.0",
  5042. "symfony/validator": "^6.4|^7.0",
  5043. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  5044. "symfony/var-exporter": "^6.2|^7.0",
  5045. "twig/twig": "^2.13|^3.0.4"
  5046. },
  5047. "type": "library",
  5048. "autoload": {
  5049. "psr-4": {
  5050. "Symfony\\Component\\HttpKernel\\": ""
  5051. },
  5052. "exclude-from-classmap": [
  5053. "/Tests/"
  5054. ]
  5055. },
  5056. "notification-url": "https://packagist.org/downloads/",
  5057. "license": [
  5058. "MIT"
  5059. ],
  5060. "authors": [
  5061. {
  5062. "name": "Fabien Potencier",
  5063. "email": "fabien@symfony.com"
  5064. },
  5065. {
  5066. "name": "Symfony Community",
  5067. "homepage": "https://symfony.com/contributors"
  5068. }
  5069. ],
  5070. "description": "Provides a structured process for converting a Request into a Response",
  5071. "homepage": "https://symfony.com",
  5072. "support": {
  5073. "source": "https://github.com/symfony/http-kernel/tree/v6.4.10"
  5074. },
  5075. "funding": [
  5076. {
  5077. "url": "https://symfony.com/sponsor",
  5078. "type": "custom"
  5079. },
  5080. {
  5081. "url": "https://github.com/fabpot",
  5082. "type": "github"
  5083. },
  5084. {
  5085. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5086. "type": "tidelift"
  5087. }
  5088. ],
  5089. "time": "2024-07-26T14:52:04+00:00"
  5090. },
  5091. {
  5092. "name": "symfony/mailer",
  5093. "version": "v6.4.9",
  5094. "source": {
  5095. "type": "git",
  5096. "url": "https://github.com/symfony/mailer.git",
  5097. "reference": "e2d56f180f5b8c5e7c0fbea872bb1f529b6d6d45"
  5098. },
  5099. "dist": {
  5100. "type": "zip",
  5101. "url": "https://api.github.com/repos/symfony/mailer/zipball/e2d56f180f5b8c5e7c0fbea872bb1f529b6d6d45",
  5102. "reference": "e2d56f180f5b8c5e7c0fbea872bb1f529b6d6d45",
  5103. "shasum": ""
  5104. },
  5105. "require": {
  5106. "egulias/email-validator": "^2.1.10|^3|^4",
  5107. "php": ">=8.1",
  5108. "psr/event-dispatcher": "^1",
  5109. "psr/log": "^1|^2|^3",
  5110. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5111. "symfony/mime": "^6.2|^7.0",
  5112. "symfony/service-contracts": "^2.5|^3"
  5113. },
  5114. "conflict": {
  5115. "symfony/http-client-contracts": "<2.5",
  5116. "symfony/http-kernel": "<5.4",
  5117. "symfony/messenger": "<6.2",
  5118. "symfony/mime": "<6.2",
  5119. "symfony/twig-bridge": "<6.2.1"
  5120. },
  5121. "require-dev": {
  5122. "symfony/console": "^5.4|^6.0|^7.0",
  5123. "symfony/http-client": "^5.4|^6.0|^7.0",
  5124. "symfony/messenger": "^6.2|^7.0",
  5125. "symfony/twig-bridge": "^6.2|^7.0"
  5126. },
  5127. "type": "library",
  5128. "autoload": {
  5129. "psr-4": {
  5130. "Symfony\\Component\\Mailer\\": ""
  5131. },
  5132. "exclude-from-classmap": [
  5133. "/Tests/"
  5134. ]
  5135. },
  5136. "notification-url": "https://packagist.org/downloads/",
  5137. "license": [
  5138. "MIT"
  5139. ],
  5140. "authors": [
  5141. {
  5142. "name": "Fabien Potencier",
  5143. "email": "fabien@symfony.com"
  5144. },
  5145. {
  5146. "name": "Symfony Community",
  5147. "homepage": "https://symfony.com/contributors"
  5148. }
  5149. ],
  5150. "description": "Helps sending emails",
  5151. "homepage": "https://symfony.com",
  5152. "support": {
  5153. "source": "https://github.com/symfony/mailer/tree/v6.4.9"
  5154. },
  5155. "funding": [
  5156. {
  5157. "url": "https://symfony.com/sponsor",
  5158. "type": "custom"
  5159. },
  5160. {
  5161. "url": "https://github.com/fabpot",
  5162. "type": "github"
  5163. },
  5164. {
  5165. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5166. "type": "tidelift"
  5167. }
  5168. ],
  5169. "time": "2024-06-28T07:59:05+00:00"
  5170. },
  5171. {
  5172. "name": "symfony/mime",
  5173. "version": "v6.4.9",
  5174. "source": {
  5175. "type": "git",
  5176. "url": "https://github.com/symfony/mime.git",
  5177. "reference": "7d048964877324debdcb4e0549becfa064a20d43"
  5178. },
  5179. "dist": {
  5180. "type": "zip",
  5181. "url": "https://api.github.com/repos/symfony/mime/zipball/7d048964877324debdcb4e0549becfa064a20d43",
  5182. "reference": "7d048964877324debdcb4e0549becfa064a20d43",
  5183. "shasum": ""
  5184. },
  5185. "require": {
  5186. "php": ">=8.1",
  5187. "symfony/deprecation-contracts": "^2.5|^3",
  5188. "symfony/polyfill-intl-idn": "^1.10",
  5189. "symfony/polyfill-mbstring": "^1.0"
  5190. },
  5191. "conflict": {
  5192. "egulias/email-validator": "~3.0.0",
  5193. "phpdocumentor/reflection-docblock": "<3.2.2",
  5194. "phpdocumentor/type-resolver": "<1.4.0",
  5195. "symfony/mailer": "<5.4",
  5196. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  5197. },
  5198. "require-dev": {
  5199. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5200. "league/html-to-markdown": "^5.0",
  5201. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5202. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5203. "symfony/process": "^5.4|^6.4|^7.0",
  5204. "symfony/property-access": "^5.4|^6.0|^7.0",
  5205. "symfony/property-info": "^5.4|^6.0|^7.0",
  5206. "symfony/serializer": "^6.4.3|^7.0.3"
  5207. },
  5208. "type": "library",
  5209. "autoload": {
  5210. "psr-4": {
  5211. "Symfony\\Component\\Mime\\": ""
  5212. },
  5213. "exclude-from-classmap": [
  5214. "/Tests/"
  5215. ]
  5216. },
  5217. "notification-url": "https://packagist.org/downloads/",
  5218. "license": [
  5219. "MIT"
  5220. ],
  5221. "authors": [
  5222. {
  5223. "name": "Fabien Potencier",
  5224. "email": "fabien@symfony.com"
  5225. },
  5226. {
  5227. "name": "Symfony Community",
  5228. "homepage": "https://symfony.com/contributors"
  5229. }
  5230. ],
  5231. "description": "Allows manipulating MIME messages",
  5232. "homepage": "https://symfony.com",
  5233. "keywords": [
  5234. "mime",
  5235. "mime-type"
  5236. ],
  5237. "support": {
  5238. "source": "https://github.com/symfony/mime/tree/v6.4.9"
  5239. },
  5240. "funding": [
  5241. {
  5242. "url": "https://symfony.com/sponsor",
  5243. "type": "custom"
  5244. },
  5245. {
  5246. "url": "https://github.com/fabpot",
  5247. "type": "github"
  5248. },
  5249. {
  5250. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5251. "type": "tidelift"
  5252. }
  5253. ],
  5254. "time": "2024-06-28T09:49:33+00:00"
  5255. },
  5256. {
  5257. "name": "symfony/monolog-bridge",
  5258. "version": "v6.4.8",
  5259. "source": {
  5260. "type": "git",
  5261. "url": "https://github.com/symfony/monolog-bridge.git",
  5262. "reference": "0fbee64913b1c595e7650a1919ba3edba8d49ea7"
  5263. },
  5264. "dist": {
  5265. "type": "zip",
  5266. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/0fbee64913b1c595e7650a1919ba3edba8d49ea7",
  5267. "reference": "0fbee64913b1c595e7650a1919ba3edba8d49ea7",
  5268. "shasum": ""
  5269. },
  5270. "require": {
  5271. "monolog/monolog": "^1.25.1|^2|^3",
  5272. "php": ">=8.1",
  5273. "symfony/deprecation-contracts": "^2.5|^3",
  5274. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  5275. "symfony/service-contracts": "^2.5|^3"
  5276. },
  5277. "conflict": {
  5278. "symfony/console": "<5.4",
  5279. "symfony/http-foundation": "<5.4",
  5280. "symfony/security-core": "<5.4"
  5281. },
  5282. "require-dev": {
  5283. "symfony/console": "^5.4|^6.0|^7.0",
  5284. "symfony/http-client": "^5.4|^6.0|^7.0",
  5285. "symfony/mailer": "^5.4|^6.0|^7.0",
  5286. "symfony/messenger": "^5.4|^6.0|^7.0",
  5287. "symfony/mime": "^5.4|^6.0|^7.0",
  5288. "symfony/security-core": "^5.4|^6.0|^7.0",
  5289. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5290. },
  5291. "type": "symfony-bridge",
  5292. "autoload": {
  5293. "psr-4": {
  5294. "Symfony\\Bridge\\Monolog\\": ""
  5295. },
  5296. "exclude-from-classmap": [
  5297. "/Tests/"
  5298. ]
  5299. },
  5300. "notification-url": "https://packagist.org/downloads/",
  5301. "license": [
  5302. "MIT"
  5303. ],
  5304. "authors": [
  5305. {
  5306. "name": "Fabien Potencier",
  5307. "email": "fabien@symfony.com"
  5308. },
  5309. {
  5310. "name": "Symfony Community",
  5311. "homepage": "https://symfony.com/contributors"
  5312. }
  5313. ],
  5314. "description": "Provides integration for Monolog with various Symfony components",
  5315. "homepage": "https://symfony.com",
  5316. "support": {
  5317. "source": "https://github.com/symfony/monolog-bridge/tree/v6.4.8"
  5318. },
  5319. "funding": [
  5320. {
  5321. "url": "https://symfony.com/sponsor",
  5322. "type": "custom"
  5323. },
  5324. {
  5325. "url": "https://github.com/fabpot",
  5326. "type": "github"
  5327. },
  5328. {
  5329. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5330. "type": "tidelift"
  5331. }
  5332. ],
  5333. "time": "2024-05-31T14:49:08+00:00"
  5334. },
  5335. {
  5336. "name": "symfony/monolog-bundle",
  5337. "version": "v3.10.0",
  5338. "source": {
  5339. "type": "git",
  5340. "url": "https://github.com/symfony/monolog-bundle.git",
  5341. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5342. },
  5343. "dist": {
  5344. "type": "zip",
  5345. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5346. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5347. "shasum": ""
  5348. },
  5349. "require": {
  5350. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5351. "php": ">=7.2.5",
  5352. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  5353. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  5354. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  5355. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  5356. },
  5357. "require-dev": {
  5358. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  5359. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  5360. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  5361. },
  5362. "type": "symfony-bundle",
  5363. "extra": {
  5364. "branch-alias": {
  5365. "dev-master": "3.x-dev"
  5366. }
  5367. },
  5368. "autoload": {
  5369. "psr-4": {
  5370. "Symfony\\Bundle\\MonologBundle\\": ""
  5371. },
  5372. "exclude-from-classmap": [
  5373. "/Tests/"
  5374. ]
  5375. },
  5376. "notification-url": "https://packagist.org/downloads/",
  5377. "license": [
  5378. "MIT"
  5379. ],
  5380. "authors": [
  5381. {
  5382. "name": "Fabien Potencier",
  5383. "email": "fabien@symfony.com"
  5384. },
  5385. {
  5386. "name": "Symfony Community",
  5387. "homepage": "https://symfony.com/contributors"
  5388. }
  5389. ],
  5390. "description": "Symfony MonologBundle",
  5391. "homepage": "https://symfony.com",
  5392. "keywords": [
  5393. "log",
  5394. "logging"
  5395. ],
  5396. "support": {
  5397. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5398. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  5399. },
  5400. "funding": [
  5401. {
  5402. "url": "https://symfony.com/sponsor",
  5403. "type": "custom"
  5404. },
  5405. {
  5406. "url": "https://github.com/fabpot",
  5407. "type": "github"
  5408. },
  5409. {
  5410. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5411. "type": "tidelift"
  5412. }
  5413. ],
  5414. "time": "2023-11-06T17:08:13+00:00"
  5415. },
  5416. {
  5417. "name": "symfony/options-resolver",
  5418. "version": "v6.4.8",
  5419. "source": {
  5420. "type": "git",
  5421. "url": "https://github.com/symfony/options-resolver.git",
  5422. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  5423. },
  5424. "dist": {
  5425. "type": "zip",
  5426. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  5427. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  5428. "shasum": ""
  5429. },
  5430. "require": {
  5431. "php": ">=8.1",
  5432. "symfony/deprecation-contracts": "^2.5|^3"
  5433. },
  5434. "type": "library",
  5435. "autoload": {
  5436. "psr-4": {
  5437. "Symfony\\Component\\OptionsResolver\\": ""
  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 an improved replacement for the array_replace PHP function",
  5458. "homepage": "https://symfony.com",
  5459. "keywords": [
  5460. "config",
  5461. "configuration",
  5462. "options"
  5463. ],
  5464. "support": {
  5465. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  5466. },
  5467. "funding": [
  5468. {
  5469. "url": "https://symfony.com/sponsor",
  5470. "type": "custom"
  5471. },
  5472. {
  5473. "url": "https://github.com/fabpot",
  5474. "type": "github"
  5475. },
  5476. {
  5477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5478. "type": "tidelift"
  5479. }
  5480. ],
  5481. "time": "2024-05-31T14:49:08+00:00"
  5482. },
  5483. {
  5484. "name": "symfony/password-hasher",
  5485. "version": "v6.4.8",
  5486. "source": {
  5487. "type": "git",
  5488. "url": "https://github.com/symfony/password-hasher.git",
  5489. "reference": "90ebbe946e5d64a5fad9ac9427e335045cf2bd31"
  5490. },
  5491. "dist": {
  5492. "type": "zip",
  5493. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/90ebbe946e5d64a5fad9ac9427e335045cf2bd31",
  5494. "reference": "90ebbe946e5d64a5fad9ac9427e335045cf2bd31",
  5495. "shasum": ""
  5496. },
  5497. "require": {
  5498. "php": ">=8.1"
  5499. },
  5500. "conflict": {
  5501. "symfony/security-core": "<5.4"
  5502. },
  5503. "require-dev": {
  5504. "symfony/console": "^5.4|^6.0|^7.0",
  5505. "symfony/security-core": "^5.4|^6.0|^7.0"
  5506. },
  5507. "type": "library",
  5508. "autoload": {
  5509. "psr-4": {
  5510. "Symfony\\Component\\PasswordHasher\\": ""
  5511. },
  5512. "exclude-from-classmap": [
  5513. "/Tests/"
  5514. ]
  5515. },
  5516. "notification-url": "https://packagist.org/downloads/",
  5517. "license": [
  5518. "MIT"
  5519. ],
  5520. "authors": [
  5521. {
  5522. "name": "Robin Chalas",
  5523. "email": "robin.chalas@gmail.com"
  5524. },
  5525. {
  5526. "name": "Symfony Community",
  5527. "homepage": "https://symfony.com/contributors"
  5528. }
  5529. ],
  5530. "description": "Provides password hashing utilities",
  5531. "homepage": "https://symfony.com",
  5532. "keywords": [
  5533. "hashing",
  5534. "password"
  5535. ],
  5536. "support": {
  5537. "source": "https://github.com/symfony/password-hasher/tree/v6.4.8"
  5538. },
  5539. "funding": [
  5540. {
  5541. "url": "https://symfony.com/sponsor",
  5542. "type": "custom"
  5543. },
  5544. {
  5545. "url": "https://github.com/fabpot",
  5546. "type": "github"
  5547. },
  5548. {
  5549. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5550. "type": "tidelift"
  5551. }
  5552. ],
  5553. "time": "2024-05-31T14:49:08+00:00"
  5554. },
  5555. {
  5556. "name": "symfony/polyfill-intl-grapheme",
  5557. "version": "v1.30.0",
  5558. "source": {
  5559. "type": "git",
  5560. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5561. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a"
  5562. },
  5563. "dist": {
  5564. "type": "zip",
  5565. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a",
  5566. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a",
  5567. "shasum": ""
  5568. },
  5569. "require": {
  5570. "php": ">=7.1"
  5571. },
  5572. "suggest": {
  5573. "ext-intl": "For best performance"
  5574. },
  5575. "type": "library",
  5576. "extra": {
  5577. "thanks": {
  5578. "name": "symfony/polyfill",
  5579. "url": "https://github.com/symfony/polyfill"
  5580. }
  5581. },
  5582. "autoload": {
  5583. "files": [
  5584. "bootstrap.php"
  5585. ],
  5586. "psr-4": {
  5587. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5588. }
  5589. },
  5590. "notification-url": "https://packagist.org/downloads/",
  5591. "license": [
  5592. "MIT"
  5593. ],
  5594. "authors": [
  5595. {
  5596. "name": "Nicolas Grekas",
  5597. "email": "p@tchwork.com"
  5598. },
  5599. {
  5600. "name": "Symfony Community",
  5601. "homepage": "https://symfony.com/contributors"
  5602. }
  5603. ],
  5604. "description": "Symfony polyfill for intl's grapheme_* functions",
  5605. "homepage": "https://symfony.com",
  5606. "keywords": [
  5607. "compatibility",
  5608. "grapheme",
  5609. "intl",
  5610. "polyfill",
  5611. "portable",
  5612. "shim"
  5613. ],
  5614. "support": {
  5615. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0"
  5616. },
  5617. "funding": [
  5618. {
  5619. "url": "https://symfony.com/sponsor",
  5620. "type": "custom"
  5621. },
  5622. {
  5623. "url": "https://github.com/fabpot",
  5624. "type": "github"
  5625. },
  5626. {
  5627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5628. "type": "tidelift"
  5629. }
  5630. ],
  5631. "time": "2024-05-31T15:07:36+00:00"
  5632. },
  5633. {
  5634. "name": "symfony/polyfill-intl-icu",
  5635. "version": "v1.30.0",
  5636. "source": {
  5637. "type": "git",
  5638. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5639. "reference": "e76343c631b453088e2260ac41dfebe21954de81"
  5640. },
  5641. "dist": {
  5642. "type": "zip",
  5643. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e76343c631b453088e2260ac41dfebe21954de81",
  5644. "reference": "e76343c631b453088e2260ac41dfebe21954de81",
  5645. "shasum": ""
  5646. },
  5647. "require": {
  5648. "php": ">=7.1"
  5649. },
  5650. "suggest": {
  5651. "ext-intl": "For best performance and support of other locales than \"en\""
  5652. },
  5653. "type": "library",
  5654. "extra": {
  5655. "thanks": {
  5656. "name": "symfony/polyfill",
  5657. "url": "https://github.com/symfony/polyfill"
  5658. }
  5659. },
  5660. "autoload": {
  5661. "files": [
  5662. "bootstrap.php"
  5663. ],
  5664. "psr-4": {
  5665. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5666. },
  5667. "classmap": [
  5668. "Resources/stubs"
  5669. ],
  5670. "exclude-from-classmap": [
  5671. "/Tests/"
  5672. ]
  5673. },
  5674. "notification-url": "https://packagist.org/downloads/",
  5675. "license": [
  5676. "MIT"
  5677. ],
  5678. "authors": [
  5679. {
  5680. "name": "Nicolas Grekas",
  5681. "email": "p@tchwork.com"
  5682. },
  5683. {
  5684. "name": "Symfony Community",
  5685. "homepage": "https://symfony.com/contributors"
  5686. }
  5687. ],
  5688. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5689. "homepage": "https://symfony.com",
  5690. "keywords": [
  5691. "compatibility",
  5692. "icu",
  5693. "intl",
  5694. "polyfill",
  5695. "portable",
  5696. "shim"
  5697. ],
  5698. "support": {
  5699. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.30.0"
  5700. },
  5701. "funding": [
  5702. {
  5703. "url": "https://symfony.com/sponsor",
  5704. "type": "custom"
  5705. },
  5706. {
  5707. "url": "https://github.com/fabpot",
  5708. "type": "github"
  5709. },
  5710. {
  5711. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5712. "type": "tidelift"
  5713. }
  5714. ],
  5715. "time": "2024-05-31T15:07:36+00:00"
  5716. },
  5717. {
  5718. "name": "symfony/polyfill-intl-idn",
  5719. "version": "v1.30.0",
  5720. "source": {
  5721. "type": "git",
  5722. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5723. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c"
  5724. },
  5725. "dist": {
  5726. "type": "zip",
  5727. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  5728. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  5729. "shasum": ""
  5730. },
  5731. "require": {
  5732. "php": ">=7.1",
  5733. "symfony/polyfill-intl-normalizer": "^1.10",
  5734. "symfony/polyfill-php72": "^1.10"
  5735. },
  5736. "suggest": {
  5737. "ext-intl": "For best performance"
  5738. },
  5739. "type": "library",
  5740. "extra": {
  5741. "thanks": {
  5742. "name": "symfony/polyfill",
  5743. "url": "https://github.com/symfony/polyfill"
  5744. }
  5745. },
  5746. "autoload": {
  5747. "files": [
  5748. "bootstrap.php"
  5749. ],
  5750. "psr-4": {
  5751. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5752. }
  5753. },
  5754. "notification-url": "https://packagist.org/downloads/",
  5755. "license": [
  5756. "MIT"
  5757. ],
  5758. "authors": [
  5759. {
  5760. "name": "Laurent Bassin",
  5761. "email": "laurent@bassin.info"
  5762. },
  5763. {
  5764. "name": "Trevor Rowbotham",
  5765. "email": "trevor.rowbotham@pm.me"
  5766. },
  5767. {
  5768. "name": "Symfony Community",
  5769. "homepage": "https://symfony.com/contributors"
  5770. }
  5771. ],
  5772. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5773. "homepage": "https://symfony.com",
  5774. "keywords": [
  5775. "compatibility",
  5776. "idn",
  5777. "intl",
  5778. "polyfill",
  5779. "portable",
  5780. "shim"
  5781. ],
  5782. "support": {
  5783. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0"
  5784. },
  5785. "funding": [
  5786. {
  5787. "url": "https://symfony.com/sponsor",
  5788. "type": "custom"
  5789. },
  5790. {
  5791. "url": "https://github.com/fabpot",
  5792. "type": "github"
  5793. },
  5794. {
  5795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5796. "type": "tidelift"
  5797. }
  5798. ],
  5799. "time": "2024-05-31T15:07:36+00:00"
  5800. },
  5801. {
  5802. "name": "symfony/polyfill-intl-normalizer",
  5803. "version": "v1.30.0",
  5804. "source": {
  5805. "type": "git",
  5806. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5807. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
  5808. },
  5809. "dist": {
  5810. "type": "zip",
  5811. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  5812. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  5813. "shasum": ""
  5814. },
  5815. "require": {
  5816. "php": ">=7.1"
  5817. },
  5818. "suggest": {
  5819. "ext-intl": "For best performance"
  5820. },
  5821. "type": "library",
  5822. "extra": {
  5823. "thanks": {
  5824. "name": "symfony/polyfill",
  5825. "url": "https://github.com/symfony/polyfill"
  5826. }
  5827. },
  5828. "autoload": {
  5829. "files": [
  5830. "bootstrap.php"
  5831. ],
  5832. "psr-4": {
  5833. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5834. },
  5835. "classmap": [
  5836. "Resources/stubs"
  5837. ]
  5838. },
  5839. "notification-url": "https://packagist.org/downloads/",
  5840. "license": [
  5841. "MIT"
  5842. ],
  5843. "authors": [
  5844. {
  5845. "name": "Nicolas Grekas",
  5846. "email": "p@tchwork.com"
  5847. },
  5848. {
  5849. "name": "Symfony Community",
  5850. "homepage": "https://symfony.com/contributors"
  5851. }
  5852. ],
  5853. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5854. "homepage": "https://symfony.com",
  5855. "keywords": [
  5856. "compatibility",
  5857. "intl",
  5858. "normalizer",
  5859. "polyfill",
  5860. "portable",
  5861. "shim"
  5862. ],
  5863. "support": {
  5864. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
  5865. },
  5866. "funding": [
  5867. {
  5868. "url": "https://symfony.com/sponsor",
  5869. "type": "custom"
  5870. },
  5871. {
  5872. "url": "https://github.com/fabpot",
  5873. "type": "github"
  5874. },
  5875. {
  5876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5877. "type": "tidelift"
  5878. }
  5879. ],
  5880. "time": "2024-05-31T15:07:36+00:00"
  5881. },
  5882. {
  5883. "name": "symfony/polyfill-mbstring",
  5884. "version": "v1.30.0",
  5885. "source": {
  5886. "type": "git",
  5887. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5888. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  5889. },
  5890. "dist": {
  5891. "type": "zip",
  5892. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  5893. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  5894. "shasum": ""
  5895. },
  5896. "require": {
  5897. "php": ">=7.1"
  5898. },
  5899. "provide": {
  5900. "ext-mbstring": "*"
  5901. },
  5902. "suggest": {
  5903. "ext-mbstring": "For best performance"
  5904. },
  5905. "type": "library",
  5906. "extra": {
  5907. "thanks": {
  5908. "name": "symfony/polyfill",
  5909. "url": "https://github.com/symfony/polyfill"
  5910. }
  5911. },
  5912. "autoload": {
  5913. "files": [
  5914. "bootstrap.php"
  5915. ],
  5916. "psr-4": {
  5917. "Symfony\\Polyfill\\Mbstring\\": ""
  5918. }
  5919. },
  5920. "notification-url": "https://packagist.org/downloads/",
  5921. "license": [
  5922. "MIT"
  5923. ],
  5924. "authors": [
  5925. {
  5926. "name": "Nicolas Grekas",
  5927. "email": "p@tchwork.com"
  5928. },
  5929. {
  5930. "name": "Symfony Community",
  5931. "homepage": "https://symfony.com/contributors"
  5932. }
  5933. ],
  5934. "description": "Symfony polyfill for the Mbstring extension",
  5935. "homepage": "https://symfony.com",
  5936. "keywords": [
  5937. "compatibility",
  5938. "mbstring",
  5939. "polyfill",
  5940. "portable",
  5941. "shim"
  5942. ],
  5943. "support": {
  5944. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  5945. },
  5946. "funding": [
  5947. {
  5948. "url": "https://symfony.com/sponsor",
  5949. "type": "custom"
  5950. },
  5951. {
  5952. "url": "https://github.com/fabpot",
  5953. "type": "github"
  5954. },
  5955. {
  5956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5957. "type": "tidelift"
  5958. }
  5959. ],
  5960. "time": "2024-06-19T12:30:46+00:00"
  5961. },
  5962. {
  5963. "name": "symfony/polyfill-php72",
  5964. "version": "v1.30.0",
  5965. "source": {
  5966. "type": "git",
  5967. "url": "https://github.com/symfony/polyfill-php72.git",
  5968. "reference": "10112722600777e02d2745716b70c5db4ca70442"
  5969. },
  5970. "dist": {
  5971. "type": "zip",
  5972. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442",
  5973. "reference": "10112722600777e02d2745716b70c5db4ca70442",
  5974. "shasum": ""
  5975. },
  5976. "require": {
  5977. "php": ">=7.1"
  5978. },
  5979. "type": "library",
  5980. "extra": {
  5981. "thanks": {
  5982. "name": "symfony/polyfill",
  5983. "url": "https://github.com/symfony/polyfill"
  5984. }
  5985. },
  5986. "autoload": {
  5987. "files": [
  5988. "bootstrap.php"
  5989. ],
  5990. "psr-4": {
  5991. "Symfony\\Polyfill\\Php72\\": ""
  5992. }
  5993. },
  5994. "notification-url": "https://packagist.org/downloads/",
  5995. "license": [
  5996. "MIT"
  5997. ],
  5998. "authors": [
  5999. {
  6000. "name": "Nicolas Grekas",
  6001. "email": "p@tchwork.com"
  6002. },
  6003. {
  6004. "name": "Symfony Community",
  6005. "homepage": "https://symfony.com/contributors"
  6006. }
  6007. ],
  6008. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6009. "homepage": "https://symfony.com",
  6010. "keywords": [
  6011. "compatibility",
  6012. "polyfill",
  6013. "portable",
  6014. "shim"
  6015. ],
  6016. "support": {
  6017. "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0"
  6018. },
  6019. "funding": [
  6020. {
  6021. "url": "https://symfony.com/sponsor",
  6022. "type": "custom"
  6023. },
  6024. {
  6025. "url": "https://github.com/fabpot",
  6026. "type": "github"
  6027. },
  6028. {
  6029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6030. "type": "tidelift"
  6031. }
  6032. ],
  6033. "time": "2024-06-19T12:30:46+00:00"
  6034. },
  6035. {
  6036. "name": "symfony/polyfill-php80",
  6037. "version": "v1.30.0",
  6038. "source": {
  6039. "type": "git",
  6040. "url": "https://github.com/symfony/polyfill-php80.git",
  6041. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433"
  6042. },
  6043. "dist": {
  6044. "type": "zip",
  6045. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433",
  6046. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433",
  6047. "shasum": ""
  6048. },
  6049. "require": {
  6050. "php": ">=7.1"
  6051. },
  6052. "type": "library",
  6053. "extra": {
  6054. "thanks": {
  6055. "name": "symfony/polyfill",
  6056. "url": "https://github.com/symfony/polyfill"
  6057. }
  6058. },
  6059. "autoload": {
  6060. "files": [
  6061. "bootstrap.php"
  6062. ],
  6063. "psr-4": {
  6064. "Symfony\\Polyfill\\Php80\\": ""
  6065. },
  6066. "classmap": [
  6067. "Resources/stubs"
  6068. ]
  6069. },
  6070. "notification-url": "https://packagist.org/downloads/",
  6071. "license": [
  6072. "MIT"
  6073. ],
  6074. "authors": [
  6075. {
  6076. "name": "Ion Bazan",
  6077. "email": "ion.bazan@gmail.com"
  6078. },
  6079. {
  6080. "name": "Nicolas Grekas",
  6081. "email": "p@tchwork.com"
  6082. },
  6083. {
  6084. "name": "Symfony Community",
  6085. "homepage": "https://symfony.com/contributors"
  6086. }
  6087. ],
  6088. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6089. "homepage": "https://symfony.com",
  6090. "keywords": [
  6091. "compatibility",
  6092. "polyfill",
  6093. "portable",
  6094. "shim"
  6095. ],
  6096. "support": {
  6097. "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0"
  6098. },
  6099. "funding": [
  6100. {
  6101. "url": "https://symfony.com/sponsor",
  6102. "type": "custom"
  6103. },
  6104. {
  6105. "url": "https://github.com/fabpot",
  6106. "type": "github"
  6107. },
  6108. {
  6109. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6110. "type": "tidelift"
  6111. }
  6112. ],
  6113. "time": "2024-05-31T15:07:36+00:00"
  6114. },
  6115. {
  6116. "name": "symfony/polyfill-php83",
  6117. "version": "v1.30.0",
  6118. "source": {
  6119. "type": "git",
  6120. "url": "https://github.com/symfony/polyfill-php83.git",
  6121. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9"
  6122. },
  6123. "dist": {
  6124. "type": "zip",
  6125. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  6126. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  6127. "shasum": ""
  6128. },
  6129. "require": {
  6130. "php": ">=7.1"
  6131. },
  6132. "type": "library",
  6133. "extra": {
  6134. "thanks": {
  6135. "name": "symfony/polyfill",
  6136. "url": "https://github.com/symfony/polyfill"
  6137. }
  6138. },
  6139. "autoload": {
  6140. "files": [
  6141. "bootstrap.php"
  6142. ],
  6143. "psr-4": {
  6144. "Symfony\\Polyfill\\Php83\\": ""
  6145. },
  6146. "classmap": [
  6147. "Resources/stubs"
  6148. ]
  6149. },
  6150. "notification-url": "https://packagist.org/downloads/",
  6151. "license": [
  6152. "MIT"
  6153. ],
  6154. "authors": [
  6155. {
  6156. "name": "Nicolas Grekas",
  6157. "email": "p@tchwork.com"
  6158. },
  6159. {
  6160. "name": "Symfony Community",
  6161. "homepage": "https://symfony.com/contributors"
  6162. }
  6163. ],
  6164. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6165. "homepage": "https://symfony.com",
  6166. "keywords": [
  6167. "compatibility",
  6168. "polyfill",
  6169. "portable",
  6170. "shim"
  6171. ],
  6172. "support": {
  6173. "source": "https://github.com/symfony/polyfill-php83/tree/v1.30.0"
  6174. },
  6175. "funding": [
  6176. {
  6177. "url": "https://symfony.com/sponsor",
  6178. "type": "custom"
  6179. },
  6180. {
  6181. "url": "https://github.com/fabpot",
  6182. "type": "github"
  6183. },
  6184. {
  6185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6186. "type": "tidelift"
  6187. }
  6188. ],
  6189. "time": "2024-06-19T12:35:24+00:00"
  6190. },
  6191. {
  6192. "name": "symfony/process",
  6193. "version": "v6.4.8",
  6194. "source": {
  6195. "type": "git",
  6196. "url": "https://github.com/symfony/process.git",
  6197. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  6198. },
  6199. "dist": {
  6200. "type": "zip",
  6201. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  6202. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  6203. "shasum": ""
  6204. },
  6205. "require": {
  6206. "php": ">=8.1"
  6207. },
  6208. "type": "library",
  6209. "autoload": {
  6210. "psr-4": {
  6211. "Symfony\\Component\\Process\\": ""
  6212. },
  6213. "exclude-from-classmap": [
  6214. "/Tests/"
  6215. ]
  6216. },
  6217. "notification-url": "https://packagist.org/downloads/",
  6218. "license": [
  6219. "MIT"
  6220. ],
  6221. "authors": [
  6222. {
  6223. "name": "Fabien Potencier",
  6224. "email": "fabien@symfony.com"
  6225. },
  6226. {
  6227. "name": "Symfony Community",
  6228. "homepage": "https://symfony.com/contributors"
  6229. }
  6230. ],
  6231. "description": "Executes commands in sub-processes",
  6232. "homepage": "https://symfony.com",
  6233. "support": {
  6234. "source": "https://github.com/symfony/process/tree/v6.4.8"
  6235. },
  6236. "funding": [
  6237. {
  6238. "url": "https://symfony.com/sponsor",
  6239. "type": "custom"
  6240. },
  6241. {
  6242. "url": "https://github.com/fabpot",
  6243. "type": "github"
  6244. },
  6245. {
  6246. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6247. "type": "tidelift"
  6248. }
  6249. ],
  6250. "time": "2024-05-31T14:49:08+00:00"
  6251. },
  6252. {
  6253. "name": "symfony/property-access",
  6254. "version": "v6.4.8",
  6255. "source": {
  6256. "type": "git",
  6257. "url": "https://github.com/symfony/property-access.git",
  6258. "reference": "e4d9b00983612f9c0013ca37c61affdba2dd975a"
  6259. },
  6260. "dist": {
  6261. "type": "zip",
  6262. "url": "https://api.github.com/repos/symfony/property-access/zipball/e4d9b00983612f9c0013ca37c61affdba2dd975a",
  6263. "reference": "e4d9b00983612f9c0013ca37c61affdba2dd975a",
  6264. "shasum": ""
  6265. },
  6266. "require": {
  6267. "php": ">=8.1",
  6268. "symfony/deprecation-contracts": "^2.5|^3",
  6269. "symfony/property-info": "^5.4|^6.0|^7.0"
  6270. },
  6271. "require-dev": {
  6272. "symfony/cache": "^5.4|^6.0|^7.0"
  6273. },
  6274. "type": "library",
  6275. "autoload": {
  6276. "psr-4": {
  6277. "Symfony\\Component\\PropertyAccess\\": ""
  6278. },
  6279. "exclude-from-classmap": [
  6280. "/Tests/"
  6281. ]
  6282. },
  6283. "notification-url": "https://packagist.org/downloads/",
  6284. "license": [
  6285. "MIT"
  6286. ],
  6287. "authors": [
  6288. {
  6289. "name": "Fabien Potencier",
  6290. "email": "fabien@symfony.com"
  6291. },
  6292. {
  6293. "name": "Symfony Community",
  6294. "homepage": "https://symfony.com/contributors"
  6295. }
  6296. ],
  6297. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6298. "homepage": "https://symfony.com",
  6299. "keywords": [
  6300. "access",
  6301. "array",
  6302. "extraction",
  6303. "index",
  6304. "injection",
  6305. "object",
  6306. "property",
  6307. "property-path",
  6308. "reflection"
  6309. ],
  6310. "support": {
  6311. "source": "https://github.com/symfony/property-access/tree/v6.4.8"
  6312. },
  6313. "funding": [
  6314. {
  6315. "url": "https://symfony.com/sponsor",
  6316. "type": "custom"
  6317. },
  6318. {
  6319. "url": "https://github.com/fabpot",
  6320. "type": "github"
  6321. },
  6322. {
  6323. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6324. "type": "tidelift"
  6325. }
  6326. ],
  6327. "time": "2024-05-31T14:49:08+00:00"
  6328. },
  6329. {
  6330. "name": "symfony/property-info",
  6331. "version": "v6.4.10",
  6332. "source": {
  6333. "type": "git",
  6334. "url": "https://github.com/symfony/property-info.git",
  6335. "reference": "edaea9dcc723cb4a0ab6a00f7d6f8c07c0d8ff77"
  6336. },
  6337. "dist": {
  6338. "type": "zip",
  6339. "url": "https://api.github.com/repos/symfony/property-info/zipball/edaea9dcc723cb4a0ab6a00f7d6f8c07c0d8ff77",
  6340. "reference": "edaea9dcc723cb4a0ab6a00f7d6f8c07c0d8ff77",
  6341. "shasum": ""
  6342. },
  6343. "require": {
  6344. "php": ">=8.1",
  6345. "symfony/string": "^5.4|^6.0|^7.0"
  6346. },
  6347. "conflict": {
  6348. "phpdocumentor/reflection-docblock": "<5.2",
  6349. "phpdocumentor/type-resolver": "<1.5.1",
  6350. "symfony/dependency-injection": "<5.4",
  6351. "symfony/serializer": "<6.4"
  6352. },
  6353. "require-dev": {
  6354. "phpdocumentor/reflection-docblock": "^5.2",
  6355. "phpstan/phpdoc-parser": "^1.0",
  6356. "symfony/cache": "^5.4|^6.0|^7.0",
  6357. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6358. "symfony/serializer": "^6.4|^7.0"
  6359. },
  6360. "type": "library",
  6361. "autoload": {
  6362. "psr-4": {
  6363. "Symfony\\Component\\PropertyInfo\\": ""
  6364. },
  6365. "exclude-from-classmap": [
  6366. "/Tests/"
  6367. ]
  6368. },
  6369. "notification-url": "https://packagist.org/downloads/",
  6370. "license": [
  6371. "MIT"
  6372. ],
  6373. "authors": [
  6374. {
  6375. "name": "Kévin Dunglas",
  6376. "email": "dunglas@gmail.com"
  6377. },
  6378. {
  6379. "name": "Symfony Community",
  6380. "homepage": "https://symfony.com/contributors"
  6381. }
  6382. ],
  6383. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6384. "homepage": "https://symfony.com",
  6385. "keywords": [
  6386. "doctrine",
  6387. "phpdoc",
  6388. "property",
  6389. "symfony",
  6390. "type",
  6391. "validator"
  6392. ],
  6393. "support": {
  6394. "source": "https://github.com/symfony/property-info/tree/v6.4.10"
  6395. },
  6396. "funding": [
  6397. {
  6398. "url": "https://symfony.com/sponsor",
  6399. "type": "custom"
  6400. },
  6401. {
  6402. "url": "https://github.com/fabpot",
  6403. "type": "github"
  6404. },
  6405. {
  6406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6407. "type": "tidelift"
  6408. }
  6409. ],
  6410. "time": "2024-07-26T07:32:07+00:00"
  6411. },
  6412. {
  6413. "name": "symfony/proxy-manager-bridge",
  6414. "version": "v6.4.8",
  6415. "source": {
  6416. "type": "git",
  6417. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  6418. "reference": "b8119e0b248ef0711c25cd09acc729102122621c"
  6419. },
  6420. "dist": {
  6421. "type": "zip",
  6422. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/b8119e0b248ef0711c25cd09acc729102122621c",
  6423. "reference": "b8119e0b248ef0711c25cd09acc729102122621c",
  6424. "shasum": ""
  6425. },
  6426. "require": {
  6427. "friendsofphp/proxy-manager-lts": "^1.0.2",
  6428. "php": ">=8.1",
  6429. "symfony/dependency-injection": "^6.3|^7.0",
  6430. "symfony/deprecation-contracts": "^2.5|^3"
  6431. },
  6432. "require-dev": {
  6433. "symfony/config": "^6.1|^7.0"
  6434. },
  6435. "type": "symfony-bridge",
  6436. "autoload": {
  6437. "psr-4": {
  6438. "Symfony\\Bridge\\ProxyManager\\": ""
  6439. },
  6440. "exclude-from-classmap": [
  6441. "/Tests/"
  6442. ]
  6443. },
  6444. "notification-url": "https://packagist.org/downloads/",
  6445. "license": [
  6446. "MIT"
  6447. ],
  6448. "authors": [
  6449. {
  6450. "name": "Fabien Potencier",
  6451. "email": "fabien@symfony.com"
  6452. },
  6453. {
  6454. "name": "Symfony Community",
  6455. "homepage": "https://symfony.com/contributors"
  6456. }
  6457. ],
  6458. "description": "Provides integration for ProxyManager with various Symfony components",
  6459. "homepage": "https://symfony.com",
  6460. "support": {
  6461. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v6.4.8"
  6462. },
  6463. "funding": [
  6464. {
  6465. "url": "https://symfony.com/sponsor",
  6466. "type": "custom"
  6467. },
  6468. {
  6469. "url": "https://github.com/fabpot",
  6470. "type": "github"
  6471. },
  6472. {
  6473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6474. "type": "tidelift"
  6475. }
  6476. ],
  6477. "time": "2024-05-31T14:49:08+00:00"
  6478. },
  6479. {
  6480. "name": "symfony/routing",
  6481. "version": "v6.4.10",
  6482. "source": {
  6483. "type": "git",
  6484. "url": "https://github.com/symfony/routing.git",
  6485. "reference": "aad19fe10753ba842f0d653a8db819c4b3affa87"
  6486. },
  6487. "dist": {
  6488. "type": "zip",
  6489. "url": "https://api.github.com/repos/symfony/routing/zipball/aad19fe10753ba842f0d653a8db819c4b3affa87",
  6490. "reference": "aad19fe10753ba842f0d653a8db819c4b3affa87",
  6491. "shasum": ""
  6492. },
  6493. "require": {
  6494. "php": ">=8.1",
  6495. "symfony/deprecation-contracts": "^2.5|^3"
  6496. },
  6497. "conflict": {
  6498. "doctrine/annotations": "<1.12",
  6499. "symfony/config": "<6.2",
  6500. "symfony/dependency-injection": "<5.4",
  6501. "symfony/yaml": "<5.4"
  6502. },
  6503. "require-dev": {
  6504. "doctrine/annotations": "^1.12|^2",
  6505. "psr/log": "^1|^2|^3",
  6506. "symfony/config": "^6.2|^7.0",
  6507. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6508. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6509. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6510. "symfony/yaml": "^5.4|^6.0|^7.0"
  6511. },
  6512. "type": "library",
  6513. "autoload": {
  6514. "psr-4": {
  6515. "Symfony\\Component\\Routing\\": ""
  6516. },
  6517. "exclude-from-classmap": [
  6518. "/Tests/"
  6519. ]
  6520. },
  6521. "notification-url": "https://packagist.org/downloads/",
  6522. "license": [
  6523. "MIT"
  6524. ],
  6525. "authors": [
  6526. {
  6527. "name": "Fabien Potencier",
  6528. "email": "fabien@symfony.com"
  6529. },
  6530. {
  6531. "name": "Symfony Community",
  6532. "homepage": "https://symfony.com/contributors"
  6533. }
  6534. ],
  6535. "description": "Maps an HTTP request to a set of configuration variables",
  6536. "homepage": "https://symfony.com",
  6537. "keywords": [
  6538. "router",
  6539. "routing",
  6540. "uri",
  6541. "url"
  6542. ],
  6543. "support": {
  6544. "source": "https://github.com/symfony/routing/tree/v6.4.10"
  6545. },
  6546. "funding": [
  6547. {
  6548. "url": "https://symfony.com/sponsor",
  6549. "type": "custom"
  6550. },
  6551. {
  6552. "url": "https://github.com/fabpot",
  6553. "type": "github"
  6554. },
  6555. {
  6556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6557. "type": "tidelift"
  6558. }
  6559. ],
  6560. "time": "2024-07-15T09:26:24+00:00"
  6561. },
  6562. {
  6563. "name": "symfony/runtime",
  6564. "version": "v6.4.8",
  6565. "source": {
  6566. "type": "git",
  6567. "url": "https://github.com/symfony/runtime.git",
  6568. "reference": "b4bfa2fd4cad1fee62f80b3dfe4eb674cc3302a0"
  6569. },
  6570. "dist": {
  6571. "type": "zip",
  6572. "url": "https://api.github.com/repos/symfony/runtime/zipball/b4bfa2fd4cad1fee62f80b3dfe4eb674cc3302a0",
  6573. "reference": "b4bfa2fd4cad1fee62f80b3dfe4eb674cc3302a0",
  6574. "shasum": ""
  6575. },
  6576. "require": {
  6577. "composer-plugin-api": "^1.0|^2.0",
  6578. "php": ">=8.1"
  6579. },
  6580. "conflict": {
  6581. "symfony/dotenv": "<5.4"
  6582. },
  6583. "require-dev": {
  6584. "composer/composer": "^1.0.2|^2.0",
  6585. "symfony/console": "^5.4.9|^6.0.9|^7.0",
  6586. "symfony/dotenv": "^5.4|^6.0|^7.0",
  6587. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6588. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  6589. },
  6590. "type": "composer-plugin",
  6591. "extra": {
  6592. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6593. },
  6594. "autoload": {
  6595. "psr-4": {
  6596. "Symfony\\Component\\Runtime\\": "",
  6597. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6598. },
  6599. "exclude-from-classmap": [
  6600. "/Tests/"
  6601. ]
  6602. },
  6603. "notification-url": "https://packagist.org/downloads/",
  6604. "license": [
  6605. "MIT"
  6606. ],
  6607. "authors": [
  6608. {
  6609. "name": "Nicolas Grekas",
  6610. "email": "p@tchwork.com"
  6611. },
  6612. {
  6613. "name": "Symfony Community",
  6614. "homepage": "https://symfony.com/contributors"
  6615. }
  6616. ],
  6617. "description": "Enables decoupling PHP applications from global state",
  6618. "homepage": "https://symfony.com",
  6619. "keywords": [
  6620. "runtime"
  6621. ],
  6622. "support": {
  6623. "source": "https://github.com/symfony/runtime/tree/v6.4.8"
  6624. },
  6625. "funding": [
  6626. {
  6627. "url": "https://symfony.com/sponsor",
  6628. "type": "custom"
  6629. },
  6630. {
  6631. "url": "https://github.com/fabpot",
  6632. "type": "github"
  6633. },
  6634. {
  6635. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6636. "type": "tidelift"
  6637. }
  6638. ],
  6639. "time": "2024-05-31T14:49:08+00:00"
  6640. },
  6641. {
  6642. "name": "symfony/security-bundle",
  6643. "version": "v6.4.10",
  6644. "source": {
  6645. "type": "git",
  6646. "url": "https://github.com/symfony/security-bundle.git",
  6647. "reference": "50007f4f76632741b62fa9604c5f65807f268b72"
  6648. },
  6649. "dist": {
  6650. "type": "zip",
  6651. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/50007f4f76632741b62fa9604c5f65807f268b72",
  6652. "reference": "50007f4f76632741b62fa9604c5f65807f268b72",
  6653. "shasum": ""
  6654. },
  6655. "require": {
  6656. "composer-runtime-api": ">=2.1",
  6657. "ext-xml": "*",
  6658. "php": ">=8.1",
  6659. "symfony/clock": "^6.3|^7.0",
  6660. "symfony/config": "^6.1|^7.0",
  6661. "symfony/dependency-injection": "^6.2|^7.0",
  6662. "symfony/deprecation-contracts": "^2.5|^3",
  6663. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6664. "symfony/http-foundation": "^6.2|^7.0",
  6665. "symfony/http-kernel": "^6.2",
  6666. "symfony/password-hasher": "^5.4|^6.0|^7.0",
  6667. "symfony/security-core": "^6.2|^7.0",
  6668. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  6669. "symfony/security-http": "^6.3.6|^7.0",
  6670. "symfony/service-contracts": "^2.5|^3"
  6671. },
  6672. "conflict": {
  6673. "symfony/browser-kit": "<5.4",
  6674. "symfony/console": "<5.4",
  6675. "symfony/framework-bundle": "<6.4",
  6676. "symfony/http-client": "<5.4",
  6677. "symfony/ldap": "<5.4",
  6678. "symfony/serializer": "<6.4",
  6679. "symfony/twig-bundle": "<5.4",
  6680. "symfony/validator": "<6.4"
  6681. },
  6682. "require-dev": {
  6683. "symfony/asset": "^5.4|^6.0|^7.0",
  6684. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  6685. "symfony/console": "^5.4|^6.0|^7.0",
  6686. "symfony/css-selector": "^5.4|^6.0|^7.0",
  6687. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  6688. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6689. "symfony/form": "^5.4|^6.0|^7.0",
  6690. "symfony/framework-bundle": "^6.4|^7.0",
  6691. "symfony/http-client": "^5.4|^6.0|^7.0",
  6692. "symfony/ldap": "^5.4|^6.0|^7.0",
  6693. "symfony/process": "^5.4|^6.0|^7.0",
  6694. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  6695. "symfony/serializer": "^6.4|^7.0",
  6696. "symfony/translation": "^5.4|^6.0|^7.0",
  6697. "symfony/twig-bridge": "^5.4|^6.0|^7.0",
  6698. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6699. "symfony/validator": "^6.4|^7.0",
  6700. "symfony/yaml": "^5.4|^6.0|^7.0",
  6701. "twig/twig": "^2.13|^3.0.4",
  6702. "web-token/jwt-checker": "^3.1",
  6703. "web-token/jwt-signature-algorithm-ecdsa": "^3.1",
  6704. "web-token/jwt-signature-algorithm-eddsa": "^3.1",
  6705. "web-token/jwt-signature-algorithm-hmac": "^3.1",
  6706. "web-token/jwt-signature-algorithm-none": "^3.1",
  6707. "web-token/jwt-signature-algorithm-rsa": "^3.1"
  6708. },
  6709. "type": "symfony-bundle",
  6710. "autoload": {
  6711. "psr-4": {
  6712. "Symfony\\Bundle\\SecurityBundle\\": ""
  6713. },
  6714. "exclude-from-classmap": [
  6715. "/Tests/"
  6716. ]
  6717. },
  6718. "notification-url": "https://packagist.org/downloads/",
  6719. "license": [
  6720. "MIT"
  6721. ],
  6722. "authors": [
  6723. {
  6724. "name": "Fabien Potencier",
  6725. "email": "fabien@symfony.com"
  6726. },
  6727. {
  6728. "name": "Symfony Community",
  6729. "homepage": "https://symfony.com/contributors"
  6730. }
  6731. ],
  6732. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6733. "homepage": "https://symfony.com",
  6734. "support": {
  6735. "source": "https://github.com/symfony/security-bundle/tree/v6.4.10"
  6736. },
  6737. "funding": [
  6738. {
  6739. "url": "https://symfony.com/sponsor",
  6740. "type": "custom"
  6741. },
  6742. {
  6743. "url": "https://github.com/fabpot",
  6744. "type": "github"
  6745. },
  6746. {
  6747. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6748. "type": "tidelift"
  6749. }
  6750. ],
  6751. "time": "2024-07-17T10:49:44+00:00"
  6752. },
  6753. {
  6754. "name": "symfony/security-core",
  6755. "version": "v6.4.10",
  6756. "source": {
  6757. "type": "git",
  6758. "url": "https://github.com/symfony/security-core.git",
  6759. "reference": "432dec55da108c471adcf58c351af01372a52164"
  6760. },
  6761. "dist": {
  6762. "type": "zip",
  6763. "url": "https://api.github.com/repos/symfony/security-core/zipball/432dec55da108c471adcf58c351af01372a52164",
  6764. "reference": "432dec55da108c471adcf58c351af01372a52164",
  6765. "shasum": ""
  6766. },
  6767. "require": {
  6768. "php": ">=8.1",
  6769. "symfony/deprecation-contracts": "^2.5|^3",
  6770. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6771. "symfony/password-hasher": "^5.4|^6.0|^7.0",
  6772. "symfony/service-contracts": "^2.5|^3"
  6773. },
  6774. "conflict": {
  6775. "symfony/event-dispatcher": "<5.4",
  6776. "symfony/http-foundation": "<5.4",
  6777. "symfony/ldap": "<5.4",
  6778. "symfony/security-guard": "<5.4",
  6779. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  6780. "symfony/validator": "<5.4"
  6781. },
  6782. "require-dev": {
  6783. "psr/cache": "^1.0|^2.0|^3.0",
  6784. "psr/container": "^1.1|^2.0",
  6785. "psr/log": "^1|^2|^3",
  6786. "symfony/cache": "^5.4|^6.0|^7.0",
  6787. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6788. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6789. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6790. "symfony/ldap": "^5.4|^6.0|^7.0",
  6791. "symfony/string": "^5.4|^6.0|^7.0",
  6792. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  6793. "symfony/validator": "^6.4|^7.0"
  6794. },
  6795. "type": "library",
  6796. "autoload": {
  6797. "psr-4": {
  6798. "Symfony\\Component\\Security\\Core\\": ""
  6799. },
  6800. "exclude-from-classmap": [
  6801. "/Tests/"
  6802. ]
  6803. },
  6804. "notification-url": "https://packagist.org/downloads/",
  6805. "license": [
  6806. "MIT"
  6807. ],
  6808. "authors": [
  6809. {
  6810. "name": "Fabien Potencier",
  6811. "email": "fabien@symfony.com"
  6812. },
  6813. {
  6814. "name": "Symfony Community",
  6815. "homepage": "https://symfony.com/contributors"
  6816. }
  6817. ],
  6818. "description": "Symfony Security Component - Core Library",
  6819. "homepage": "https://symfony.com",
  6820. "support": {
  6821. "source": "https://github.com/symfony/security-core/tree/v6.4.10"
  6822. },
  6823. "funding": [
  6824. {
  6825. "url": "https://symfony.com/sponsor",
  6826. "type": "custom"
  6827. },
  6828. {
  6829. "url": "https://github.com/fabpot",
  6830. "type": "github"
  6831. },
  6832. {
  6833. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6834. "type": "tidelift"
  6835. }
  6836. ],
  6837. "time": "2024-07-26T12:30:32+00:00"
  6838. },
  6839. {
  6840. "name": "symfony/security-csrf",
  6841. "version": "v6.4.8",
  6842. "source": {
  6843. "type": "git",
  6844. "url": "https://github.com/symfony/security-csrf.git",
  6845. "reference": "f46ab02b76311087873257071559edcaf6d7ab99"
  6846. },
  6847. "dist": {
  6848. "type": "zip",
  6849. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/f46ab02b76311087873257071559edcaf6d7ab99",
  6850. "reference": "f46ab02b76311087873257071559edcaf6d7ab99",
  6851. "shasum": ""
  6852. },
  6853. "require": {
  6854. "php": ">=8.1",
  6855. "symfony/security-core": "^5.4|^6.0|^7.0"
  6856. },
  6857. "conflict": {
  6858. "symfony/http-foundation": "<5.4"
  6859. },
  6860. "require-dev": {
  6861. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  6862. },
  6863. "type": "library",
  6864. "autoload": {
  6865. "psr-4": {
  6866. "Symfony\\Component\\Security\\Csrf\\": ""
  6867. },
  6868. "exclude-from-classmap": [
  6869. "/Tests/"
  6870. ]
  6871. },
  6872. "notification-url": "https://packagist.org/downloads/",
  6873. "license": [
  6874. "MIT"
  6875. ],
  6876. "authors": [
  6877. {
  6878. "name": "Fabien Potencier",
  6879. "email": "fabien@symfony.com"
  6880. },
  6881. {
  6882. "name": "Symfony Community",
  6883. "homepage": "https://symfony.com/contributors"
  6884. }
  6885. ],
  6886. "description": "Symfony Security Component - CSRF Library",
  6887. "homepage": "https://symfony.com",
  6888. "support": {
  6889. "source": "https://github.com/symfony/security-csrf/tree/v6.4.8"
  6890. },
  6891. "funding": [
  6892. {
  6893. "url": "https://symfony.com/sponsor",
  6894. "type": "custom"
  6895. },
  6896. {
  6897. "url": "https://github.com/fabpot",
  6898. "type": "github"
  6899. },
  6900. {
  6901. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6902. "type": "tidelift"
  6903. }
  6904. ],
  6905. "time": "2024-05-31T14:49:08+00:00"
  6906. },
  6907. {
  6908. "name": "symfony/security-http",
  6909. "version": "v6.4.9",
  6910. "source": {
  6911. "type": "git",
  6912. "url": "https://github.com/symfony/security-http.git",
  6913. "reference": "8e70f39626ada36c5492c3aff9369c85d2840948"
  6914. },
  6915. "dist": {
  6916. "type": "zip",
  6917. "url": "https://api.github.com/repos/symfony/security-http/zipball/8e70f39626ada36c5492c3aff9369c85d2840948",
  6918. "reference": "8e70f39626ada36c5492c3aff9369c85d2840948",
  6919. "shasum": ""
  6920. },
  6921. "require": {
  6922. "php": ">=8.1",
  6923. "symfony/deprecation-contracts": "^2.5|^3",
  6924. "symfony/http-foundation": "^6.2|^7.0",
  6925. "symfony/http-kernel": "^6.3|^7.0",
  6926. "symfony/polyfill-mbstring": "~1.0",
  6927. "symfony/property-access": "^5.4|^6.0|^7.0",
  6928. "symfony/security-core": "^6.4|^7.0",
  6929. "symfony/service-contracts": "^2.5|^3"
  6930. },
  6931. "conflict": {
  6932. "symfony/clock": "<6.3",
  6933. "symfony/event-dispatcher": "<5.4.9|>=6,<6.0.9",
  6934. "symfony/http-client-contracts": "<3.0",
  6935. "symfony/security-bundle": "<5.4",
  6936. "symfony/security-csrf": "<5.4"
  6937. },
  6938. "require-dev": {
  6939. "psr/log": "^1|^2|^3",
  6940. "symfony/cache": "^5.4|^6.0|^7.0",
  6941. "symfony/clock": "^6.3|^7.0",
  6942. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6943. "symfony/http-client-contracts": "^3.0",
  6944. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  6945. "symfony/routing": "^5.4|^6.0|^7.0",
  6946. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  6947. "symfony/translation": "^5.4|^6.0|^7.0",
  6948. "web-token/jwt-checker": "^3.1",
  6949. "web-token/jwt-signature-algorithm-ecdsa": "^3.1"
  6950. },
  6951. "type": "library",
  6952. "autoload": {
  6953. "psr-4": {
  6954. "Symfony\\Component\\Security\\Http\\": ""
  6955. },
  6956. "exclude-from-classmap": [
  6957. "/Tests/"
  6958. ]
  6959. },
  6960. "notification-url": "https://packagist.org/downloads/",
  6961. "license": [
  6962. "MIT"
  6963. ],
  6964. "authors": [
  6965. {
  6966. "name": "Fabien Potencier",
  6967. "email": "fabien@symfony.com"
  6968. },
  6969. {
  6970. "name": "Symfony Community",
  6971. "homepage": "https://symfony.com/contributors"
  6972. }
  6973. ],
  6974. "description": "Symfony Security Component - HTTP Integration",
  6975. "homepage": "https://symfony.com",
  6976. "support": {
  6977. "source": "https://github.com/symfony/security-http/tree/v6.4.9"
  6978. },
  6979. "funding": [
  6980. {
  6981. "url": "https://symfony.com/sponsor",
  6982. "type": "custom"
  6983. },
  6984. {
  6985. "url": "https://github.com/fabpot",
  6986. "type": "github"
  6987. },
  6988. {
  6989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6990. "type": "tidelift"
  6991. }
  6992. ],
  6993. "time": "2024-06-21T16:04:15+00:00"
  6994. },
  6995. {
  6996. "name": "symfony/serializer",
  6997. "version": "v6.4.10",
  6998. "source": {
  6999. "type": "git",
  7000. "url": "https://github.com/symfony/serializer.git",
  7001. "reference": "9a67fcf320561e96f94d62bbe0e169ac534a5718"
  7002. },
  7003. "dist": {
  7004. "type": "zip",
  7005. "url": "https://api.github.com/repos/symfony/serializer/zipball/9a67fcf320561e96f94d62bbe0e169ac534a5718",
  7006. "reference": "9a67fcf320561e96f94d62bbe0e169ac534a5718",
  7007. "shasum": ""
  7008. },
  7009. "require": {
  7010. "php": ">=8.1",
  7011. "symfony/deprecation-contracts": "^2.5|^3",
  7012. "symfony/polyfill-ctype": "~1.8"
  7013. },
  7014. "conflict": {
  7015. "doctrine/annotations": "<1.12",
  7016. "phpdocumentor/reflection-docblock": "<3.2.2",
  7017. "phpdocumentor/type-resolver": "<1.4.0",
  7018. "symfony/dependency-injection": "<5.4",
  7019. "symfony/property-access": "<5.4",
  7020. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  7021. "symfony/uid": "<5.4",
  7022. "symfony/validator": "<6.4",
  7023. "symfony/yaml": "<5.4"
  7024. },
  7025. "require-dev": {
  7026. "doctrine/annotations": "^1.12|^2",
  7027. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7028. "seld/jsonlint": "^1.10",
  7029. "symfony/cache": "^5.4|^6.0|^7.0",
  7030. "symfony/config": "^5.4|^6.0|^7.0",
  7031. "symfony/console": "^5.4|^6.0|^7.0",
  7032. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7033. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7034. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7035. "symfony/form": "^5.4|^6.0|^7.0",
  7036. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7037. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7038. "symfony/messenger": "^5.4|^6.0|^7.0",
  7039. "symfony/mime": "^5.4|^6.0|^7.0",
  7040. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  7041. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  7042. "symfony/translation-contracts": "^2.5|^3",
  7043. "symfony/uid": "^5.4|^6.0|^7.0",
  7044. "symfony/validator": "^6.4|^7.0",
  7045. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  7046. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  7047. "symfony/yaml": "^5.4|^6.0|^7.0"
  7048. },
  7049. "type": "library",
  7050. "autoload": {
  7051. "psr-4": {
  7052. "Symfony\\Component\\Serializer\\": ""
  7053. },
  7054. "exclude-from-classmap": [
  7055. "/Tests/"
  7056. ]
  7057. },
  7058. "notification-url": "https://packagist.org/downloads/",
  7059. "license": [
  7060. "MIT"
  7061. ],
  7062. "authors": [
  7063. {
  7064. "name": "Fabien Potencier",
  7065. "email": "fabien@symfony.com"
  7066. },
  7067. {
  7068. "name": "Symfony Community",
  7069. "homepage": "https://symfony.com/contributors"
  7070. }
  7071. ],
  7072. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7073. "homepage": "https://symfony.com",
  7074. "support": {
  7075. "source": "https://github.com/symfony/serializer/tree/v6.4.10"
  7076. },
  7077. "funding": [
  7078. {
  7079. "url": "https://symfony.com/sponsor",
  7080. "type": "custom"
  7081. },
  7082. {
  7083. "url": "https://github.com/fabpot",
  7084. "type": "github"
  7085. },
  7086. {
  7087. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7088. "type": "tidelift"
  7089. }
  7090. ],
  7091. "time": "2024-07-26T13:13:26+00:00"
  7092. },
  7093. {
  7094. "name": "symfony/service-contracts",
  7095. "version": "v3.5.0",
  7096. "source": {
  7097. "type": "git",
  7098. "url": "https://github.com/symfony/service-contracts.git",
  7099. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7100. },
  7101. "dist": {
  7102. "type": "zip",
  7103. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7104. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7105. "shasum": ""
  7106. },
  7107. "require": {
  7108. "php": ">=8.1",
  7109. "psr/container": "^1.1|^2.0",
  7110. "symfony/deprecation-contracts": "^2.5|^3"
  7111. },
  7112. "conflict": {
  7113. "ext-psr": "<1.1|>=2"
  7114. },
  7115. "type": "library",
  7116. "extra": {
  7117. "branch-alias": {
  7118. "dev-main": "3.5-dev"
  7119. },
  7120. "thanks": {
  7121. "name": "symfony/contracts",
  7122. "url": "https://github.com/symfony/contracts"
  7123. }
  7124. },
  7125. "autoload": {
  7126. "psr-4": {
  7127. "Symfony\\Contracts\\Service\\": ""
  7128. },
  7129. "exclude-from-classmap": [
  7130. "/Test/"
  7131. ]
  7132. },
  7133. "notification-url": "https://packagist.org/downloads/",
  7134. "license": [
  7135. "MIT"
  7136. ],
  7137. "authors": [
  7138. {
  7139. "name": "Nicolas Grekas",
  7140. "email": "p@tchwork.com"
  7141. },
  7142. {
  7143. "name": "Symfony Community",
  7144. "homepage": "https://symfony.com/contributors"
  7145. }
  7146. ],
  7147. "description": "Generic abstractions related to writing services",
  7148. "homepage": "https://symfony.com",
  7149. "keywords": [
  7150. "abstractions",
  7151. "contracts",
  7152. "decoupling",
  7153. "interfaces",
  7154. "interoperability",
  7155. "standards"
  7156. ],
  7157. "support": {
  7158. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7159. },
  7160. "funding": [
  7161. {
  7162. "url": "https://symfony.com/sponsor",
  7163. "type": "custom"
  7164. },
  7165. {
  7166. "url": "https://github.com/fabpot",
  7167. "type": "github"
  7168. },
  7169. {
  7170. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7171. "type": "tidelift"
  7172. }
  7173. ],
  7174. "time": "2024-04-18T09:32:20+00:00"
  7175. },
  7176. {
  7177. "name": "symfony/stopwatch",
  7178. "version": "v6.4.8",
  7179. "source": {
  7180. "type": "git",
  7181. "url": "https://github.com/symfony/stopwatch.git",
  7182. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  7183. },
  7184. "dist": {
  7185. "type": "zip",
  7186. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  7187. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  7188. "shasum": ""
  7189. },
  7190. "require": {
  7191. "php": ">=8.1",
  7192. "symfony/service-contracts": "^2.5|^3"
  7193. },
  7194. "type": "library",
  7195. "autoload": {
  7196. "psr-4": {
  7197. "Symfony\\Component\\Stopwatch\\": ""
  7198. },
  7199. "exclude-from-classmap": [
  7200. "/Tests/"
  7201. ]
  7202. },
  7203. "notification-url": "https://packagist.org/downloads/",
  7204. "license": [
  7205. "MIT"
  7206. ],
  7207. "authors": [
  7208. {
  7209. "name": "Fabien Potencier",
  7210. "email": "fabien@symfony.com"
  7211. },
  7212. {
  7213. "name": "Symfony Community",
  7214. "homepage": "https://symfony.com/contributors"
  7215. }
  7216. ],
  7217. "description": "Provides a way to profile code",
  7218. "homepage": "https://symfony.com",
  7219. "support": {
  7220. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  7221. },
  7222. "funding": [
  7223. {
  7224. "url": "https://symfony.com/sponsor",
  7225. "type": "custom"
  7226. },
  7227. {
  7228. "url": "https://github.com/fabpot",
  7229. "type": "github"
  7230. },
  7231. {
  7232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7233. "type": "tidelift"
  7234. }
  7235. ],
  7236. "time": "2024-05-31T14:49:08+00:00"
  7237. },
  7238. {
  7239. "name": "symfony/string",
  7240. "version": "v6.4.10",
  7241. "source": {
  7242. "type": "git",
  7243. "url": "https://github.com/symfony/string.git",
  7244. "reference": "ccf9b30251719567bfd46494138327522b9a9446"
  7245. },
  7246. "dist": {
  7247. "type": "zip",
  7248. "url": "https://api.github.com/repos/symfony/string/zipball/ccf9b30251719567bfd46494138327522b9a9446",
  7249. "reference": "ccf9b30251719567bfd46494138327522b9a9446",
  7250. "shasum": ""
  7251. },
  7252. "require": {
  7253. "php": ">=8.1",
  7254. "symfony/polyfill-ctype": "~1.8",
  7255. "symfony/polyfill-intl-grapheme": "~1.0",
  7256. "symfony/polyfill-intl-normalizer": "~1.0",
  7257. "symfony/polyfill-mbstring": "~1.0"
  7258. },
  7259. "conflict": {
  7260. "symfony/translation-contracts": "<2.5"
  7261. },
  7262. "require-dev": {
  7263. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7264. "symfony/http-client": "^5.4|^6.0|^7.0",
  7265. "symfony/intl": "^6.2|^7.0",
  7266. "symfony/translation-contracts": "^2.5|^3.0",
  7267. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7268. },
  7269. "type": "library",
  7270. "autoload": {
  7271. "files": [
  7272. "Resources/functions.php"
  7273. ],
  7274. "psr-4": {
  7275. "Symfony\\Component\\String\\": ""
  7276. },
  7277. "exclude-from-classmap": [
  7278. "/Tests/"
  7279. ]
  7280. },
  7281. "notification-url": "https://packagist.org/downloads/",
  7282. "license": [
  7283. "MIT"
  7284. ],
  7285. "authors": [
  7286. {
  7287. "name": "Nicolas Grekas",
  7288. "email": "p@tchwork.com"
  7289. },
  7290. {
  7291. "name": "Symfony Community",
  7292. "homepage": "https://symfony.com/contributors"
  7293. }
  7294. ],
  7295. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7296. "homepage": "https://symfony.com",
  7297. "keywords": [
  7298. "grapheme",
  7299. "i18n",
  7300. "string",
  7301. "unicode",
  7302. "utf-8",
  7303. "utf8"
  7304. ],
  7305. "support": {
  7306. "source": "https://github.com/symfony/string/tree/v6.4.10"
  7307. },
  7308. "funding": [
  7309. {
  7310. "url": "https://symfony.com/sponsor",
  7311. "type": "custom"
  7312. },
  7313. {
  7314. "url": "https://github.com/fabpot",
  7315. "type": "github"
  7316. },
  7317. {
  7318. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7319. "type": "tidelift"
  7320. }
  7321. ],
  7322. "time": "2024-07-22T10:21:14+00:00"
  7323. },
  7324. {
  7325. "name": "symfony/translation",
  7326. "version": "v6.4.10",
  7327. "source": {
  7328. "type": "git",
  7329. "url": "https://github.com/symfony/translation.git",
  7330. "reference": "94041203f8ac200ae9e7c6a18fa6137814ccecc9"
  7331. },
  7332. "dist": {
  7333. "type": "zip",
  7334. "url": "https://api.github.com/repos/symfony/translation/zipball/94041203f8ac200ae9e7c6a18fa6137814ccecc9",
  7335. "reference": "94041203f8ac200ae9e7c6a18fa6137814ccecc9",
  7336. "shasum": ""
  7337. },
  7338. "require": {
  7339. "php": ">=8.1",
  7340. "symfony/deprecation-contracts": "^2.5|^3",
  7341. "symfony/polyfill-mbstring": "~1.0",
  7342. "symfony/translation-contracts": "^2.5|^3.0"
  7343. },
  7344. "conflict": {
  7345. "symfony/config": "<5.4",
  7346. "symfony/console": "<5.4",
  7347. "symfony/dependency-injection": "<5.4",
  7348. "symfony/http-client-contracts": "<2.5",
  7349. "symfony/http-kernel": "<5.4",
  7350. "symfony/service-contracts": "<2.5",
  7351. "symfony/twig-bundle": "<5.4",
  7352. "symfony/yaml": "<5.4"
  7353. },
  7354. "provide": {
  7355. "symfony/translation-implementation": "2.3|3.0"
  7356. },
  7357. "require-dev": {
  7358. "nikic/php-parser": "^4.18|^5.0",
  7359. "psr/log": "^1|^2|^3",
  7360. "symfony/config": "^5.4|^6.0|^7.0",
  7361. "symfony/console": "^5.4|^6.0|^7.0",
  7362. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7363. "symfony/finder": "^5.4|^6.0|^7.0",
  7364. "symfony/http-client-contracts": "^2.5|^3.0",
  7365. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7366. "symfony/intl": "^5.4|^6.0|^7.0",
  7367. "symfony/polyfill-intl-icu": "^1.21",
  7368. "symfony/routing": "^5.4|^6.0|^7.0",
  7369. "symfony/service-contracts": "^2.5|^3",
  7370. "symfony/yaml": "^5.4|^6.0|^7.0"
  7371. },
  7372. "type": "library",
  7373. "autoload": {
  7374. "files": [
  7375. "Resources/functions.php"
  7376. ],
  7377. "psr-4": {
  7378. "Symfony\\Component\\Translation\\": ""
  7379. },
  7380. "exclude-from-classmap": [
  7381. "/Tests/"
  7382. ]
  7383. },
  7384. "notification-url": "https://packagist.org/downloads/",
  7385. "license": [
  7386. "MIT"
  7387. ],
  7388. "authors": [
  7389. {
  7390. "name": "Fabien Potencier",
  7391. "email": "fabien@symfony.com"
  7392. },
  7393. {
  7394. "name": "Symfony Community",
  7395. "homepage": "https://symfony.com/contributors"
  7396. }
  7397. ],
  7398. "description": "Provides tools to internationalize your application",
  7399. "homepage": "https://symfony.com",
  7400. "support": {
  7401. "source": "https://github.com/symfony/translation/tree/v6.4.10"
  7402. },
  7403. "funding": [
  7404. {
  7405. "url": "https://symfony.com/sponsor",
  7406. "type": "custom"
  7407. },
  7408. {
  7409. "url": "https://github.com/fabpot",
  7410. "type": "github"
  7411. },
  7412. {
  7413. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7414. "type": "tidelift"
  7415. }
  7416. ],
  7417. "time": "2024-07-26T12:30:32+00:00"
  7418. },
  7419. {
  7420. "name": "symfony/translation-contracts",
  7421. "version": "v3.5.0",
  7422. "source": {
  7423. "type": "git",
  7424. "url": "https://github.com/symfony/translation-contracts.git",
  7425. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7426. },
  7427. "dist": {
  7428. "type": "zip",
  7429. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7430. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7431. "shasum": ""
  7432. },
  7433. "require": {
  7434. "php": ">=8.1"
  7435. },
  7436. "type": "library",
  7437. "extra": {
  7438. "branch-alias": {
  7439. "dev-main": "3.5-dev"
  7440. },
  7441. "thanks": {
  7442. "name": "symfony/contracts",
  7443. "url": "https://github.com/symfony/contracts"
  7444. }
  7445. },
  7446. "autoload": {
  7447. "psr-4": {
  7448. "Symfony\\Contracts\\Translation\\": ""
  7449. },
  7450. "exclude-from-classmap": [
  7451. "/Test/"
  7452. ]
  7453. },
  7454. "notification-url": "https://packagist.org/downloads/",
  7455. "license": [
  7456. "MIT"
  7457. ],
  7458. "authors": [
  7459. {
  7460. "name": "Nicolas Grekas",
  7461. "email": "p@tchwork.com"
  7462. },
  7463. {
  7464. "name": "Symfony Community",
  7465. "homepage": "https://symfony.com/contributors"
  7466. }
  7467. ],
  7468. "description": "Generic abstractions related to translation",
  7469. "homepage": "https://symfony.com",
  7470. "keywords": [
  7471. "abstractions",
  7472. "contracts",
  7473. "decoupling",
  7474. "interfaces",
  7475. "interoperability",
  7476. "standards"
  7477. ],
  7478. "support": {
  7479. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7480. },
  7481. "funding": [
  7482. {
  7483. "url": "https://symfony.com/sponsor",
  7484. "type": "custom"
  7485. },
  7486. {
  7487. "url": "https://github.com/fabpot",
  7488. "type": "github"
  7489. },
  7490. {
  7491. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7492. "type": "tidelift"
  7493. }
  7494. ],
  7495. "time": "2024-04-18T09:32:20+00:00"
  7496. },
  7497. {
  7498. "name": "symfony/twig-bridge",
  7499. "version": "v6.4.9",
  7500. "source": {
  7501. "type": "git",
  7502. "url": "https://github.com/symfony/twig-bridge.git",
  7503. "reference": "9bcb26445b9d4ef1087c389234bf33fb00e10ea6"
  7504. },
  7505. "dist": {
  7506. "type": "zip",
  7507. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/9bcb26445b9d4ef1087c389234bf33fb00e10ea6",
  7508. "reference": "9bcb26445b9d4ef1087c389234bf33fb00e10ea6",
  7509. "shasum": ""
  7510. },
  7511. "require": {
  7512. "php": ">=8.1",
  7513. "symfony/deprecation-contracts": "^2.5|^3",
  7514. "symfony/translation-contracts": "^2.5|^3",
  7515. "twig/twig": "^2.13|^3.0.4"
  7516. },
  7517. "conflict": {
  7518. "phpdocumentor/reflection-docblock": "<3.2.2",
  7519. "phpdocumentor/type-resolver": "<1.4.0",
  7520. "symfony/console": "<5.4",
  7521. "symfony/form": "<6.3",
  7522. "symfony/http-foundation": "<5.4",
  7523. "symfony/http-kernel": "<6.4",
  7524. "symfony/mime": "<6.2",
  7525. "symfony/serializer": "<6.4",
  7526. "symfony/translation": "<5.4",
  7527. "symfony/workflow": "<5.4"
  7528. },
  7529. "require-dev": {
  7530. "egulias/email-validator": "^2.1.10|^3|^4",
  7531. "league/html-to-markdown": "^5.0",
  7532. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7533. "symfony/asset": "^5.4|^6.0|^7.0",
  7534. "symfony/asset-mapper": "^6.3|^7.0",
  7535. "symfony/console": "^5.4|^6.0|^7.0",
  7536. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7537. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7538. "symfony/finder": "^5.4|^6.0|^7.0",
  7539. "symfony/form": "^6.4|^7.0",
  7540. "symfony/html-sanitizer": "^6.1|^7.0",
  7541. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7542. "symfony/http-kernel": "^6.4|^7.0",
  7543. "symfony/intl": "^5.4|^6.0|^7.0",
  7544. "symfony/mime": "^6.2|^7.0",
  7545. "symfony/polyfill-intl-icu": "~1.0",
  7546. "symfony/property-info": "^5.4|^6.0|^7.0",
  7547. "symfony/routing": "^5.4|^6.0|^7.0",
  7548. "symfony/security-acl": "^2.8|^3.0",
  7549. "symfony/security-core": "^5.4|^6.0|^7.0",
  7550. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  7551. "symfony/security-http": "^5.4|^6.0|^7.0",
  7552. "symfony/serializer": "^6.4.3|^7.0.3",
  7553. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7554. "symfony/translation": "^6.1|^7.0",
  7555. "symfony/web-link": "^5.4|^6.0|^7.0",
  7556. "symfony/workflow": "^5.4|^6.0|^7.0",
  7557. "symfony/yaml": "^5.4|^6.0|^7.0",
  7558. "twig/cssinliner-extra": "^2.12|^3",
  7559. "twig/inky-extra": "^2.12|^3",
  7560. "twig/markdown-extra": "^2.12|^3"
  7561. },
  7562. "type": "symfony-bridge",
  7563. "autoload": {
  7564. "psr-4": {
  7565. "Symfony\\Bridge\\Twig\\": ""
  7566. },
  7567. "exclude-from-classmap": [
  7568. "/Tests/"
  7569. ]
  7570. },
  7571. "notification-url": "https://packagist.org/downloads/",
  7572. "license": [
  7573. "MIT"
  7574. ],
  7575. "authors": [
  7576. {
  7577. "name": "Fabien Potencier",
  7578. "email": "fabien@symfony.com"
  7579. },
  7580. {
  7581. "name": "Symfony Community",
  7582. "homepage": "https://symfony.com/contributors"
  7583. }
  7584. ],
  7585. "description": "Provides integration for Twig with various Symfony components",
  7586. "homepage": "https://symfony.com",
  7587. "support": {
  7588. "source": "https://github.com/symfony/twig-bridge/tree/v6.4.9"
  7589. },
  7590. "funding": [
  7591. {
  7592. "url": "https://symfony.com/sponsor",
  7593. "type": "custom"
  7594. },
  7595. {
  7596. "url": "https://github.com/fabpot",
  7597. "type": "github"
  7598. },
  7599. {
  7600. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7601. "type": "tidelift"
  7602. }
  7603. ],
  7604. "time": "2024-06-21T16:04:15+00:00"
  7605. },
  7606. {
  7607. "name": "symfony/twig-bundle",
  7608. "version": "v6.4.8",
  7609. "source": {
  7610. "type": "git",
  7611. "url": "https://github.com/symfony/twig-bundle.git",
  7612. "reference": "ef17bc8fc2cb2376b235cd1b98f0275a78c5ba65"
  7613. },
  7614. "dist": {
  7615. "type": "zip",
  7616. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/ef17bc8fc2cb2376b235cd1b98f0275a78c5ba65",
  7617. "reference": "ef17bc8fc2cb2376b235cd1b98f0275a78c5ba65",
  7618. "shasum": ""
  7619. },
  7620. "require": {
  7621. "composer-runtime-api": ">=2.1",
  7622. "php": ">=8.1",
  7623. "symfony/config": "^6.1|^7.0",
  7624. "symfony/dependency-injection": "^6.1|^7.0",
  7625. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7626. "symfony/http-kernel": "^6.2",
  7627. "symfony/twig-bridge": "^6.4",
  7628. "twig/twig": "^2.13|^3.0.4"
  7629. },
  7630. "conflict": {
  7631. "symfony/framework-bundle": "<5.4",
  7632. "symfony/translation": "<5.4"
  7633. },
  7634. "require-dev": {
  7635. "symfony/asset": "^5.4|^6.0|^7.0",
  7636. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7637. "symfony/finder": "^5.4|^6.0|^7.0",
  7638. "symfony/form": "^5.4|^6.0|^7.0",
  7639. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7640. "symfony/routing": "^5.4|^6.0|^7.0",
  7641. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7642. "symfony/translation": "^5.4|^6.0|^7.0",
  7643. "symfony/web-link": "^5.4|^6.0|^7.0",
  7644. "symfony/yaml": "^5.4|^6.0|^7.0"
  7645. },
  7646. "type": "symfony-bundle",
  7647. "autoload": {
  7648. "psr-4": {
  7649. "Symfony\\Bundle\\TwigBundle\\": ""
  7650. },
  7651. "exclude-from-classmap": [
  7652. "/Tests/"
  7653. ]
  7654. },
  7655. "notification-url": "https://packagist.org/downloads/",
  7656. "license": [
  7657. "MIT"
  7658. ],
  7659. "authors": [
  7660. {
  7661. "name": "Fabien Potencier",
  7662. "email": "fabien@symfony.com"
  7663. },
  7664. {
  7665. "name": "Symfony Community",
  7666. "homepage": "https://symfony.com/contributors"
  7667. }
  7668. ],
  7669. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7670. "homepage": "https://symfony.com",
  7671. "support": {
  7672. "source": "https://github.com/symfony/twig-bundle/tree/v6.4.8"
  7673. },
  7674. "funding": [
  7675. {
  7676. "url": "https://symfony.com/sponsor",
  7677. "type": "custom"
  7678. },
  7679. {
  7680. "url": "https://github.com/fabpot",
  7681. "type": "github"
  7682. },
  7683. {
  7684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7685. "type": "tidelift"
  7686. }
  7687. ],
  7688. "time": "2024-05-31T14:49:08+00:00"
  7689. },
  7690. {
  7691. "name": "symfony/validator",
  7692. "version": "v6.4.10",
  7693. "source": {
  7694. "type": "git",
  7695. "url": "https://github.com/symfony/validator.git",
  7696. "reference": "bcf939a9d1acd7d2912e9474c0c3d7840a03cbcd"
  7697. },
  7698. "dist": {
  7699. "type": "zip",
  7700. "url": "https://api.github.com/repos/symfony/validator/zipball/bcf939a9d1acd7d2912e9474c0c3d7840a03cbcd",
  7701. "reference": "bcf939a9d1acd7d2912e9474c0c3d7840a03cbcd",
  7702. "shasum": ""
  7703. },
  7704. "require": {
  7705. "php": ">=8.1",
  7706. "symfony/deprecation-contracts": "^2.5|^3",
  7707. "symfony/polyfill-ctype": "~1.8",
  7708. "symfony/polyfill-mbstring": "~1.0",
  7709. "symfony/polyfill-php83": "^1.27",
  7710. "symfony/translation-contracts": "^2.5|^3"
  7711. },
  7712. "conflict": {
  7713. "doctrine/annotations": "<1.13",
  7714. "doctrine/lexer": "<1.1",
  7715. "symfony/dependency-injection": "<5.4",
  7716. "symfony/expression-language": "<5.4",
  7717. "symfony/http-kernel": "<5.4",
  7718. "symfony/intl": "<5.4",
  7719. "symfony/property-info": "<5.4",
  7720. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  7721. "symfony/yaml": "<5.4"
  7722. },
  7723. "require-dev": {
  7724. "doctrine/annotations": "^1.13|^2",
  7725. "egulias/email-validator": "^2.1.10|^3|^4",
  7726. "symfony/cache": "^5.4|^6.0|^7.0",
  7727. "symfony/config": "^5.4|^6.0|^7.0",
  7728. "symfony/console": "^5.4|^6.0|^7.0",
  7729. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7730. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7731. "symfony/finder": "^5.4|^6.0|^7.0",
  7732. "symfony/http-client": "^5.4|^6.0|^7.0",
  7733. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7734. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7735. "symfony/intl": "^5.4|^6.0|^7.0",
  7736. "symfony/mime": "^5.4|^6.0|^7.0",
  7737. "symfony/property-access": "^5.4|^6.0|^7.0",
  7738. "symfony/property-info": "^5.4|^6.0|^7.0",
  7739. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  7740. "symfony/yaml": "^5.4|^6.0|^7.0"
  7741. },
  7742. "type": "library",
  7743. "autoload": {
  7744. "psr-4": {
  7745. "Symfony\\Component\\Validator\\": ""
  7746. },
  7747. "exclude-from-classmap": [
  7748. "/Tests/",
  7749. "/Resources/bin/"
  7750. ]
  7751. },
  7752. "notification-url": "https://packagist.org/downloads/",
  7753. "license": [
  7754. "MIT"
  7755. ],
  7756. "authors": [
  7757. {
  7758. "name": "Fabien Potencier",
  7759. "email": "fabien@symfony.com"
  7760. },
  7761. {
  7762. "name": "Symfony Community",
  7763. "homepage": "https://symfony.com/contributors"
  7764. }
  7765. ],
  7766. "description": "Provides tools to validate values",
  7767. "homepage": "https://symfony.com",
  7768. "support": {
  7769. "source": "https://github.com/symfony/validator/tree/v6.4.10"
  7770. },
  7771. "funding": [
  7772. {
  7773. "url": "https://symfony.com/sponsor",
  7774. "type": "custom"
  7775. },
  7776. {
  7777. "url": "https://github.com/fabpot",
  7778. "type": "github"
  7779. },
  7780. {
  7781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7782. "type": "tidelift"
  7783. }
  7784. ],
  7785. "time": "2024-07-26T12:30:32+00:00"
  7786. },
  7787. {
  7788. "name": "symfony/var-dumper",
  7789. "version": "v6.4.10",
  7790. "source": {
  7791. "type": "git",
  7792. "url": "https://github.com/symfony/var-dumper.git",
  7793. "reference": "a71cc3374f5fb9759da1961d28c452373b343dd4"
  7794. },
  7795. "dist": {
  7796. "type": "zip",
  7797. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a71cc3374f5fb9759da1961d28c452373b343dd4",
  7798. "reference": "a71cc3374f5fb9759da1961d28c452373b343dd4",
  7799. "shasum": ""
  7800. },
  7801. "require": {
  7802. "php": ">=8.1",
  7803. "symfony/deprecation-contracts": "^2.5|^3",
  7804. "symfony/polyfill-mbstring": "~1.0"
  7805. },
  7806. "conflict": {
  7807. "symfony/console": "<5.4"
  7808. },
  7809. "require-dev": {
  7810. "ext-iconv": "*",
  7811. "symfony/console": "^5.4|^6.0|^7.0",
  7812. "symfony/error-handler": "^6.3|^7.0",
  7813. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7814. "symfony/process": "^5.4|^6.0|^7.0",
  7815. "symfony/uid": "^5.4|^6.0|^7.0",
  7816. "twig/twig": "^2.13|^3.0.4"
  7817. },
  7818. "bin": [
  7819. "Resources/bin/var-dump-server"
  7820. ],
  7821. "type": "library",
  7822. "autoload": {
  7823. "files": [
  7824. "Resources/functions/dump.php"
  7825. ],
  7826. "psr-4": {
  7827. "Symfony\\Component\\VarDumper\\": ""
  7828. },
  7829. "exclude-from-classmap": [
  7830. "/Tests/"
  7831. ]
  7832. },
  7833. "notification-url": "https://packagist.org/downloads/",
  7834. "license": [
  7835. "MIT"
  7836. ],
  7837. "authors": [
  7838. {
  7839. "name": "Nicolas Grekas",
  7840. "email": "p@tchwork.com"
  7841. },
  7842. {
  7843. "name": "Symfony Community",
  7844. "homepage": "https://symfony.com/contributors"
  7845. }
  7846. ],
  7847. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7848. "homepage": "https://symfony.com",
  7849. "keywords": [
  7850. "debug",
  7851. "dump"
  7852. ],
  7853. "support": {
  7854. "source": "https://github.com/symfony/var-dumper/tree/v6.4.10"
  7855. },
  7856. "funding": [
  7857. {
  7858. "url": "https://symfony.com/sponsor",
  7859. "type": "custom"
  7860. },
  7861. {
  7862. "url": "https://github.com/fabpot",
  7863. "type": "github"
  7864. },
  7865. {
  7866. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7867. "type": "tidelift"
  7868. }
  7869. ],
  7870. "time": "2024-07-26T12:30:32+00:00"
  7871. },
  7872. {
  7873. "name": "symfony/var-exporter",
  7874. "version": "v6.4.9",
  7875. "source": {
  7876. "type": "git",
  7877. "url": "https://github.com/symfony/var-exporter.git",
  7878. "reference": "f9a060622e0d93777b7f8687ec4860191e16802e"
  7879. },
  7880. "dist": {
  7881. "type": "zip",
  7882. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/f9a060622e0d93777b7f8687ec4860191e16802e",
  7883. "reference": "f9a060622e0d93777b7f8687ec4860191e16802e",
  7884. "shasum": ""
  7885. },
  7886. "require": {
  7887. "php": ">=8.1",
  7888. "symfony/deprecation-contracts": "^2.5|^3"
  7889. },
  7890. "require-dev": {
  7891. "symfony/property-access": "^6.4|^7.0",
  7892. "symfony/serializer": "^6.4|^7.0",
  7893. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7894. },
  7895. "type": "library",
  7896. "autoload": {
  7897. "psr-4": {
  7898. "Symfony\\Component\\VarExporter\\": ""
  7899. },
  7900. "exclude-from-classmap": [
  7901. "/Tests/"
  7902. ]
  7903. },
  7904. "notification-url": "https://packagist.org/downloads/",
  7905. "license": [
  7906. "MIT"
  7907. ],
  7908. "authors": [
  7909. {
  7910. "name": "Nicolas Grekas",
  7911. "email": "p@tchwork.com"
  7912. },
  7913. {
  7914. "name": "Symfony Community",
  7915. "homepage": "https://symfony.com/contributors"
  7916. }
  7917. ],
  7918. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7919. "homepage": "https://symfony.com",
  7920. "keywords": [
  7921. "clone",
  7922. "construct",
  7923. "export",
  7924. "hydrate",
  7925. "instantiate",
  7926. "lazy-loading",
  7927. "proxy",
  7928. "serialize"
  7929. ],
  7930. "support": {
  7931. "source": "https://github.com/symfony/var-exporter/tree/v6.4.9"
  7932. },
  7933. "funding": [
  7934. {
  7935. "url": "https://symfony.com/sponsor",
  7936. "type": "custom"
  7937. },
  7938. {
  7939. "url": "https://github.com/fabpot",
  7940. "type": "github"
  7941. },
  7942. {
  7943. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7944. "type": "tidelift"
  7945. }
  7946. ],
  7947. "time": "2024-06-24T15:53:56+00:00"
  7948. },
  7949. {
  7950. "name": "symfony/web-link",
  7951. "version": "v6.4.8",
  7952. "source": {
  7953. "type": "git",
  7954. "url": "https://github.com/symfony/web-link.git",
  7955. "reference": "304c67cefe7128ea3957e9bb1ac6ce08a90a635b"
  7956. },
  7957. "dist": {
  7958. "type": "zip",
  7959. "url": "https://api.github.com/repos/symfony/web-link/zipball/304c67cefe7128ea3957e9bb1ac6ce08a90a635b",
  7960. "reference": "304c67cefe7128ea3957e9bb1ac6ce08a90a635b",
  7961. "shasum": ""
  7962. },
  7963. "require": {
  7964. "php": ">=8.1",
  7965. "psr/link": "^1.1|^2.0"
  7966. },
  7967. "conflict": {
  7968. "symfony/http-kernel": "<5.4"
  7969. },
  7970. "provide": {
  7971. "psr/link-implementation": "1.0|2.0"
  7972. },
  7973. "require-dev": {
  7974. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  7975. },
  7976. "type": "library",
  7977. "autoload": {
  7978. "psr-4": {
  7979. "Symfony\\Component\\WebLink\\": ""
  7980. },
  7981. "exclude-from-classmap": [
  7982. "/Tests/"
  7983. ]
  7984. },
  7985. "notification-url": "https://packagist.org/downloads/",
  7986. "license": [
  7987. "MIT"
  7988. ],
  7989. "authors": [
  7990. {
  7991. "name": "Kévin Dunglas",
  7992. "email": "dunglas@gmail.com"
  7993. },
  7994. {
  7995. "name": "Symfony Community",
  7996. "homepage": "https://symfony.com/contributors"
  7997. }
  7998. ],
  7999. "description": "Manages links between resources",
  8000. "homepage": "https://symfony.com",
  8001. "keywords": [
  8002. "dns-prefetch",
  8003. "http",
  8004. "http2",
  8005. "link",
  8006. "performance",
  8007. "prefetch",
  8008. "preload",
  8009. "prerender",
  8010. "psr13",
  8011. "push"
  8012. ],
  8013. "support": {
  8014. "source": "https://github.com/symfony/web-link/tree/v6.4.8"
  8015. },
  8016. "funding": [
  8017. {
  8018. "url": "https://symfony.com/sponsor",
  8019. "type": "custom"
  8020. },
  8021. {
  8022. "url": "https://github.com/fabpot",
  8023. "type": "github"
  8024. },
  8025. {
  8026. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8027. "type": "tidelift"
  8028. }
  8029. ],
  8030. "time": "2024-05-31T14:49:08+00:00"
  8031. },
  8032. {
  8033. "name": "symfony/webpack-encore-bundle",
  8034. "version": "v1.17.2",
  8035. "source": {
  8036. "type": "git",
  8037. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  8038. "reference": "471ebbc03072dad6e31840dc317bc634a32785f5"
  8039. },
  8040. "dist": {
  8041. "type": "zip",
  8042. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/471ebbc03072dad6e31840dc317bc634a32785f5",
  8043. "reference": "471ebbc03072dad6e31840dc317bc634a32785f5",
  8044. "shasum": ""
  8045. },
  8046. "require": {
  8047. "php": ">=7.1.3",
  8048. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  8049. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  8050. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  8051. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  8052. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  8053. "symfony/polyfill-php80": "^1.25.0",
  8054. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  8055. },
  8056. "require-dev": {
  8057. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  8058. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  8059. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  8060. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  8061. },
  8062. "type": "symfony-bundle",
  8063. "extra": {
  8064. "thanks": {
  8065. "name": "symfony/webpack-encore",
  8066. "url": "https://github.com/symfony/webpack-encore"
  8067. }
  8068. },
  8069. "autoload": {
  8070. "psr-4": {
  8071. "Symfony\\WebpackEncoreBundle\\": "src"
  8072. }
  8073. },
  8074. "notification-url": "https://packagist.org/downloads/",
  8075. "license": [
  8076. "MIT"
  8077. ],
  8078. "authors": [
  8079. {
  8080. "name": "Symfony Community",
  8081. "homepage": "https://symfony.com/contributors"
  8082. }
  8083. ],
  8084. "description": "Integration with your Symfony app & Webpack Encore!",
  8085. "support": {
  8086. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  8087. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.17.2"
  8088. },
  8089. "funding": [
  8090. {
  8091. "url": "https://symfony.com/sponsor",
  8092. "type": "custom"
  8093. },
  8094. {
  8095. "url": "https://github.com/fabpot",
  8096. "type": "github"
  8097. },
  8098. {
  8099. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8100. "type": "tidelift"
  8101. }
  8102. ],
  8103. "time": "2023-09-26T14:36:28+00:00"
  8104. },
  8105. {
  8106. "name": "symfony/yaml",
  8107. "version": "v6.4.8",
  8108. "source": {
  8109. "type": "git",
  8110. "url": "https://github.com/symfony/yaml.git",
  8111. "reference": "52903de178d542850f6f341ba92995d3d63e60c9"
  8112. },
  8113. "dist": {
  8114. "type": "zip",
  8115. "url": "https://api.github.com/repos/symfony/yaml/zipball/52903de178d542850f6f341ba92995d3d63e60c9",
  8116. "reference": "52903de178d542850f6f341ba92995d3d63e60c9",
  8117. "shasum": ""
  8118. },
  8119. "require": {
  8120. "php": ">=8.1",
  8121. "symfony/deprecation-contracts": "^2.5|^3",
  8122. "symfony/polyfill-ctype": "^1.8"
  8123. },
  8124. "conflict": {
  8125. "symfony/console": "<5.4"
  8126. },
  8127. "require-dev": {
  8128. "symfony/console": "^5.4|^6.0|^7.0"
  8129. },
  8130. "bin": [
  8131. "Resources/bin/yaml-lint"
  8132. ],
  8133. "type": "library",
  8134. "autoload": {
  8135. "psr-4": {
  8136. "Symfony\\Component\\Yaml\\": ""
  8137. },
  8138. "exclude-from-classmap": [
  8139. "/Tests/"
  8140. ]
  8141. },
  8142. "notification-url": "https://packagist.org/downloads/",
  8143. "license": [
  8144. "MIT"
  8145. ],
  8146. "authors": [
  8147. {
  8148. "name": "Fabien Potencier",
  8149. "email": "fabien@symfony.com"
  8150. },
  8151. {
  8152. "name": "Symfony Community",
  8153. "homepage": "https://symfony.com/contributors"
  8154. }
  8155. ],
  8156. "description": "Loads and dumps YAML files",
  8157. "homepage": "https://symfony.com",
  8158. "support": {
  8159. "source": "https://github.com/symfony/yaml/tree/v6.4.8"
  8160. },
  8161. "funding": [
  8162. {
  8163. "url": "https://symfony.com/sponsor",
  8164. "type": "custom"
  8165. },
  8166. {
  8167. "url": "https://github.com/fabpot",
  8168. "type": "github"
  8169. },
  8170. {
  8171. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8172. "type": "tidelift"
  8173. }
  8174. ],
  8175. "time": "2024-05-31T14:49:08+00:00"
  8176. },
  8177. {
  8178. "name": "twig/extra-bundle",
  8179. "version": "v3.10.0",
  8180. "source": {
  8181. "type": "git",
  8182. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8183. "reference": "cdc6e23aeb7f4953c1039568c3439aab60c56454"
  8184. },
  8185. "dist": {
  8186. "type": "zip",
  8187. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/cdc6e23aeb7f4953c1039568c3439aab60c56454",
  8188. "reference": "cdc6e23aeb7f4953c1039568c3439aab60c56454",
  8189. "shasum": ""
  8190. },
  8191. "require": {
  8192. "php": ">=7.2.5",
  8193. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  8194. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  8195. "twig/twig": "^3.0"
  8196. },
  8197. "require-dev": {
  8198. "league/commonmark": "^1.0|^2.0",
  8199. "symfony/phpunit-bridge": "^6.4|^7.0",
  8200. "twig/cache-extra": "^3.0",
  8201. "twig/cssinliner-extra": "^3.0",
  8202. "twig/html-extra": "^3.0",
  8203. "twig/inky-extra": "^3.0",
  8204. "twig/intl-extra": "^3.0",
  8205. "twig/markdown-extra": "^3.0",
  8206. "twig/string-extra": "^3.0"
  8207. },
  8208. "type": "symfony-bundle",
  8209. "autoload": {
  8210. "psr-4": {
  8211. "Twig\\Extra\\TwigExtraBundle\\": ""
  8212. },
  8213. "exclude-from-classmap": [
  8214. "/Tests/"
  8215. ]
  8216. },
  8217. "notification-url": "https://packagist.org/downloads/",
  8218. "license": [
  8219. "MIT"
  8220. ],
  8221. "authors": [
  8222. {
  8223. "name": "Fabien Potencier",
  8224. "email": "fabien@symfony.com",
  8225. "homepage": "http://fabien.potencier.org",
  8226. "role": "Lead Developer"
  8227. }
  8228. ],
  8229. "description": "A Symfony bundle for extra Twig extensions",
  8230. "homepage": "https://twig.symfony.com",
  8231. "keywords": [
  8232. "bundle",
  8233. "extra",
  8234. "twig"
  8235. ],
  8236. "support": {
  8237. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.10.0"
  8238. },
  8239. "funding": [
  8240. {
  8241. "url": "https://github.com/fabpot",
  8242. "type": "github"
  8243. },
  8244. {
  8245. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8246. "type": "tidelift"
  8247. }
  8248. ],
  8249. "time": "2024-05-11T07:35:57+00:00"
  8250. },
  8251. {
  8252. "name": "twig/markdown-extra",
  8253. "version": "v3.10.0",
  8254. "source": {
  8255. "type": "git",
  8256. "url": "https://github.com/twigphp/markdown-extra.git",
  8257. "reference": "e4bf2419df819dcf9dc7a0b25dd8cd1092cbd86d"
  8258. },
  8259. "dist": {
  8260. "type": "zip",
  8261. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/e4bf2419df819dcf9dc7a0b25dd8cd1092cbd86d",
  8262. "reference": "e4bf2419df819dcf9dc7a0b25dd8cd1092cbd86d",
  8263. "shasum": ""
  8264. },
  8265. "require": {
  8266. "php": ">=7.2.5",
  8267. "symfony/deprecation-contracts": "^2.5|^3",
  8268. "twig/twig": "^3.0"
  8269. },
  8270. "require-dev": {
  8271. "erusev/parsedown": "^1.7",
  8272. "league/commonmark": "^1.0|^2.0",
  8273. "league/html-to-markdown": "^4.8|^5.0",
  8274. "michelf/php-markdown": "^1.8|^2.0",
  8275. "symfony/phpunit-bridge": "^6.4|^7.0"
  8276. },
  8277. "type": "library",
  8278. "autoload": {
  8279. "files": [
  8280. "Resources/functions.php"
  8281. ],
  8282. "psr-4": {
  8283. "Twig\\Extra\\Markdown\\": ""
  8284. },
  8285. "exclude-from-classmap": [
  8286. "/Tests/"
  8287. ]
  8288. },
  8289. "notification-url": "https://packagist.org/downloads/",
  8290. "license": [
  8291. "MIT"
  8292. ],
  8293. "authors": [
  8294. {
  8295. "name": "Fabien Potencier",
  8296. "email": "fabien@symfony.com",
  8297. "homepage": "http://fabien.potencier.org",
  8298. "role": "Lead Developer"
  8299. }
  8300. ],
  8301. "description": "A Twig extension for Markdown",
  8302. "homepage": "https://twig.symfony.com",
  8303. "keywords": [
  8304. "html",
  8305. "markdown",
  8306. "twig"
  8307. ],
  8308. "support": {
  8309. "source": "https://github.com/twigphp/markdown-extra/tree/v3.10.0"
  8310. },
  8311. "funding": [
  8312. {
  8313. "url": "https://github.com/fabpot",
  8314. "type": "github"
  8315. },
  8316. {
  8317. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8318. "type": "tidelift"
  8319. }
  8320. ],
  8321. "time": "2024-05-11T07:35:57+00:00"
  8322. },
  8323. {
  8324. "name": "twig/twig",
  8325. "version": "v3.10.3",
  8326. "source": {
  8327. "type": "git",
  8328. "url": "https://github.com/twigphp/Twig.git",
  8329. "reference": "67f29781ffafa520b0bbfbd8384674b42db04572"
  8330. },
  8331. "dist": {
  8332. "type": "zip",
  8333. "url": "https://api.github.com/repos/twigphp/Twig/zipball/67f29781ffafa520b0bbfbd8384674b42db04572",
  8334. "reference": "67f29781ffafa520b0bbfbd8384674b42db04572",
  8335. "shasum": ""
  8336. },
  8337. "require": {
  8338. "php": ">=7.2.5",
  8339. "symfony/deprecation-contracts": "^2.5|^3",
  8340. "symfony/polyfill-ctype": "^1.8",
  8341. "symfony/polyfill-mbstring": "^1.3",
  8342. "symfony/polyfill-php80": "^1.22"
  8343. },
  8344. "require-dev": {
  8345. "psr/container": "^1.0|^2.0",
  8346. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8347. },
  8348. "type": "library",
  8349. "autoload": {
  8350. "files": [
  8351. "src/Resources/core.php",
  8352. "src/Resources/debug.php",
  8353. "src/Resources/escaper.php",
  8354. "src/Resources/string_loader.php"
  8355. ],
  8356. "psr-4": {
  8357. "Twig\\": "src/"
  8358. }
  8359. },
  8360. "notification-url": "https://packagist.org/downloads/",
  8361. "license": [
  8362. "BSD-3-Clause"
  8363. ],
  8364. "authors": [
  8365. {
  8366. "name": "Fabien Potencier",
  8367. "email": "fabien@symfony.com",
  8368. "homepage": "http://fabien.potencier.org",
  8369. "role": "Lead Developer"
  8370. },
  8371. {
  8372. "name": "Twig Team",
  8373. "role": "Contributors"
  8374. },
  8375. {
  8376. "name": "Armin Ronacher",
  8377. "email": "armin.ronacher@active-4.com",
  8378. "role": "Project Founder"
  8379. }
  8380. ],
  8381. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8382. "homepage": "https://twig.symfony.com",
  8383. "keywords": [
  8384. "templating"
  8385. ],
  8386. "support": {
  8387. "issues": "https://github.com/twigphp/Twig/issues",
  8388. "source": "https://github.com/twigphp/Twig/tree/v3.10.3"
  8389. },
  8390. "funding": [
  8391. {
  8392. "url": "https://github.com/fabpot",
  8393. "type": "github"
  8394. },
  8395. {
  8396. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8397. "type": "tidelift"
  8398. }
  8399. ],
  8400. "time": "2024-05-16T10:04:27+00:00"
  8401. },
  8402. {
  8403. "name": "webmozart/assert",
  8404. "version": "1.11.0",
  8405. "source": {
  8406. "type": "git",
  8407. "url": "https://github.com/webmozarts/assert.git",
  8408. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8409. },
  8410. "dist": {
  8411. "type": "zip",
  8412. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8413. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8414. "shasum": ""
  8415. },
  8416. "require": {
  8417. "ext-ctype": "*",
  8418. "php": "^7.2 || ^8.0"
  8419. },
  8420. "conflict": {
  8421. "phpstan/phpstan": "<0.12.20",
  8422. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8423. },
  8424. "require-dev": {
  8425. "phpunit/phpunit": "^8.5.13"
  8426. },
  8427. "type": "library",
  8428. "extra": {
  8429. "branch-alias": {
  8430. "dev-master": "1.10-dev"
  8431. }
  8432. },
  8433. "autoload": {
  8434. "psr-4": {
  8435. "Webmozart\\Assert\\": "src/"
  8436. }
  8437. },
  8438. "notification-url": "https://packagist.org/downloads/",
  8439. "license": [
  8440. "MIT"
  8441. ],
  8442. "authors": [
  8443. {
  8444. "name": "Bernhard Schussek",
  8445. "email": "bschussek@gmail.com"
  8446. }
  8447. ],
  8448. "description": "Assertions to validate method input/output with nice error messages.",
  8449. "keywords": [
  8450. "assert",
  8451. "check",
  8452. "validate"
  8453. ],
  8454. "support": {
  8455. "issues": "https://github.com/webmozarts/assert/issues",
  8456. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8457. },
  8458. "time": "2022-06-03T18:03:27+00:00"
  8459. }
  8460. ],
  8461. "packages-dev": [
  8462. {
  8463. "name": "myclabs/deep-copy",
  8464. "version": "1.12.0",
  8465. "source": {
  8466. "type": "git",
  8467. "url": "https://github.com/myclabs/DeepCopy.git",
  8468. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  8469. },
  8470. "dist": {
  8471. "type": "zip",
  8472. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8473. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8474. "shasum": ""
  8475. },
  8476. "require": {
  8477. "php": "^7.1 || ^8.0"
  8478. },
  8479. "conflict": {
  8480. "doctrine/collections": "<1.6.8",
  8481. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8482. },
  8483. "require-dev": {
  8484. "doctrine/collections": "^1.6.8",
  8485. "doctrine/common": "^2.13.3 || ^3.2.2",
  8486. "phpspec/prophecy": "^1.10",
  8487. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8488. },
  8489. "type": "library",
  8490. "autoload": {
  8491. "files": [
  8492. "src/DeepCopy/deep_copy.php"
  8493. ],
  8494. "psr-4": {
  8495. "DeepCopy\\": "src/DeepCopy/"
  8496. }
  8497. },
  8498. "notification-url": "https://packagist.org/downloads/",
  8499. "license": [
  8500. "MIT"
  8501. ],
  8502. "description": "Create deep copies (clones) of your objects",
  8503. "keywords": [
  8504. "clone",
  8505. "copy",
  8506. "duplicate",
  8507. "object",
  8508. "object graph"
  8509. ],
  8510. "support": {
  8511. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8512. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  8513. },
  8514. "funding": [
  8515. {
  8516. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8517. "type": "tidelift"
  8518. }
  8519. ],
  8520. "time": "2024-06-12T14:39:25+00:00"
  8521. },
  8522. {
  8523. "name": "nikic/php-parser",
  8524. "version": "v5.1.0",
  8525. "source": {
  8526. "type": "git",
  8527. "url": "https://github.com/nikic/PHP-Parser.git",
  8528. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1"
  8529. },
  8530. "dist": {
  8531. "type": "zip",
  8532. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  8533. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  8534. "shasum": ""
  8535. },
  8536. "require": {
  8537. "ext-ctype": "*",
  8538. "ext-json": "*",
  8539. "ext-tokenizer": "*",
  8540. "php": ">=7.4"
  8541. },
  8542. "require-dev": {
  8543. "ircmaxell/php-yacc": "^0.0.7",
  8544. "phpunit/phpunit": "^9.0"
  8545. },
  8546. "bin": [
  8547. "bin/php-parse"
  8548. ],
  8549. "type": "library",
  8550. "extra": {
  8551. "branch-alias": {
  8552. "dev-master": "5.0-dev"
  8553. }
  8554. },
  8555. "autoload": {
  8556. "psr-4": {
  8557. "PhpParser\\": "lib/PhpParser"
  8558. }
  8559. },
  8560. "notification-url": "https://packagist.org/downloads/",
  8561. "license": [
  8562. "BSD-3-Clause"
  8563. ],
  8564. "authors": [
  8565. {
  8566. "name": "Nikita Popov"
  8567. }
  8568. ],
  8569. "description": "A PHP parser written in PHP",
  8570. "keywords": [
  8571. "parser",
  8572. "php"
  8573. ],
  8574. "support": {
  8575. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8576. "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0"
  8577. },
  8578. "time": "2024-07-01T20:03:41+00:00"
  8579. },
  8580. {
  8581. "name": "phar-io/manifest",
  8582. "version": "2.0.4",
  8583. "source": {
  8584. "type": "git",
  8585. "url": "https://github.com/phar-io/manifest.git",
  8586. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8587. },
  8588. "dist": {
  8589. "type": "zip",
  8590. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8591. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8592. "shasum": ""
  8593. },
  8594. "require": {
  8595. "ext-dom": "*",
  8596. "ext-libxml": "*",
  8597. "ext-phar": "*",
  8598. "ext-xmlwriter": "*",
  8599. "phar-io/version": "^3.0.1",
  8600. "php": "^7.2 || ^8.0"
  8601. },
  8602. "type": "library",
  8603. "extra": {
  8604. "branch-alias": {
  8605. "dev-master": "2.0.x-dev"
  8606. }
  8607. },
  8608. "autoload": {
  8609. "classmap": [
  8610. "src/"
  8611. ]
  8612. },
  8613. "notification-url": "https://packagist.org/downloads/",
  8614. "license": [
  8615. "BSD-3-Clause"
  8616. ],
  8617. "authors": [
  8618. {
  8619. "name": "Arne Blankerts",
  8620. "email": "arne@blankerts.de",
  8621. "role": "Developer"
  8622. },
  8623. {
  8624. "name": "Sebastian Heuer",
  8625. "email": "sebastian@phpeople.de",
  8626. "role": "Developer"
  8627. },
  8628. {
  8629. "name": "Sebastian Bergmann",
  8630. "email": "sebastian@phpunit.de",
  8631. "role": "Developer"
  8632. }
  8633. ],
  8634. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8635. "support": {
  8636. "issues": "https://github.com/phar-io/manifest/issues",
  8637. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8638. },
  8639. "funding": [
  8640. {
  8641. "url": "https://github.com/theseer",
  8642. "type": "github"
  8643. }
  8644. ],
  8645. "time": "2024-03-03T12:33:53+00:00"
  8646. },
  8647. {
  8648. "name": "phar-io/version",
  8649. "version": "3.2.1",
  8650. "source": {
  8651. "type": "git",
  8652. "url": "https://github.com/phar-io/version.git",
  8653. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8654. },
  8655. "dist": {
  8656. "type": "zip",
  8657. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8658. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8659. "shasum": ""
  8660. },
  8661. "require": {
  8662. "php": "^7.2 || ^8.0"
  8663. },
  8664. "type": "library",
  8665. "autoload": {
  8666. "classmap": [
  8667. "src/"
  8668. ]
  8669. },
  8670. "notification-url": "https://packagist.org/downloads/",
  8671. "license": [
  8672. "BSD-3-Clause"
  8673. ],
  8674. "authors": [
  8675. {
  8676. "name": "Arne Blankerts",
  8677. "email": "arne@blankerts.de",
  8678. "role": "Developer"
  8679. },
  8680. {
  8681. "name": "Sebastian Heuer",
  8682. "email": "sebastian@phpeople.de",
  8683. "role": "Developer"
  8684. },
  8685. {
  8686. "name": "Sebastian Bergmann",
  8687. "email": "sebastian@phpunit.de",
  8688. "role": "Developer"
  8689. }
  8690. ],
  8691. "description": "Library for handling version information and constraints",
  8692. "support": {
  8693. "issues": "https://github.com/phar-io/version/issues",
  8694. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8695. },
  8696. "time": "2022-02-21T01:04:05+00:00"
  8697. },
  8698. {
  8699. "name": "phpunit/php-code-coverage",
  8700. "version": "9.2.31",
  8701. "source": {
  8702. "type": "git",
  8703. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8704. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965"
  8705. },
  8706. "dist": {
  8707. "type": "zip",
  8708. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/48c34b5d8d983006bd2adc2d0de92963b9155965",
  8709. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965",
  8710. "shasum": ""
  8711. },
  8712. "require": {
  8713. "ext-dom": "*",
  8714. "ext-libxml": "*",
  8715. "ext-xmlwriter": "*",
  8716. "nikic/php-parser": "^4.18 || ^5.0",
  8717. "php": ">=7.3",
  8718. "phpunit/php-file-iterator": "^3.0.3",
  8719. "phpunit/php-text-template": "^2.0.2",
  8720. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8721. "sebastian/complexity": "^2.0",
  8722. "sebastian/environment": "^5.1.2",
  8723. "sebastian/lines-of-code": "^1.0.3",
  8724. "sebastian/version": "^3.0.1",
  8725. "theseer/tokenizer": "^1.2.0"
  8726. },
  8727. "require-dev": {
  8728. "phpunit/phpunit": "^9.3"
  8729. },
  8730. "suggest": {
  8731. "ext-pcov": "PHP extension that provides line coverage",
  8732. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8733. },
  8734. "type": "library",
  8735. "extra": {
  8736. "branch-alias": {
  8737. "dev-master": "9.2-dev"
  8738. }
  8739. },
  8740. "autoload": {
  8741. "classmap": [
  8742. "src/"
  8743. ]
  8744. },
  8745. "notification-url": "https://packagist.org/downloads/",
  8746. "license": [
  8747. "BSD-3-Clause"
  8748. ],
  8749. "authors": [
  8750. {
  8751. "name": "Sebastian Bergmann",
  8752. "email": "sebastian@phpunit.de",
  8753. "role": "lead"
  8754. }
  8755. ],
  8756. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8757. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8758. "keywords": [
  8759. "coverage",
  8760. "testing",
  8761. "xunit"
  8762. ],
  8763. "support": {
  8764. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8765. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8766. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.31"
  8767. },
  8768. "funding": [
  8769. {
  8770. "url": "https://github.com/sebastianbergmann",
  8771. "type": "github"
  8772. }
  8773. ],
  8774. "time": "2024-03-02T06:37:42+00:00"
  8775. },
  8776. {
  8777. "name": "phpunit/php-file-iterator",
  8778. "version": "3.0.6",
  8779. "source": {
  8780. "type": "git",
  8781. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8782. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8783. },
  8784. "dist": {
  8785. "type": "zip",
  8786. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8787. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8788. "shasum": ""
  8789. },
  8790. "require": {
  8791. "php": ">=7.3"
  8792. },
  8793. "require-dev": {
  8794. "phpunit/phpunit": "^9.3"
  8795. },
  8796. "type": "library",
  8797. "extra": {
  8798. "branch-alias": {
  8799. "dev-master": "3.0-dev"
  8800. }
  8801. },
  8802. "autoload": {
  8803. "classmap": [
  8804. "src/"
  8805. ]
  8806. },
  8807. "notification-url": "https://packagist.org/downloads/",
  8808. "license": [
  8809. "BSD-3-Clause"
  8810. ],
  8811. "authors": [
  8812. {
  8813. "name": "Sebastian Bergmann",
  8814. "email": "sebastian@phpunit.de",
  8815. "role": "lead"
  8816. }
  8817. ],
  8818. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8819. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8820. "keywords": [
  8821. "filesystem",
  8822. "iterator"
  8823. ],
  8824. "support": {
  8825. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8826. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8827. },
  8828. "funding": [
  8829. {
  8830. "url": "https://github.com/sebastianbergmann",
  8831. "type": "github"
  8832. }
  8833. ],
  8834. "time": "2021-12-02T12:48:52+00:00"
  8835. },
  8836. {
  8837. "name": "phpunit/php-invoker",
  8838. "version": "3.1.1",
  8839. "source": {
  8840. "type": "git",
  8841. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8842. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8843. },
  8844. "dist": {
  8845. "type": "zip",
  8846. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8847. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8848. "shasum": ""
  8849. },
  8850. "require": {
  8851. "php": ">=7.3"
  8852. },
  8853. "require-dev": {
  8854. "ext-pcntl": "*",
  8855. "phpunit/phpunit": "^9.3"
  8856. },
  8857. "suggest": {
  8858. "ext-pcntl": "*"
  8859. },
  8860. "type": "library",
  8861. "extra": {
  8862. "branch-alias": {
  8863. "dev-master": "3.1-dev"
  8864. }
  8865. },
  8866. "autoload": {
  8867. "classmap": [
  8868. "src/"
  8869. ]
  8870. },
  8871. "notification-url": "https://packagist.org/downloads/",
  8872. "license": [
  8873. "BSD-3-Clause"
  8874. ],
  8875. "authors": [
  8876. {
  8877. "name": "Sebastian Bergmann",
  8878. "email": "sebastian@phpunit.de",
  8879. "role": "lead"
  8880. }
  8881. ],
  8882. "description": "Invoke callables with a timeout",
  8883. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8884. "keywords": [
  8885. "process"
  8886. ],
  8887. "support": {
  8888. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8889. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8890. },
  8891. "funding": [
  8892. {
  8893. "url": "https://github.com/sebastianbergmann",
  8894. "type": "github"
  8895. }
  8896. ],
  8897. "time": "2020-09-28T05:58:55+00:00"
  8898. },
  8899. {
  8900. "name": "phpunit/php-text-template",
  8901. "version": "2.0.4",
  8902. "source": {
  8903. "type": "git",
  8904. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8905. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8906. },
  8907. "dist": {
  8908. "type": "zip",
  8909. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8910. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8911. "shasum": ""
  8912. },
  8913. "require": {
  8914. "php": ">=7.3"
  8915. },
  8916. "require-dev": {
  8917. "phpunit/phpunit": "^9.3"
  8918. },
  8919. "type": "library",
  8920. "extra": {
  8921. "branch-alias": {
  8922. "dev-master": "2.0-dev"
  8923. }
  8924. },
  8925. "autoload": {
  8926. "classmap": [
  8927. "src/"
  8928. ]
  8929. },
  8930. "notification-url": "https://packagist.org/downloads/",
  8931. "license": [
  8932. "BSD-3-Clause"
  8933. ],
  8934. "authors": [
  8935. {
  8936. "name": "Sebastian Bergmann",
  8937. "email": "sebastian@phpunit.de",
  8938. "role": "lead"
  8939. }
  8940. ],
  8941. "description": "Simple template engine.",
  8942. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8943. "keywords": [
  8944. "template"
  8945. ],
  8946. "support": {
  8947. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8948. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8949. },
  8950. "funding": [
  8951. {
  8952. "url": "https://github.com/sebastianbergmann",
  8953. "type": "github"
  8954. }
  8955. ],
  8956. "time": "2020-10-26T05:33:50+00:00"
  8957. },
  8958. {
  8959. "name": "phpunit/php-timer",
  8960. "version": "5.0.3",
  8961. "source": {
  8962. "type": "git",
  8963. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8964. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8965. },
  8966. "dist": {
  8967. "type": "zip",
  8968. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8969. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8970. "shasum": ""
  8971. },
  8972. "require": {
  8973. "php": ">=7.3"
  8974. },
  8975. "require-dev": {
  8976. "phpunit/phpunit": "^9.3"
  8977. },
  8978. "type": "library",
  8979. "extra": {
  8980. "branch-alias": {
  8981. "dev-master": "5.0-dev"
  8982. }
  8983. },
  8984. "autoload": {
  8985. "classmap": [
  8986. "src/"
  8987. ]
  8988. },
  8989. "notification-url": "https://packagist.org/downloads/",
  8990. "license": [
  8991. "BSD-3-Clause"
  8992. ],
  8993. "authors": [
  8994. {
  8995. "name": "Sebastian Bergmann",
  8996. "email": "sebastian@phpunit.de",
  8997. "role": "lead"
  8998. }
  8999. ],
  9000. "description": "Utility class for timing",
  9001. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9002. "keywords": [
  9003. "timer"
  9004. ],
  9005. "support": {
  9006. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9007. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9008. },
  9009. "funding": [
  9010. {
  9011. "url": "https://github.com/sebastianbergmann",
  9012. "type": "github"
  9013. }
  9014. ],
  9015. "time": "2020-10-26T13:16:10+00:00"
  9016. },
  9017. {
  9018. "name": "phpunit/phpunit",
  9019. "version": "9.6.20",
  9020. "source": {
  9021. "type": "git",
  9022. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9023. "reference": "49d7820565836236411f5dc002d16dd689cde42f"
  9024. },
  9025. "dist": {
  9026. "type": "zip",
  9027. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/49d7820565836236411f5dc002d16dd689cde42f",
  9028. "reference": "49d7820565836236411f5dc002d16dd689cde42f",
  9029. "shasum": ""
  9030. },
  9031. "require": {
  9032. "doctrine/instantiator": "^1.5.0 || ^2",
  9033. "ext-dom": "*",
  9034. "ext-json": "*",
  9035. "ext-libxml": "*",
  9036. "ext-mbstring": "*",
  9037. "ext-xml": "*",
  9038. "ext-xmlwriter": "*",
  9039. "myclabs/deep-copy": "^1.12.0",
  9040. "phar-io/manifest": "^2.0.4",
  9041. "phar-io/version": "^3.2.1",
  9042. "php": ">=7.3",
  9043. "phpunit/php-code-coverage": "^9.2.31",
  9044. "phpunit/php-file-iterator": "^3.0.6",
  9045. "phpunit/php-invoker": "^3.1.1",
  9046. "phpunit/php-text-template": "^2.0.4",
  9047. "phpunit/php-timer": "^5.0.3",
  9048. "sebastian/cli-parser": "^1.0.2",
  9049. "sebastian/code-unit": "^1.0.8",
  9050. "sebastian/comparator": "^4.0.8",
  9051. "sebastian/diff": "^4.0.6",
  9052. "sebastian/environment": "^5.1.5",
  9053. "sebastian/exporter": "^4.0.6",
  9054. "sebastian/global-state": "^5.0.7",
  9055. "sebastian/object-enumerator": "^4.0.4",
  9056. "sebastian/resource-operations": "^3.0.4",
  9057. "sebastian/type": "^3.2.1",
  9058. "sebastian/version": "^3.0.2"
  9059. },
  9060. "suggest": {
  9061. "ext-soap": "To be able to generate mocks based on WSDL files",
  9062. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9063. },
  9064. "bin": [
  9065. "phpunit"
  9066. ],
  9067. "type": "library",
  9068. "extra": {
  9069. "branch-alias": {
  9070. "dev-master": "9.6-dev"
  9071. }
  9072. },
  9073. "autoload": {
  9074. "files": [
  9075. "src/Framework/Assert/Functions.php"
  9076. ],
  9077. "classmap": [
  9078. "src/"
  9079. ]
  9080. },
  9081. "notification-url": "https://packagist.org/downloads/",
  9082. "license": [
  9083. "BSD-3-Clause"
  9084. ],
  9085. "authors": [
  9086. {
  9087. "name": "Sebastian Bergmann",
  9088. "email": "sebastian@phpunit.de",
  9089. "role": "lead"
  9090. }
  9091. ],
  9092. "description": "The PHP Unit Testing framework.",
  9093. "homepage": "https://phpunit.de/",
  9094. "keywords": [
  9095. "phpunit",
  9096. "testing",
  9097. "xunit"
  9098. ],
  9099. "support": {
  9100. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9101. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9102. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.20"
  9103. },
  9104. "funding": [
  9105. {
  9106. "url": "https://phpunit.de/sponsors.html",
  9107. "type": "custom"
  9108. },
  9109. {
  9110. "url": "https://github.com/sebastianbergmann",
  9111. "type": "github"
  9112. },
  9113. {
  9114. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9115. "type": "tidelift"
  9116. }
  9117. ],
  9118. "time": "2024-07-10T11:45:39+00:00"
  9119. },
  9120. {
  9121. "name": "sebastian/cli-parser",
  9122. "version": "1.0.2",
  9123. "source": {
  9124. "type": "git",
  9125. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9126. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9127. },
  9128. "dist": {
  9129. "type": "zip",
  9130. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9131. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9132. "shasum": ""
  9133. },
  9134. "require": {
  9135. "php": ">=7.3"
  9136. },
  9137. "require-dev": {
  9138. "phpunit/phpunit": "^9.3"
  9139. },
  9140. "type": "library",
  9141. "extra": {
  9142. "branch-alias": {
  9143. "dev-master": "1.0-dev"
  9144. }
  9145. },
  9146. "autoload": {
  9147. "classmap": [
  9148. "src/"
  9149. ]
  9150. },
  9151. "notification-url": "https://packagist.org/downloads/",
  9152. "license": [
  9153. "BSD-3-Clause"
  9154. ],
  9155. "authors": [
  9156. {
  9157. "name": "Sebastian Bergmann",
  9158. "email": "sebastian@phpunit.de",
  9159. "role": "lead"
  9160. }
  9161. ],
  9162. "description": "Library for parsing CLI options",
  9163. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9164. "support": {
  9165. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9166. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9167. },
  9168. "funding": [
  9169. {
  9170. "url": "https://github.com/sebastianbergmann",
  9171. "type": "github"
  9172. }
  9173. ],
  9174. "time": "2024-03-02T06:27:43+00:00"
  9175. },
  9176. {
  9177. "name": "sebastian/code-unit",
  9178. "version": "1.0.8",
  9179. "source": {
  9180. "type": "git",
  9181. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9182. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9183. },
  9184. "dist": {
  9185. "type": "zip",
  9186. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9187. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9188. "shasum": ""
  9189. },
  9190. "require": {
  9191. "php": ">=7.3"
  9192. },
  9193. "require-dev": {
  9194. "phpunit/phpunit": "^9.3"
  9195. },
  9196. "type": "library",
  9197. "extra": {
  9198. "branch-alias": {
  9199. "dev-master": "1.0-dev"
  9200. }
  9201. },
  9202. "autoload": {
  9203. "classmap": [
  9204. "src/"
  9205. ]
  9206. },
  9207. "notification-url": "https://packagist.org/downloads/",
  9208. "license": [
  9209. "BSD-3-Clause"
  9210. ],
  9211. "authors": [
  9212. {
  9213. "name": "Sebastian Bergmann",
  9214. "email": "sebastian@phpunit.de",
  9215. "role": "lead"
  9216. }
  9217. ],
  9218. "description": "Collection of value objects that represent the PHP code units",
  9219. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9220. "support": {
  9221. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9222. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9223. },
  9224. "funding": [
  9225. {
  9226. "url": "https://github.com/sebastianbergmann",
  9227. "type": "github"
  9228. }
  9229. ],
  9230. "time": "2020-10-26T13:08:54+00:00"
  9231. },
  9232. {
  9233. "name": "sebastian/code-unit-reverse-lookup",
  9234. "version": "2.0.3",
  9235. "source": {
  9236. "type": "git",
  9237. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9238. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9239. },
  9240. "dist": {
  9241. "type": "zip",
  9242. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9243. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9244. "shasum": ""
  9245. },
  9246. "require": {
  9247. "php": ">=7.3"
  9248. },
  9249. "require-dev": {
  9250. "phpunit/phpunit": "^9.3"
  9251. },
  9252. "type": "library",
  9253. "extra": {
  9254. "branch-alias": {
  9255. "dev-master": "2.0-dev"
  9256. }
  9257. },
  9258. "autoload": {
  9259. "classmap": [
  9260. "src/"
  9261. ]
  9262. },
  9263. "notification-url": "https://packagist.org/downloads/",
  9264. "license": [
  9265. "BSD-3-Clause"
  9266. ],
  9267. "authors": [
  9268. {
  9269. "name": "Sebastian Bergmann",
  9270. "email": "sebastian@phpunit.de"
  9271. }
  9272. ],
  9273. "description": "Looks up which function or method a line of code belongs to",
  9274. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9275. "support": {
  9276. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9277. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9278. },
  9279. "funding": [
  9280. {
  9281. "url": "https://github.com/sebastianbergmann",
  9282. "type": "github"
  9283. }
  9284. ],
  9285. "time": "2020-09-28T05:30:19+00:00"
  9286. },
  9287. {
  9288. "name": "sebastian/comparator",
  9289. "version": "4.0.8",
  9290. "source": {
  9291. "type": "git",
  9292. "url": "https://github.com/sebastianbergmann/comparator.git",
  9293. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9294. },
  9295. "dist": {
  9296. "type": "zip",
  9297. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9298. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9299. "shasum": ""
  9300. },
  9301. "require": {
  9302. "php": ">=7.3",
  9303. "sebastian/diff": "^4.0",
  9304. "sebastian/exporter": "^4.0"
  9305. },
  9306. "require-dev": {
  9307. "phpunit/phpunit": "^9.3"
  9308. },
  9309. "type": "library",
  9310. "extra": {
  9311. "branch-alias": {
  9312. "dev-master": "4.0-dev"
  9313. }
  9314. },
  9315. "autoload": {
  9316. "classmap": [
  9317. "src/"
  9318. ]
  9319. },
  9320. "notification-url": "https://packagist.org/downloads/",
  9321. "license": [
  9322. "BSD-3-Clause"
  9323. ],
  9324. "authors": [
  9325. {
  9326. "name": "Sebastian Bergmann",
  9327. "email": "sebastian@phpunit.de"
  9328. },
  9329. {
  9330. "name": "Jeff Welch",
  9331. "email": "whatthejeff@gmail.com"
  9332. },
  9333. {
  9334. "name": "Volker Dusch",
  9335. "email": "github@wallbash.com"
  9336. },
  9337. {
  9338. "name": "Bernhard Schussek",
  9339. "email": "bschussek@2bepublished.at"
  9340. }
  9341. ],
  9342. "description": "Provides the functionality to compare PHP values for equality",
  9343. "homepage": "https://github.com/sebastianbergmann/comparator",
  9344. "keywords": [
  9345. "comparator",
  9346. "compare",
  9347. "equality"
  9348. ],
  9349. "support": {
  9350. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9351. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9352. },
  9353. "funding": [
  9354. {
  9355. "url": "https://github.com/sebastianbergmann",
  9356. "type": "github"
  9357. }
  9358. ],
  9359. "time": "2022-09-14T12:41:17+00:00"
  9360. },
  9361. {
  9362. "name": "sebastian/complexity",
  9363. "version": "2.0.3",
  9364. "source": {
  9365. "type": "git",
  9366. "url": "https://github.com/sebastianbergmann/complexity.git",
  9367. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9368. },
  9369. "dist": {
  9370. "type": "zip",
  9371. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9372. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9373. "shasum": ""
  9374. },
  9375. "require": {
  9376. "nikic/php-parser": "^4.18 || ^5.0",
  9377. "php": ">=7.3"
  9378. },
  9379. "require-dev": {
  9380. "phpunit/phpunit": "^9.3"
  9381. },
  9382. "type": "library",
  9383. "extra": {
  9384. "branch-alias": {
  9385. "dev-master": "2.0-dev"
  9386. }
  9387. },
  9388. "autoload": {
  9389. "classmap": [
  9390. "src/"
  9391. ]
  9392. },
  9393. "notification-url": "https://packagist.org/downloads/",
  9394. "license": [
  9395. "BSD-3-Clause"
  9396. ],
  9397. "authors": [
  9398. {
  9399. "name": "Sebastian Bergmann",
  9400. "email": "sebastian@phpunit.de",
  9401. "role": "lead"
  9402. }
  9403. ],
  9404. "description": "Library for calculating the complexity of PHP code units",
  9405. "homepage": "https://github.com/sebastianbergmann/complexity",
  9406. "support": {
  9407. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9408. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9409. },
  9410. "funding": [
  9411. {
  9412. "url": "https://github.com/sebastianbergmann",
  9413. "type": "github"
  9414. }
  9415. ],
  9416. "time": "2023-12-22T06:19:30+00:00"
  9417. },
  9418. {
  9419. "name": "sebastian/diff",
  9420. "version": "4.0.6",
  9421. "source": {
  9422. "type": "git",
  9423. "url": "https://github.com/sebastianbergmann/diff.git",
  9424. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9425. },
  9426. "dist": {
  9427. "type": "zip",
  9428. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9429. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9430. "shasum": ""
  9431. },
  9432. "require": {
  9433. "php": ">=7.3"
  9434. },
  9435. "require-dev": {
  9436. "phpunit/phpunit": "^9.3",
  9437. "symfony/process": "^4.2 || ^5"
  9438. },
  9439. "type": "library",
  9440. "extra": {
  9441. "branch-alias": {
  9442. "dev-master": "4.0-dev"
  9443. }
  9444. },
  9445. "autoload": {
  9446. "classmap": [
  9447. "src/"
  9448. ]
  9449. },
  9450. "notification-url": "https://packagist.org/downloads/",
  9451. "license": [
  9452. "BSD-3-Clause"
  9453. ],
  9454. "authors": [
  9455. {
  9456. "name": "Sebastian Bergmann",
  9457. "email": "sebastian@phpunit.de"
  9458. },
  9459. {
  9460. "name": "Kore Nordmann",
  9461. "email": "mail@kore-nordmann.de"
  9462. }
  9463. ],
  9464. "description": "Diff implementation",
  9465. "homepage": "https://github.com/sebastianbergmann/diff",
  9466. "keywords": [
  9467. "diff",
  9468. "udiff",
  9469. "unidiff",
  9470. "unified diff"
  9471. ],
  9472. "support": {
  9473. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9474. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9475. },
  9476. "funding": [
  9477. {
  9478. "url": "https://github.com/sebastianbergmann",
  9479. "type": "github"
  9480. }
  9481. ],
  9482. "time": "2024-03-02T06:30:58+00:00"
  9483. },
  9484. {
  9485. "name": "sebastian/environment",
  9486. "version": "5.1.5",
  9487. "source": {
  9488. "type": "git",
  9489. "url": "https://github.com/sebastianbergmann/environment.git",
  9490. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9491. },
  9492. "dist": {
  9493. "type": "zip",
  9494. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9495. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9496. "shasum": ""
  9497. },
  9498. "require": {
  9499. "php": ">=7.3"
  9500. },
  9501. "require-dev": {
  9502. "phpunit/phpunit": "^9.3"
  9503. },
  9504. "suggest": {
  9505. "ext-posix": "*"
  9506. },
  9507. "type": "library",
  9508. "extra": {
  9509. "branch-alias": {
  9510. "dev-master": "5.1-dev"
  9511. }
  9512. },
  9513. "autoload": {
  9514. "classmap": [
  9515. "src/"
  9516. ]
  9517. },
  9518. "notification-url": "https://packagist.org/downloads/",
  9519. "license": [
  9520. "BSD-3-Clause"
  9521. ],
  9522. "authors": [
  9523. {
  9524. "name": "Sebastian Bergmann",
  9525. "email": "sebastian@phpunit.de"
  9526. }
  9527. ],
  9528. "description": "Provides functionality to handle HHVM/PHP environments",
  9529. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9530. "keywords": [
  9531. "Xdebug",
  9532. "environment",
  9533. "hhvm"
  9534. ],
  9535. "support": {
  9536. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9537. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9538. },
  9539. "funding": [
  9540. {
  9541. "url": "https://github.com/sebastianbergmann",
  9542. "type": "github"
  9543. }
  9544. ],
  9545. "time": "2023-02-03T06:03:51+00:00"
  9546. },
  9547. {
  9548. "name": "sebastian/exporter",
  9549. "version": "4.0.6",
  9550. "source": {
  9551. "type": "git",
  9552. "url": "https://github.com/sebastianbergmann/exporter.git",
  9553. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  9554. },
  9555. "dist": {
  9556. "type": "zip",
  9557. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  9558. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  9559. "shasum": ""
  9560. },
  9561. "require": {
  9562. "php": ">=7.3",
  9563. "sebastian/recursion-context": "^4.0"
  9564. },
  9565. "require-dev": {
  9566. "ext-mbstring": "*",
  9567. "phpunit/phpunit": "^9.3"
  9568. },
  9569. "type": "library",
  9570. "extra": {
  9571. "branch-alias": {
  9572. "dev-master": "4.0-dev"
  9573. }
  9574. },
  9575. "autoload": {
  9576. "classmap": [
  9577. "src/"
  9578. ]
  9579. },
  9580. "notification-url": "https://packagist.org/downloads/",
  9581. "license": [
  9582. "BSD-3-Clause"
  9583. ],
  9584. "authors": [
  9585. {
  9586. "name": "Sebastian Bergmann",
  9587. "email": "sebastian@phpunit.de"
  9588. },
  9589. {
  9590. "name": "Jeff Welch",
  9591. "email": "whatthejeff@gmail.com"
  9592. },
  9593. {
  9594. "name": "Volker Dusch",
  9595. "email": "github@wallbash.com"
  9596. },
  9597. {
  9598. "name": "Adam Harvey",
  9599. "email": "aharvey@php.net"
  9600. },
  9601. {
  9602. "name": "Bernhard Schussek",
  9603. "email": "bschussek@gmail.com"
  9604. }
  9605. ],
  9606. "description": "Provides the functionality to export PHP variables for visualization",
  9607. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9608. "keywords": [
  9609. "export",
  9610. "exporter"
  9611. ],
  9612. "support": {
  9613. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9614. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  9615. },
  9616. "funding": [
  9617. {
  9618. "url": "https://github.com/sebastianbergmann",
  9619. "type": "github"
  9620. }
  9621. ],
  9622. "time": "2024-03-02T06:33:00+00:00"
  9623. },
  9624. {
  9625. "name": "sebastian/global-state",
  9626. "version": "5.0.7",
  9627. "source": {
  9628. "type": "git",
  9629. "url": "https://github.com/sebastianbergmann/global-state.git",
  9630. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  9631. },
  9632. "dist": {
  9633. "type": "zip",
  9634. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9635. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9636. "shasum": ""
  9637. },
  9638. "require": {
  9639. "php": ">=7.3",
  9640. "sebastian/object-reflector": "^2.0",
  9641. "sebastian/recursion-context": "^4.0"
  9642. },
  9643. "require-dev": {
  9644. "ext-dom": "*",
  9645. "phpunit/phpunit": "^9.3"
  9646. },
  9647. "suggest": {
  9648. "ext-uopz": "*"
  9649. },
  9650. "type": "library",
  9651. "extra": {
  9652. "branch-alias": {
  9653. "dev-master": "5.0-dev"
  9654. }
  9655. },
  9656. "autoload": {
  9657. "classmap": [
  9658. "src/"
  9659. ]
  9660. },
  9661. "notification-url": "https://packagist.org/downloads/",
  9662. "license": [
  9663. "BSD-3-Clause"
  9664. ],
  9665. "authors": [
  9666. {
  9667. "name": "Sebastian Bergmann",
  9668. "email": "sebastian@phpunit.de"
  9669. }
  9670. ],
  9671. "description": "Snapshotting of global state",
  9672. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9673. "keywords": [
  9674. "global state"
  9675. ],
  9676. "support": {
  9677. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9678. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  9679. },
  9680. "funding": [
  9681. {
  9682. "url": "https://github.com/sebastianbergmann",
  9683. "type": "github"
  9684. }
  9685. ],
  9686. "time": "2024-03-02T06:35:11+00:00"
  9687. },
  9688. {
  9689. "name": "sebastian/lines-of-code",
  9690. "version": "1.0.4",
  9691. "source": {
  9692. "type": "git",
  9693. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9694. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9695. },
  9696. "dist": {
  9697. "type": "zip",
  9698. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9699. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9700. "shasum": ""
  9701. },
  9702. "require": {
  9703. "nikic/php-parser": "^4.18 || ^5.0",
  9704. "php": ">=7.3"
  9705. },
  9706. "require-dev": {
  9707. "phpunit/phpunit": "^9.3"
  9708. },
  9709. "type": "library",
  9710. "extra": {
  9711. "branch-alias": {
  9712. "dev-master": "1.0-dev"
  9713. }
  9714. },
  9715. "autoload": {
  9716. "classmap": [
  9717. "src/"
  9718. ]
  9719. },
  9720. "notification-url": "https://packagist.org/downloads/",
  9721. "license": [
  9722. "BSD-3-Clause"
  9723. ],
  9724. "authors": [
  9725. {
  9726. "name": "Sebastian Bergmann",
  9727. "email": "sebastian@phpunit.de",
  9728. "role": "lead"
  9729. }
  9730. ],
  9731. "description": "Library for counting the lines of code in PHP source code",
  9732. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9733. "support": {
  9734. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9735. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9736. },
  9737. "funding": [
  9738. {
  9739. "url": "https://github.com/sebastianbergmann",
  9740. "type": "github"
  9741. }
  9742. ],
  9743. "time": "2023-12-22T06:20:34+00:00"
  9744. },
  9745. {
  9746. "name": "sebastian/object-enumerator",
  9747. "version": "4.0.4",
  9748. "source": {
  9749. "type": "git",
  9750. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9751. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9752. },
  9753. "dist": {
  9754. "type": "zip",
  9755. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9756. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9757. "shasum": ""
  9758. },
  9759. "require": {
  9760. "php": ">=7.3",
  9761. "sebastian/object-reflector": "^2.0",
  9762. "sebastian/recursion-context": "^4.0"
  9763. },
  9764. "require-dev": {
  9765. "phpunit/phpunit": "^9.3"
  9766. },
  9767. "type": "library",
  9768. "extra": {
  9769. "branch-alias": {
  9770. "dev-master": "4.0-dev"
  9771. }
  9772. },
  9773. "autoload": {
  9774. "classmap": [
  9775. "src/"
  9776. ]
  9777. },
  9778. "notification-url": "https://packagist.org/downloads/",
  9779. "license": [
  9780. "BSD-3-Clause"
  9781. ],
  9782. "authors": [
  9783. {
  9784. "name": "Sebastian Bergmann",
  9785. "email": "sebastian@phpunit.de"
  9786. }
  9787. ],
  9788. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9789. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9790. "support": {
  9791. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9792. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9793. },
  9794. "funding": [
  9795. {
  9796. "url": "https://github.com/sebastianbergmann",
  9797. "type": "github"
  9798. }
  9799. ],
  9800. "time": "2020-10-26T13:12:34+00:00"
  9801. },
  9802. {
  9803. "name": "sebastian/object-reflector",
  9804. "version": "2.0.4",
  9805. "source": {
  9806. "type": "git",
  9807. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9808. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9809. },
  9810. "dist": {
  9811. "type": "zip",
  9812. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9813. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9814. "shasum": ""
  9815. },
  9816. "require": {
  9817. "php": ">=7.3"
  9818. },
  9819. "require-dev": {
  9820. "phpunit/phpunit": "^9.3"
  9821. },
  9822. "type": "library",
  9823. "extra": {
  9824. "branch-alias": {
  9825. "dev-master": "2.0-dev"
  9826. }
  9827. },
  9828. "autoload": {
  9829. "classmap": [
  9830. "src/"
  9831. ]
  9832. },
  9833. "notification-url": "https://packagist.org/downloads/",
  9834. "license": [
  9835. "BSD-3-Clause"
  9836. ],
  9837. "authors": [
  9838. {
  9839. "name": "Sebastian Bergmann",
  9840. "email": "sebastian@phpunit.de"
  9841. }
  9842. ],
  9843. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9844. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9845. "support": {
  9846. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9847. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9848. },
  9849. "funding": [
  9850. {
  9851. "url": "https://github.com/sebastianbergmann",
  9852. "type": "github"
  9853. }
  9854. ],
  9855. "time": "2020-10-26T13:14:26+00:00"
  9856. },
  9857. {
  9858. "name": "sebastian/recursion-context",
  9859. "version": "4.0.5",
  9860. "source": {
  9861. "type": "git",
  9862. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9863. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9864. },
  9865. "dist": {
  9866. "type": "zip",
  9867. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9868. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9869. "shasum": ""
  9870. },
  9871. "require": {
  9872. "php": ">=7.3"
  9873. },
  9874. "require-dev": {
  9875. "phpunit/phpunit": "^9.3"
  9876. },
  9877. "type": "library",
  9878. "extra": {
  9879. "branch-alias": {
  9880. "dev-master": "4.0-dev"
  9881. }
  9882. },
  9883. "autoload": {
  9884. "classmap": [
  9885. "src/"
  9886. ]
  9887. },
  9888. "notification-url": "https://packagist.org/downloads/",
  9889. "license": [
  9890. "BSD-3-Clause"
  9891. ],
  9892. "authors": [
  9893. {
  9894. "name": "Sebastian Bergmann",
  9895. "email": "sebastian@phpunit.de"
  9896. },
  9897. {
  9898. "name": "Jeff Welch",
  9899. "email": "whatthejeff@gmail.com"
  9900. },
  9901. {
  9902. "name": "Adam Harvey",
  9903. "email": "aharvey@php.net"
  9904. }
  9905. ],
  9906. "description": "Provides functionality to recursively process PHP variables",
  9907. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9908. "support": {
  9909. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9910. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9911. },
  9912. "funding": [
  9913. {
  9914. "url": "https://github.com/sebastianbergmann",
  9915. "type": "github"
  9916. }
  9917. ],
  9918. "time": "2023-02-03T06:07:39+00:00"
  9919. },
  9920. {
  9921. "name": "sebastian/resource-operations",
  9922. "version": "3.0.4",
  9923. "source": {
  9924. "type": "git",
  9925. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9926. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  9927. },
  9928. "dist": {
  9929. "type": "zip",
  9930. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9931. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9932. "shasum": ""
  9933. },
  9934. "require": {
  9935. "php": ">=7.3"
  9936. },
  9937. "require-dev": {
  9938. "phpunit/phpunit": "^9.0"
  9939. },
  9940. "type": "library",
  9941. "extra": {
  9942. "branch-alias": {
  9943. "dev-main": "3.0-dev"
  9944. }
  9945. },
  9946. "autoload": {
  9947. "classmap": [
  9948. "src/"
  9949. ]
  9950. },
  9951. "notification-url": "https://packagist.org/downloads/",
  9952. "license": [
  9953. "BSD-3-Clause"
  9954. ],
  9955. "authors": [
  9956. {
  9957. "name": "Sebastian Bergmann",
  9958. "email": "sebastian@phpunit.de"
  9959. }
  9960. ],
  9961. "description": "Provides a list of PHP built-in functions that operate on resources",
  9962. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9963. "support": {
  9964. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  9965. },
  9966. "funding": [
  9967. {
  9968. "url": "https://github.com/sebastianbergmann",
  9969. "type": "github"
  9970. }
  9971. ],
  9972. "time": "2024-03-14T16:00:52+00:00"
  9973. },
  9974. {
  9975. "name": "sebastian/type",
  9976. "version": "3.2.1",
  9977. "source": {
  9978. "type": "git",
  9979. "url": "https://github.com/sebastianbergmann/type.git",
  9980. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9981. },
  9982. "dist": {
  9983. "type": "zip",
  9984. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9985. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9986. "shasum": ""
  9987. },
  9988. "require": {
  9989. "php": ">=7.3"
  9990. },
  9991. "require-dev": {
  9992. "phpunit/phpunit": "^9.5"
  9993. },
  9994. "type": "library",
  9995. "extra": {
  9996. "branch-alias": {
  9997. "dev-master": "3.2-dev"
  9998. }
  9999. },
  10000. "autoload": {
  10001. "classmap": [
  10002. "src/"
  10003. ]
  10004. },
  10005. "notification-url": "https://packagist.org/downloads/",
  10006. "license": [
  10007. "BSD-3-Clause"
  10008. ],
  10009. "authors": [
  10010. {
  10011. "name": "Sebastian Bergmann",
  10012. "email": "sebastian@phpunit.de",
  10013. "role": "lead"
  10014. }
  10015. ],
  10016. "description": "Collection of value objects that represent the types of the PHP type system",
  10017. "homepage": "https://github.com/sebastianbergmann/type",
  10018. "support": {
  10019. "issues": "https://github.com/sebastianbergmann/type/issues",
  10020. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10021. },
  10022. "funding": [
  10023. {
  10024. "url": "https://github.com/sebastianbergmann",
  10025. "type": "github"
  10026. }
  10027. ],
  10028. "time": "2023-02-03T06:13:03+00:00"
  10029. },
  10030. {
  10031. "name": "sebastian/version",
  10032. "version": "3.0.2",
  10033. "source": {
  10034. "type": "git",
  10035. "url": "https://github.com/sebastianbergmann/version.git",
  10036. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10037. },
  10038. "dist": {
  10039. "type": "zip",
  10040. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10041. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10042. "shasum": ""
  10043. },
  10044. "require": {
  10045. "php": ">=7.3"
  10046. },
  10047. "type": "library",
  10048. "extra": {
  10049. "branch-alias": {
  10050. "dev-master": "3.0-dev"
  10051. }
  10052. },
  10053. "autoload": {
  10054. "classmap": [
  10055. "src/"
  10056. ]
  10057. },
  10058. "notification-url": "https://packagist.org/downloads/",
  10059. "license": [
  10060. "BSD-3-Clause"
  10061. ],
  10062. "authors": [
  10063. {
  10064. "name": "Sebastian Bergmann",
  10065. "email": "sebastian@phpunit.de",
  10066. "role": "lead"
  10067. }
  10068. ],
  10069. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10070. "homepage": "https://github.com/sebastianbergmann/version",
  10071. "support": {
  10072. "issues": "https://github.com/sebastianbergmann/version/issues",
  10073. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10074. },
  10075. "funding": [
  10076. {
  10077. "url": "https://github.com/sebastianbergmann",
  10078. "type": "github"
  10079. }
  10080. ],
  10081. "time": "2020-09-28T06:39:44+00:00"
  10082. },
  10083. {
  10084. "name": "symfony/browser-kit",
  10085. "version": "v6.4.8",
  10086. "source": {
  10087. "type": "git",
  10088. "url": "https://github.com/symfony/browser-kit.git",
  10089. "reference": "62ab90b92066ef6cce5e79365625b4b1432464c8"
  10090. },
  10091. "dist": {
  10092. "type": "zip",
  10093. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/62ab90b92066ef6cce5e79365625b4b1432464c8",
  10094. "reference": "62ab90b92066ef6cce5e79365625b4b1432464c8",
  10095. "shasum": ""
  10096. },
  10097. "require": {
  10098. "php": ">=8.1",
  10099. "symfony/dom-crawler": "^5.4|^6.0|^7.0"
  10100. },
  10101. "require-dev": {
  10102. "symfony/css-selector": "^5.4|^6.0|^7.0",
  10103. "symfony/http-client": "^5.4|^6.0|^7.0",
  10104. "symfony/mime": "^5.4|^6.0|^7.0",
  10105. "symfony/process": "^5.4|^6.0|^7.0"
  10106. },
  10107. "type": "library",
  10108. "autoload": {
  10109. "psr-4": {
  10110. "Symfony\\Component\\BrowserKit\\": ""
  10111. },
  10112. "exclude-from-classmap": [
  10113. "/Tests/"
  10114. ]
  10115. },
  10116. "notification-url": "https://packagist.org/downloads/",
  10117. "license": [
  10118. "MIT"
  10119. ],
  10120. "authors": [
  10121. {
  10122. "name": "Fabien Potencier",
  10123. "email": "fabien@symfony.com"
  10124. },
  10125. {
  10126. "name": "Symfony Community",
  10127. "homepage": "https://symfony.com/contributors"
  10128. }
  10129. ],
  10130. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10131. "homepage": "https://symfony.com",
  10132. "support": {
  10133. "source": "https://github.com/symfony/browser-kit/tree/v6.4.8"
  10134. },
  10135. "funding": [
  10136. {
  10137. "url": "https://symfony.com/sponsor",
  10138. "type": "custom"
  10139. },
  10140. {
  10141. "url": "https://github.com/fabpot",
  10142. "type": "github"
  10143. },
  10144. {
  10145. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10146. "type": "tidelift"
  10147. }
  10148. ],
  10149. "time": "2024-05-31T14:49:08+00:00"
  10150. },
  10151. {
  10152. "name": "symfony/css-selector",
  10153. "version": "v6.4.8",
  10154. "source": {
  10155. "type": "git",
  10156. "url": "https://github.com/symfony/css-selector.git",
  10157. "reference": "4b61b02fe15db48e3687ce1c45ea385d1780fe08"
  10158. },
  10159. "dist": {
  10160. "type": "zip",
  10161. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4b61b02fe15db48e3687ce1c45ea385d1780fe08",
  10162. "reference": "4b61b02fe15db48e3687ce1c45ea385d1780fe08",
  10163. "shasum": ""
  10164. },
  10165. "require": {
  10166. "php": ">=8.1"
  10167. },
  10168. "type": "library",
  10169. "autoload": {
  10170. "psr-4": {
  10171. "Symfony\\Component\\CssSelector\\": ""
  10172. },
  10173. "exclude-from-classmap": [
  10174. "/Tests/"
  10175. ]
  10176. },
  10177. "notification-url": "https://packagist.org/downloads/",
  10178. "license": [
  10179. "MIT"
  10180. ],
  10181. "authors": [
  10182. {
  10183. "name": "Fabien Potencier",
  10184. "email": "fabien@symfony.com"
  10185. },
  10186. {
  10187. "name": "Jean-François Simon",
  10188. "email": "jeanfrancois.simon@sensiolabs.com"
  10189. },
  10190. {
  10191. "name": "Symfony Community",
  10192. "homepage": "https://symfony.com/contributors"
  10193. }
  10194. ],
  10195. "description": "Converts CSS selectors to XPath expressions",
  10196. "homepage": "https://symfony.com",
  10197. "support": {
  10198. "source": "https://github.com/symfony/css-selector/tree/v6.4.8"
  10199. },
  10200. "funding": [
  10201. {
  10202. "url": "https://symfony.com/sponsor",
  10203. "type": "custom"
  10204. },
  10205. {
  10206. "url": "https://github.com/fabpot",
  10207. "type": "github"
  10208. },
  10209. {
  10210. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10211. "type": "tidelift"
  10212. }
  10213. ],
  10214. "time": "2024-05-31T14:49:08+00:00"
  10215. },
  10216. {
  10217. "name": "symfony/debug-bundle",
  10218. "version": "v6.4.8",
  10219. "source": {
  10220. "type": "git",
  10221. "url": "https://github.com/symfony/debug-bundle.git",
  10222. "reference": "689f1bcb0bd3b945e3c671cbd06274b127c64dc9"
  10223. },
  10224. "dist": {
  10225. "type": "zip",
  10226. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/689f1bcb0bd3b945e3c671cbd06274b127c64dc9",
  10227. "reference": "689f1bcb0bd3b945e3c671cbd06274b127c64dc9",
  10228. "shasum": ""
  10229. },
  10230. "require": {
  10231. "ext-xml": "*",
  10232. "php": ">=8.1",
  10233. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10234. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  10235. "symfony/twig-bridge": "^5.4|^6.0|^7.0",
  10236. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10237. },
  10238. "conflict": {
  10239. "symfony/config": "<5.4",
  10240. "symfony/dependency-injection": "<5.4"
  10241. },
  10242. "require-dev": {
  10243. "symfony/config": "^5.4|^6.0|^7.0",
  10244. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  10245. },
  10246. "type": "symfony-bundle",
  10247. "autoload": {
  10248. "psr-4": {
  10249. "Symfony\\Bundle\\DebugBundle\\": ""
  10250. },
  10251. "exclude-from-classmap": [
  10252. "/Tests/"
  10253. ]
  10254. },
  10255. "notification-url": "https://packagist.org/downloads/",
  10256. "license": [
  10257. "MIT"
  10258. ],
  10259. "authors": [
  10260. {
  10261. "name": "Fabien Potencier",
  10262. "email": "fabien@symfony.com"
  10263. },
  10264. {
  10265. "name": "Symfony Community",
  10266. "homepage": "https://symfony.com/contributors"
  10267. }
  10268. ],
  10269. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10270. "homepage": "https://symfony.com",
  10271. "support": {
  10272. "source": "https://github.com/symfony/debug-bundle/tree/v6.4.8"
  10273. },
  10274. "funding": [
  10275. {
  10276. "url": "https://symfony.com/sponsor",
  10277. "type": "custom"
  10278. },
  10279. {
  10280. "url": "https://github.com/fabpot",
  10281. "type": "github"
  10282. },
  10283. {
  10284. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10285. "type": "tidelift"
  10286. }
  10287. ],
  10288. "time": "2024-05-31T14:49:08+00:00"
  10289. },
  10290. {
  10291. "name": "symfony/dom-crawler",
  10292. "version": "v6.4.8",
  10293. "source": {
  10294. "type": "git",
  10295. "url": "https://github.com/symfony/dom-crawler.git",
  10296. "reference": "105b56a0305d219349edeb60a800082eca864e4b"
  10297. },
  10298. "dist": {
  10299. "type": "zip",
  10300. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/105b56a0305d219349edeb60a800082eca864e4b",
  10301. "reference": "105b56a0305d219349edeb60a800082eca864e4b",
  10302. "shasum": ""
  10303. },
  10304. "require": {
  10305. "masterminds/html5": "^2.6",
  10306. "php": ">=8.1",
  10307. "symfony/polyfill-ctype": "~1.8",
  10308. "symfony/polyfill-mbstring": "~1.0"
  10309. },
  10310. "require-dev": {
  10311. "symfony/css-selector": "^5.4|^6.0|^7.0"
  10312. },
  10313. "type": "library",
  10314. "autoload": {
  10315. "psr-4": {
  10316. "Symfony\\Component\\DomCrawler\\": ""
  10317. },
  10318. "exclude-from-classmap": [
  10319. "/Tests/"
  10320. ]
  10321. },
  10322. "notification-url": "https://packagist.org/downloads/",
  10323. "license": [
  10324. "MIT"
  10325. ],
  10326. "authors": [
  10327. {
  10328. "name": "Fabien Potencier",
  10329. "email": "fabien@symfony.com"
  10330. },
  10331. {
  10332. "name": "Symfony Community",
  10333. "homepage": "https://symfony.com/contributors"
  10334. }
  10335. ],
  10336. "description": "Eases DOM navigation for HTML and XML documents",
  10337. "homepage": "https://symfony.com",
  10338. "support": {
  10339. "source": "https://github.com/symfony/dom-crawler/tree/v6.4.8"
  10340. },
  10341. "funding": [
  10342. {
  10343. "url": "https://symfony.com/sponsor",
  10344. "type": "custom"
  10345. },
  10346. {
  10347. "url": "https://github.com/fabpot",
  10348. "type": "github"
  10349. },
  10350. {
  10351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10352. "type": "tidelift"
  10353. }
  10354. ],
  10355. "time": "2024-05-31T14:49:08+00:00"
  10356. },
  10357. {
  10358. "name": "symfony/maker-bundle",
  10359. "version": "v1.60.0",
  10360. "source": {
  10361. "type": "git",
  10362. "url": "https://github.com/symfony/maker-bundle.git",
  10363. "reference": "c305a02a22974670f359d4274c9431e1a191f559"
  10364. },
  10365. "dist": {
  10366. "type": "zip",
  10367. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/c305a02a22974670f359d4274c9431e1a191f559",
  10368. "reference": "c305a02a22974670f359d4274c9431e1a191f559",
  10369. "shasum": ""
  10370. },
  10371. "require": {
  10372. "doctrine/inflector": "^2.0",
  10373. "nikic/php-parser": "^4.18|^5.0",
  10374. "php": ">=8.1",
  10375. "symfony/config": "^6.4|^7.0",
  10376. "symfony/console": "^6.4|^7.0",
  10377. "symfony/dependency-injection": "^6.4|^7.0",
  10378. "symfony/deprecation-contracts": "^2.2|^3",
  10379. "symfony/filesystem": "^6.4|^7.0",
  10380. "symfony/finder": "^6.4|^7.0",
  10381. "symfony/framework-bundle": "^6.4|^7.0",
  10382. "symfony/http-kernel": "^6.4|^7.0",
  10383. "symfony/process": "^6.4|^7.0"
  10384. },
  10385. "conflict": {
  10386. "doctrine/doctrine-bundle": "<2.10",
  10387. "doctrine/orm": "<2.15"
  10388. },
  10389. "require-dev": {
  10390. "composer/semver": "^3.0",
  10391. "doctrine/doctrine-bundle": "^2.5.0",
  10392. "doctrine/orm": "^2.15|^3",
  10393. "symfony/http-client": "^6.4|^7.0",
  10394. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  10395. "symfony/security-core": "^6.4|^7.0",
  10396. "symfony/yaml": "^6.4|^7.0",
  10397. "twig/twig": "^3.0|^4.x-dev"
  10398. },
  10399. "type": "symfony-bundle",
  10400. "extra": {
  10401. "branch-alias": {
  10402. "dev-main": "1.x-dev"
  10403. }
  10404. },
  10405. "autoload": {
  10406. "psr-4": {
  10407. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10408. }
  10409. },
  10410. "notification-url": "https://packagist.org/downloads/",
  10411. "license": [
  10412. "MIT"
  10413. ],
  10414. "authors": [
  10415. {
  10416. "name": "Symfony Community",
  10417. "homepage": "https://symfony.com/contributors"
  10418. }
  10419. ],
  10420. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10421. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10422. "keywords": [
  10423. "code generator",
  10424. "dev",
  10425. "generator",
  10426. "scaffold",
  10427. "scaffolding"
  10428. ],
  10429. "support": {
  10430. "issues": "https://github.com/symfony/maker-bundle/issues",
  10431. "source": "https://github.com/symfony/maker-bundle/tree/v1.60.0"
  10432. },
  10433. "funding": [
  10434. {
  10435. "url": "https://symfony.com/sponsor",
  10436. "type": "custom"
  10437. },
  10438. {
  10439. "url": "https://github.com/fabpot",
  10440. "type": "github"
  10441. },
  10442. {
  10443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10444. "type": "tidelift"
  10445. }
  10446. ],
  10447. "time": "2024-06-10T06:03:18+00:00"
  10448. },
  10449. {
  10450. "name": "symfony/phpunit-bridge",
  10451. "version": "v6.4.10",
  10452. "source": {
  10453. "type": "git",
  10454. "url": "https://github.com/symfony/phpunit-bridge.git",
  10455. "reference": "ad510515b11ba5291fdd59b25d70227bfac2d7ab"
  10456. },
  10457. "dist": {
  10458. "type": "zip",
  10459. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/ad510515b11ba5291fdd59b25d70227bfac2d7ab",
  10460. "reference": "ad510515b11ba5291fdd59b25d70227bfac2d7ab",
  10461. "shasum": ""
  10462. },
  10463. "require": {
  10464. "php": ">=7.1.3"
  10465. },
  10466. "conflict": {
  10467. "phpunit/phpunit": "<7.5|9.1.2"
  10468. },
  10469. "require-dev": {
  10470. "symfony/deprecation-contracts": "^2.5|^3.0",
  10471. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10472. "symfony/polyfill-php81": "^1.27"
  10473. },
  10474. "bin": [
  10475. "bin/simple-phpunit"
  10476. ],
  10477. "type": "symfony-bridge",
  10478. "extra": {
  10479. "thanks": {
  10480. "name": "phpunit/phpunit",
  10481. "url": "https://github.com/sebastianbergmann/phpunit"
  10482. }
  10483. },
  10484. "autoload": {
  10485. "files": [
  10486. "bootstrap.php"
  10487. ],
  10488. "psr-4": {
  10489. "Symfony\\Bridge\\PhpUnit\\": ""
  10490. },
  10491. "exclude-from-classmap": [
  10492. "/Tests/",
  10493. "/bin/"
  10494. ]
  10495. },
  10496. "notification-url": "https://packagist.org/downloads/",
  10497. "license": [
  10498. "MIT"
  10499. ],
  10500. "authors": [
  10501. {
  10502. "name": "Nicolas Grekas",
  10503. "email": "p@tchwork.com"
  10504. },
  10505. {
  10506. "name": "Symfony Community",
  10507. "homepage": "https://symfony.com/contributors"
  10508. }
  10509. ],
  10510. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10511. "homepage": "https://symfony.com",
  10512. "support": {
  10513. "source": "https://github.com/symfony/phpunit-bridge/tree/v6.4.10"
  10514. },
  10515. "funding": [
  10516. {
  10517. "url": "https://symfony.com/sponsor",
  10518. "type": "custom"
  10519. },
  10520. {
  10521. "url": "https://github.com/fabpot",
  10522. "type": "github"
  10523. },
  10524. {
  10525. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10526. "type": "tidelift"
  10527. }
  10528. ],
  10529. "time": "2024-07-26T12:30:32+00:00"
  10530. },
  10531. {
  10532. "name": "symfony/web-profiler-bundle",
  10533. "version": "v6.4.10",
  10534. "source": {
  10535. "type": "git",
  10536. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10537. "reference": "370c9f1e3567cd4670d44311838e37d16182c3a7"
  10538. },
  10539. "dist": {
  10540. "type": "zip",
  10541. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/370c9f1e3567cd4670d44311838e37d16182c3a7",
  10542. "reference": "370c9f1e3567cd4670d44311838e37d16182c3a7",
  10543. "shasum": ""
  10544. },
  10545. "require": {
  10546. "php": ">=8.1",
  10547. "symfony/config": "^5.4|^6.0|^7.0",
  10548. "symfony/framework-bundle": "^6.4|^7.0",
  10549. "symfony/http-kernel": "^6.4|^7.0",
  10550. "symfony/routing": "^5.4|^6.0|^7.0",
  10551. "symfony/twig-bundle": "^5.4|^6.0",
  10552. "twig/twig": "^2.13|^3.0.4"
  10553. },
  10554. "conflict": {
  10555. "symfony/form": "<5.4",
  10556. "symfony/mailer": "<5.4",
  10557. "symfony/messenger": "<5.4",
  10558. "symfony/twig-bundle": ">=7.0"
  10559. },
  10560. "require-dev": {
  10561. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  10562. "symfony/console": "^5.4|^6.0|^7.0",
  10563. "symfony/css-selector": "^5.4|^6.0|^7.0",
  10564. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10565. },
  10566. "type": "symfony-bundle",
  10567. "autoload": {
  10568. "psr-4": {
  10569. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10570. },
  10571. "exclude-from-classmap": [
  10572. "/Tests/"
  10573. ]
  10574. },
  10575. "notification-url": "https://packagist.org/downloads/",
  10576. "license": [
  10577. "MIT"
  10578. ],
  10579. "authors": [
  10580. {
  10581. "name": "Fabien Potencier",
  10582. "email": "fabien@symfony.com"
  10583. },
  10584. {
  10585. "name": "Symfony Community",
  10586. "homepage": "https://symfony.com/contributors"
  10587. }
  10588. ],
  10589. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10590. "homepage": "https://symfony.com",
  10591. "keywords": [
  10592. "dev"
  10593. ],
  10594. "support": {
  10595. "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.4.10"
  10596. },
  10597. "funding": [
  10598. {
  10599. "url": "https://symfony.com/sponsor",
  10600. "type": "custom"
  10601. },
  10602. {
  10603. "url": "https://github.com/fabpot",
  10604. "type": "github"
  10605. },
  10606. {
  10607. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10608. "type": "tidelift"
  10609. }
  10610. ],
  10611. "time": "2024-07-19T07:26:48+00:00"
  10612. },
  10613. {
  10614. "name": "theseer/tokenizer",
  10615. "version": "1.2.3",
  10616. "source": {
  10617. "type": "git",
  10618. "url": "https://github.com/theseer/tokenizer.git",
  10619. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10620. },
  10621. "dist": {
  10622. "type": "zip",
  10623. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10624. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10625. "shasum": ""
  10626. },
  10627. "require": {
  10628. "ext-dom": "*",
  10629. "ext-tokenizer": "*",
  10630. "ext-xmlwriter": "*",
  10631. "php": "^7.2 || ^8.0"
  10632. },
  10633. "type": "library",
  10634. "autoload": {
  10635. "classmap": [
  10636. "src/"
  10637. ]
  10638. },
  10639. "notification-url": "https://packagist.org/downloads/",
  10640. "license": [
  10641. "BSD-3-Clause"
  10642. ],
  10643. "authors": [
  10644. {
  10645. "name": "Arne Blankerts",
  10646. "email": "arne@blankerts.de",
  10647. "role": "Developer"
  10648. }
  10649. ],
  10650. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10651. "support": {
  10652. "issues": "https://github.com/theseer/tokenizer/issues",
  10653. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10654. },
  10655. "funding": [
  10656. {
  10657. "url": "https://github.com/theseer",
  10658. "type": "github"
  10659. }
  10660. ],
  10661. "time": "2024-03-03T12:36:25+00:00"
  10662. }
  10663. ],
  10664. "aliases": [],
  10665. "minimum-stability": "stable",
  10666. "stability-flags": [],
  10667. "prefer-stable": false,
  10668. "prefer-lowest": false,
  10669. "platform": {
  10670. "php": "^8.1",
  10671. "ext-ctype": "*",
  10672. "ext-iconv": "*"
  10673. },
  10674. "platform-dev": [],
  10675. "platform-overrides": {
  10676. "php": "8.1"
  10677. },
  10678. "plugin-api-version": "2.6.0"
  10679. }