composer.lock 419 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633
  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": "60cf25ed2d175f8e4deddc97b211bf25",
  8. "packages": [
  9. {
  10. "name": "composer/ca-bundle",
  11. "version": "1.5.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/ca-bundle.git",
  15. "reference": "48a792895a2b7a6ee65dd5442c299d7b835b6137"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/48a792895a2b7a6ee65dd5442c299d7b835b6137",
  20. "reference": "48a792895a2b7a6ee65dd5442c299d7b835b6137",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-openssl": "*",
  25. "ext-pcre": "*",
  26. "php": "^7.2 || ^8.0"
  27. },
  28. "require-dev": {
  29. "phpstan/phpstan": "^1.10",
  30. "phpunit/phpunit": "^8 || ^9",
  31. "psr/log": "^1.0 || ^2.0 || ^3.0",
  32. "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  33. },
  34. "type": "library",
  35. "extra": {
  36. "branch-alias": {
  37. "dev-main": "1.x-dev"
  38. }
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Composer\\CaBundle\\": "src"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "MIT"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Jordi Boggiano",
  52. "email": "j.boggiano@seld.be",
  53. "homepage": "http://seld.be"
  54. }
  55. ],
  56. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  57. "keywords": [
  58. "cabundle",
  59. "cacert",
  60. "certificate",
  61. "ssl",
  62. "tls"
  63. ],
  64. "support": {
  65. "irc": "irc://irc.freenode.org/composer",
  66. "issues": "https://github.com/composer/ca-bundle/issues",
  67. "source": "https://github.com/composer/ca-bundle/tree/1.5.2"
  68. },
  69. "funding": [
  70. {
  71. "url": "https://packagist.com",
  72. "type": "custom"
  73. },
  74. {
  75. "url": "https://github.com/composer",
  76. "type": "github"
  77. },
  78. {
  79. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  80. "type": "tidelift"
  81. }
  82. ],
  83. "time": "2024-09-25T07:49:53+00:00"
  84. },
  85. {
  86. "name": "composer/semver",
  87. "version": "3.4.3",
  88. "source": {
  89. "type": "git",
  90. "url": "https://github.com/composer/semver.git",
  91. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  92. },
  93. "dist": {
  94. "type": "zip",
  95. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  96. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  97. "shasum": ""
  98. },
  99. "require": {
  100. "php": "^5.3.2 || ^7.0 || ^8.0"
  101. },
  102. "require-dev": {
  103. "phpstan/phpstan": "^1.11",
  104. "symfony/phpunit-bridge": "^3 || ^7"
  105. },
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-main": "3.x-dev"
  110. }
  111. },
  112. "autoload": {
  113. "psr-4": {
  114. "Composer\\Semver\\": "src"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "MIT"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Nils Adermann",
  124. "email": "naderman@naderman.de",
  125. "homepage": "http://www.naderman.de"
  126. },
  127. {
  128. "name": "Jordi Boggiano",
  129. "email": "j.boggiano@seld.be",
  130. "homepage": "http://seld.be"
  131. },
  132. {
  133. "name": "Rob Bast",
  134. "email": "rob.bast@gmail.com",
  135. "homepage": "http://robbast.nl"
  136. }
  137. ],
  138. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  139. "keywords": [
  140. "semantic",
  141. "semver",
  142. "validation",
  143. "versioning"
  144. ],
  145. "support": {
  146. "irc": "ircs://irc.libera.chat:6697/composer",
  147. "issues": "https://github.com/composer/semver/issues",
  148. "source": "https://github.com/composer/semver/tree/3.4.3"
  149. },
  150. "funding": [
  151. {
  152. "url": "https://packagist.com",
  153. "type": "custom"
  154. },
  155. {
  156. "url": "https://github.com/composer",
  157. "type": "github"
  158. },
  159. {
  160. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  161. "type": "tidelift"
  162. }
  163. ],
  164. "time": "2024-09-19T14:15:21+00:00"
  165. },
  166. {
  167. "name": "debril/feed-io",
  168. "version": "v5.3.2",
  169. "source": {
  170. "type": "git",
  171. "url": "https://github.com/alexdebril/feed-io.git",
  172. "reference": "7c206ea5f07a65e7ccccdcdfbe0803806d54caa5"
  173. },
  174. "dist": {
  175. "type": "zip",
  176. "url": "https://api.github.com/repos/alexdebril/feed-io/zipball/7c206ea5f07a65e7ccccdcdfbe0803806d54caa5",
  177. "reference": "7c206ea5f07a65e7ccccdcdfbe0803806d54caa5",
  178. "shasum": ""
  179. },
  180. "require": {
  181. "ext-dom": "*",
  182. "ext-json": "*",
  183. "ext-libxml": "*",
  184. "guzzlehttp/guzzle": "~6.2|~7.0",
  185. "php": ">=8.0",
  186. "psr/log": "~1.0|~2.0|~3.0"
  187. },
  188. "require-dev": {
  189. "friendsofphp/php-cs-fixer": "^3.5",
  190. "monolog/monolog": "1.*|2.*",
  191. "phpstan/phpstan": "^0.12.81",
  192. "phpunit/phpunit": "~9.3.0"
  193. },
  194. "suggest": {
  195. "monolog/monolog": "Allows to handle logs"
  196. },
  197. "bin": [
  198. "bin/feedio"
  199. ],
  200. "type": "library",
  201. "autoload": {
  202. "psr-4": {
  203. "FeedIo\\": "src/FeedIo"
  204. }
  205. },
  206. "notification-url": "https://packagist.org/downloads/",
  207. "license": [
  208. "MIT"
  209. ],
  210. "authors": [
  211. {
  212. "name": "Alexandre Debril",
  213. "email": "alex.debril@gmail.com"
  214. }
  215. ],
  216. "description": "PHP library built to consume and serve JSONFeed / RSS / Atom feeds",
  217. "homepage": "https://feed-io.net",
  218. "keywords": [
  219. "atom",
  220. "cli",
  221. "client",
  222. "feed",
  223. "jsonfeed",
  224. "news",
  225. "rss"
  226. ],
  227. "support": {
  228. "issues": "https://github.com/alexdebril/feed-io/issues",
  229. "source": "https://github.com/alexdebril/feed-io/tree/v5.3.2"
  230. },
  231. "time": "2023-10-24T15:16:47+00:00"
  232. },
  233. {
  234. "name": "debril/rss-atom-bundle",
  235. "version": "v5.2.0",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/alexdebril/rss-atom-bundle.git",
  239. "reference": "29e624c428d4284726e5da5e0d245cbc93d1f17a"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/alexdebril/rss-atom-bundle/zipball/29e624c428d4284726e5da5e0d245cbc93d1f17a",
  244. "reference": "29e624c428d4284726e5da5e0d245cbc93d1f17a",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "debril/feed-io": "~3.0|~4.0|~5.0",
  249. "php": ">=7.1",
  250. "symfony/config": "~3.4|~4.0|^5.0|^6.0|^7.0",
  251. "symfony/dependency-injection": "~3.4|~4.0|^5.0|^6.0|^7.0",
  252. "symfony/http-foundation": "~3.4|~4.0|^5.0|^6.0|^7.0",
  253. "symfony/http-kernel": "~3.4|~4.0|^5.0|^6.0|^7.0"
  254. },
  255. "require-dev": {
  256. "doctrine/common": "~2.3",
  257. "phpunit/phpunit": "~7.0",
  258. "symfony/browser-kit": ">3.0",
  259. "symfony/finder": ">3.0",
  260. "symfony/framework-bundle": "^4.3|^5.0|^6.0|^7.0",
  261. "symfony/validator": ">3.0",
  262. "symfony/yaml": "^4.0|^5.0|^6.0|^7.0"
  263. },
  264. "type": "symfony-bundle",
  265. "autoload": {
  266. "psr-4": {
  267. "Debril\\RssAtomBundle\\": "src/"
  268. }
  269. },
  270. "notification-url": "https://packagist.org/downloads/",
  271. "license": [
  272. "MIT"
  273. ],
  274. "description": "RSS / Atom and JSONFeed support for Symfony",
  275. "homepage": "http://debril.org/category/rss-atom-bundle/",
  276. "keywords": [
  277. "Syndication",
  278. "atom",
  279. "feed",
  280. "jsonfeed",
  281. "rss"
  282. ],
  283. "support": {
  284. "issues": "https://github.com/alexdebril/rss-atom-bundle/issues",
  285. "source": "https://github.com/alexdebril/rss-atom-bundle/tree/v5.2.0"
  286. },
  287. "time": "2024-01-30T13:37:00+00:00"
  288. },
  289. {
  290. "name": "dflydev/dot-access-data",
  291. "version": "v3.0.3",
  292. "source": {
  293. "type": "git",
  294. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  295. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  296. },
  297. "dist": {
  298. "type": "zip",
  299. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  300. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  301. "shasum": ""
  302. },
  303. "require": {
  304. "php": "^7.1 || ^8.0"
  305. },
  306. "require-dev": {
  307. "phpstan/phpstan": "^0.12.42",
  308. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  309. "scrutinizer/ocular": "1.6.0",
  310. "squizlabs/php_codesniffer": "^3.5",
  311. "vimeo/psalm": "^4.0.0"
  312. },
  313. "type": "library",
  314. "extra": {
  315. "branch-alias": {
  316. "dev-main": "3.x-dev"
  317. }
  318. },
  319. "autoload": {
  320. "psr-4": {
  321. "Dflydev\\DotAccessData\\": "src/"
  322. }
  323. },
  324. "notification-url": "https://packagist.org/downloads/",
  325. "license": [
  326. "MIT"
  327. ],
  328. "authors": [
  329. {
  330. "name": "Dragonfly Development Inc.",
  331. "email": "info@dflydev.com",
  332. "homepage": "http://dflydev.com"
  333. },
  334. {
  335. "name": "Beau Simensen",
  336. "email": "beau@dflydev.com",
  337. "homepage": "http://beausimensen.com"
  338. },
  339. {
  340. "name": "Carlos Frutos",
  341. "email": "carlos@kiwing.it",
  342. "homepage": "https://github.com/cfrutos"
  343. },
  344. {
  345. "name": "Colin O'Dell",
  346. "email": "colinodell@gmail.com",
  347. "homepage": "https://www.colinodell.com"
  348. }
  349. ],
  350. "description": "Given a deep data structure, access data by dot notation.",
  351. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  352. "keywords": [
  353. "access",
  354. "data",
  355. "dot",
  356. "notation"
  357. ],
  358. "support": {
  359. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  360. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  361. },
  362. "time": "2024-07-08T12:26:09+00:00"
  363. },
  364. {
  365. "name": "doctrine/cache",
  366. "version": "2.2.0",
  367. "source": {
  368. "type": "git",
  369. "url": "https://github.com/doctrine/cache.git",
  370. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  371. },
  372. "dist": {
  373. "type": "zip",
  374. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  375. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  376. "shasum": ""
  377. },
  378. "require": {
  379. "php": "~7.1 || ^8.0"
  380. },
  381. "conflict": {
  382. "doctrine/common": ">2.2,<2.4"
  383. },
  384. "require-dev": {
  385. "cache/integration-tests": "dev-master",
  386. "doctrine/coding-standard": "^9",
  387. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  388. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  389. "symfony/cache": "^4.4 || ^5.4 || ^6",
  390. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  391. },
  392. "type": "library",
  393. "autoload": {
  394. "psr-4": {
  395. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "MIT"
  401. ],
  402. "authors": [
  403. {
  404. "name": "Guilherme Blanco",
  405. "email": "guilhermeblanco@gmail.com"
  406. },
  407. {
  408. "name": "Roman Borschel",
  409. "email": "roman@code-factory.org"
  410. },
  411. {
  412. "name": "Benjamin Eberlei",
  413. "email": "kontakt@beberlei.de"
  414. },
  415. {
  416. "name": "Jonathan Wage",
  417. "email": "jonwage@gmail.com"
  418. },
  419. {
  420. "name": "Johannes Schmitt",
  421. "email": "schmittjoh@gmail.com"
  422. }
  423. ],
  424. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  425. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  426. "keywords": [
  427. "abstraction",
  428. "apcu",
  429. "cache",
  430. "caching",
  431. "couchdb",
  432. "memcached",
  433. "php",
  434. "redis",
  435. "xcache"
  436. ],
  437. "support": {
  438. "issues": "https://github.com/doctrine/cache/issues",
  439. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  440. },
  441. "funding": [
  442. {
  443. "url": "https://www.doctrine-project.org/sponsorship.html",
  444. "type": "custom"
  445. },
  446. {
  447. "url": "https://www.patreon.com/phpdoctrine",
  448. "type": "patreon"
  449. },
  450. {
  451. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  452. "type": "tidelift"
  453. }
  454. ],
  455. "time": "2022-05-20T20:07:39+00:00"
  456. },
  457. {
  458. "name": "doctrine/collections",
  459. "version": "2.2.2",
  460. "source": {
  461. "type": "git",
  462. "url": "https://github.com/doctrine/collections.git",
  463. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59"
  464. },
  465. "dist": {
  466. "type": "zip",
  467. "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59",
  468. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  469. "shasum": ""
  470. },
  471. "require": {
  472. "doctrine/deprecations": "^1",
  473. "php": "^8.1"
  474. },
  475. "require-dev": {
  476. "doctrine/coding-standard": "^12",
  477. "ext-json": "*",
  478. "phpstan/phpstan": "^1.8",
  479. "phpstan/phpstan-phpunit": "^1.0",
  480. "phpunit/phpunit": "^10.5",
  481. "vimeo/psalm": "^5.11"
  482. },
  483. "type": "library",
  484. "autoload": {
  485. "psr-4": {
  486. "Doctrine\\Common\\Collections\\": "src"
  487. }
  488. },
  489. "notification-url": "https://packagist.org/downloads/",
  490. "license": [
  491. "MIT"
  492. ],
  493. "authors": [
  494. {
  495. "name": "Guilherme Blanco",
  496. "email": "guilhermeblanco@gmail.com"
  497. },
  498. {
  499. "name": "Roman Borschel",
  500. "email": "roman@code-factory.org"
  501. },
  502. {
  503. "name": "Benjamin Eberlei",
  504. "email": "kontakt@beberlei.de"
  505. },
  506. {
  507. "name": "Jonathan Wage",
  508. "email": "jonwage@gmail.com"
  509. },
  510. {
  511. "name": "Johannes Schmitt",
  512. "email": "schmittjoh@gmail.com"
  513. }
  514. ],
  515. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  516. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  517. "keywords": [
  518. "array",
  519. "collections",
  520. "iterators",
  521. "php"
  522. ],
  523. "support": {
  524. "issues": "https://github.com/doctrine/collections/issues",
  525. "source": "https://github.com/doctrine/collections/tree/2.2.2"
  526. },
  527. "funding": [
  528. {
  529. "url": "https://www.doctrine-project.org/sponsorship.html",
  530. "type": "custom"
  531. },
  532. {
  533. "url": "https://www.patreon.com/phpdoctrine",
  534. "type": "patreon"
  535. },
  536. {
  537. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  538. "type": "tidelift"
  539. }
  540. ],
  541. "time": "2024-04-18T06:56:21+00:00"
  542. },
  543. {
  544. "name": "doctrine/dbal",
  545. "version": "3.9.3",
  546. "source": {
  547. "type": "git",
  548. "url": "https://github.com/doctrine/dbal.git",
  549. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba"
  550. },
  551. "dist": {
  552. "type": "zip",
  553. "url": "https://api.github.com/repos/doctrine/dbal/zipball/61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  554. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  555. "shasum": ""
  556. },
  557. "require": {
  558. "composer-runtime-api": "^2",
  559. "doctrine/cache": "^1.11|^2.0",
  560. "doctrine/deprecations": "^0.5.3|^1",
  561. "doctrine/event-manager": "^1|^2",
  562. "php": "^7.4 || ^8.0",
  563. "psr/cache": "^1|^2|^3",
  564. "psr/log": "^1|^2|^3"
  565. },
  566. "require-dev": {
  567. "doctrine/coding-standard": "12.0.0",
  568. "fig/log-test": "^1",
  569. "jetbrains/phpstorm-stubs": "2023.1",
  570. "phpstan/phpstan": "1.12.6",
  571. "phpstan/phpstan-strict-rules": "^1.6",
  572. "phpunit/phpunit": "9.6.20",
  573. "psalm/plugin-phpunit": "0.18.4",
  574. "slevomat/coding-standard": "8.13.1",
  575. "squizlabs/php_codesniffer": "3.10.2",
  576. "symfony/cache": "^5.4|^6.0|^7.0",
  577. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  578. "vimeo/psalm": "4.30.0"
  579. },
  580. "suggest": {
  581. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  582. },
  583. "bin": [
  584. "bin/doctrine-dbal"
  585. ],
  586. "type": "library",
  587. "autoload": {
  588. "psr-4": {
  589. "Doctrine\\DBAL\\": "src"
  590. }
  591. },
  592. "notification-url": "https://packagist.org/downloads/",
  593. "license": [
  594. "MIT"
  595. ],
  596. "authors": [
  597. {
  598. "name": "Guilherme Blanco",
  599. "email": "guilhermeblanco@gmail.com"
  600. },
  601. {
  602. "name": "Roman Borschel",
  603. "email": "roman@code-factory.org"
  604. },
  605. {
  606. "name": "Benjamin Eberlei",
  607. "email": "kontakt@beberlei.de"
  608. },
  609. {
  610. "name": "Jonathan Wage",
  611. "email": "jonwage@gmail.com"
  612. }
  613. ],
  614. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  615. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  616. "keywords": [
  617. "abstraction",
  618. "database",
  619. "db2",
  620. "dbal",
  621. "mariadb",
  622. "mssql",
  623. "mysql",
  624. "oci8",
  625. "oracle",
  626. "pdo",
  627. "pgsql",
  628. "postgresql",
  629. "queryobject",
  630. "sasql",
  631. "sql",
  632. "sqlite",
  633. "sqlserver",
  634. "sqlsrv"
  635. ],
  636. "support": {
  637. "issues": "https://github.com/doctrine/dbal/issues",
  638. "source": "https://github.com/doctrine/dbal/tree/3.9.3"
  639. },
  640. "funding": [
  641. {
  642. "url": "https://www.doctrine-project.org/sponsorship.html",
  643. "type": "custom"
  644. },
  645. {
  646. "url": "https://www.patreon.com/phpdoctrine",
  647. "type": "patreon"
  648. },
  649. {
  650. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  651. "type": "tidelift"
  652. }
  653. ],
  654. "time": "2024-10-10T17:56:43+00:00"
  655. },
  656. {
  657. "name": "doctrine/deprecations",
  658. "version": "1.1.3",
  659. "source": {
  660. "type": "git",
  661. "url": "https://github.com/doctrine/deprecations.git",
  662. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  663. },
  664. "dist": {
  665. "type": "zip",
  666. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  667. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  668. "shasum": ""
  669. },
  670. "require": {
  671. "php": "^7.1 || ^8.0"
  672. },
  673. "require-dev": {
  674. "doctrine/coding-standard": "^9",
  675. "phpstan/phpstan": "1.4.10 || 1.10.15",
  676. "phpstan/phpstan-phpunit": "^1.0",
  677. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  678. "psalm/plugin-phpunit": "0.18.4",
  679. "psr/log": "^1 || ^2 || ^3",
  680. "vimeo/psalm": "4.30.0 || 5.12.0"
  681. },
  682. "suggest": {
  683. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  684. },
  685. "type": "library",
  686. "autoload": {
  687. "psr-4": {
  688. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  689. }
  690. },
  691. "notification-url": "https://packagist.org/downloads/",
  692. "license": [
  693. "MIT"
  694. ],
  695. "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.",
  696. "homepage": "https://www.doctrine-project.org/",
  697. "support": {
  698. "issues": "https://github.com/doctrine/deprecations/issues",
  699. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  700. },
  701. "time": "2024-01-30T19:34:25+00:00"
  702. },
  703. {
  704. "name": "doctrine/doctrine-bundle",
  705. "version": "2.13.0",
  706. "source": {
  707. "type": "git",
  708. "url": "https://github.com/doctrine/DoctrineBundle.git",
  709. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563"
  710. },
  711. "dist": {
  712. "type": "zip",
  713. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563",
  714. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563",
  715. "shasum": ""
  716. },
  717. "require": {
  718. "doctrine/cache": "^1.11 || ^2.0",
  719. "doctrine/dbal": "^3.7.0 || ^4.0",
  720. "doctrine/persistence": "^2.2 || ^3",
  721. "doctrine/sql-formatter": "^1.0.1",
  722. "php": "^7.4 || ^8.0",
  723. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  724. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  725. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  726. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  727. "symfony/deprecation-contracts": "^2.1 || ^3",
  728. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  729. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  730. "symfony/polyfill-php80": "^1.15",
  731. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  732. },
  733. "conflict": {
  734. "doctrine/annotations": ">=3.0",
  735. "doctrine/orm": "<2.17 || >=4.0",
  736. "twig/twig": "<1.34 || >=2.0 <2.4"
  737. },
  738. "require-dev": {
  739. "doctrine/annotations": "^1 || ^2",
  740. "doctrine/coding-standard": "^12",
  741. "doctrine/deprecations": "^1.0",
  742. "doctrine/orm": "^2.17 || ^3.0",
  743. "friendsofphp/proxy-manager-lts": "^1.0",
  744. "phpunit/phpunit": "^9.5.26",
  745. "psalm/plugin-phpunit": "^0.18.4",
  746. "psalm/plugin-symfony": "^5",
  747. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  748. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  749. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  750. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  751. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  752. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  753. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  754. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  755. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  756. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  757. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  758. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  759. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  760. "vimeo/psalm": "^5.15"
  761. },
  762. "suggest": {
  763. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  764. "ext-pdo": "*",
  765. "symfony/web-profiler-bundle": "To use the data collector."
  766. },
  767. "type": "symfony-bundle",
  768. "autoload": {
  769. "psr-4": {
  770. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  771. }
  772. },
  773. "notification-url": "https://packagist.org/downloads/",
  774. "license": [
  775. "MIT"
  776. ],
  777. "authors": [
  778. {
  779. "name": "Fabien Potencier",
  780. "email": "fabien@symfony.com"
  781. },
  782. {
  783. "name": "Benjamin Eberlei",
  784. "email": "kontakt@beberlei.de"
  785. },
  786. {
  787. "name": "Symfony Community",
  788. "homepage": "https://symfony.com/contributors"
  789. },
  790. {
  791. "name": "Doctrine Project",
  792. "homepage": "https://www.doctrine-project.org/"
  793. }
  794. ],
  795. "description": "Symfony DoctrineBundle",
  796. "homepage": "https://www.doctrine-project.org",
  797. "keywords": [
  798. "database",
  799. "dbal",
  800. "orm",
  801. "persistence"
  802. ],
  803. "support": {
  804. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  805. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0"
  806. },
  807. "funding": [
  808. {
  809. "url": "https://www.doctrine-project.org/sponsorship.html",
  810. "type": "custom"
  811. },
  812. {
  813. "url": "https://www.patreon.com/phpdoctrine",
  814. "type": "patreon"
  815. },
  816. {
  817. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  818. "type": "tidelift"
  819. }
  820. ],
  821. "time": "2024-09-01T09:46:40+00:00"
  822. },
  823. {
  824. "name": "doctrine/doctrine-migrations-bundle",
  825. "version": "3.3.1",
  826. "source": {
  827. "type": "git",
  828. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  829. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
  830. },
  831. "dist": {
  832. "type": "zip",
  833. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  834. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  835. "shasum": ""
  836. },
  837. "require": {
  838. "doctrine/doctrine-bundle": "^2.4",
  839. "doctrine/migrations": "^3.2",
  840. "php": "^7.2|^8.0",
  841. "symfony/deprecation-contracts": "^2.1 || ^3",
  842. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  843. },
  844. "require-dev": {
  845. "composer/semver": "^3.0",
  846. "doctrine/coding-standard": "^12",
  847. "doctrine/orm": "^2.6 || ^3",
  848. "doctrine/persistence": "^2.0 || ^3 ",
  849. "phpstan/phpstan": "^1.4",
  850. "phpstan/phpstan-deprecation-rules": "^1",
  851. "phpstan/phpstan-phpunit": "^1",
  852. "phpstan/phpstan-strict-rules": "^1.1",
  853. "phpstan/phpstan-symfony": "^1.3",
  854. "phpunit/phpunit": "^8.5|^9.5",
  855. "psalm/plugin-phpunit": "^0.18.4",
  856. "psalm/plugin-symfony": "^3 || ^5",
  857. "symfony/phpunit-bridge": "^6.3 || ^7",
  858. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  859. "vimeo/psalm": "^4.30 || ^5.15"
  860. },
  861. "type": "symfony-bundle",
  862. "autoload": {
  863. "psr-4": {
  864. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  865. },
  866. "exclude-from-classmap": [
  867. "/Tests/"
  868. ]
  869. },
  870. "notification-url": "https://packagist.org/downloads/",
  871. "license": [
  872. "MIT"
  873. ],
  874. "authors": [
  875. {
  876. "name": "Fabien Potencier",
  877. "email": "fabien@symfony.com"
  878. },
  879. {
  880. "name": "Doctrine Project",
  881. "homepage": "https://www.doctrine-project.org"
  882. },
  883. {
  884. "name": "Symfony Community",
  885. "homepage": "https://symfony.com/contributors"
  886. }
  887. ],
  888. "description": "Symfony DoctrineMigrationsBundle",
  889. "homepage": "https://www.doctrine-project.org",
  890. "keywords": [
  891. "dbal",
  892. "migrations",
  893. "schema"
  894. ],
  895. "support": {
  896. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  897. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
  898. },
  899. "funding": [
  900. {
  901. "url": "https://www.doctrine-project.org/sponsorship.html",
  902. "type": "custom"
  903. },
  904. {
  905. "url": "https://www.patreon.com/phpdoctrine",
  906. "type": "patreon"
  907. },
  908. {
  909. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  910. "type": "tidelift"
  911. }
  912. ],
  913. "time": "2024-05-14T20:32:18+00:00"
  914. },
  915. {
  916. "name": "doctrine/event-manager",
  917. "version": "2.0.1",
  918. "source": {
  919. "type": "git",
  920. "url": "https://github.com/doctrine/event-manager.git",
  921. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  922. },
  923. "dist": {
  924. "type": "zip",
  925. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  926. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  927. "shasum": ""
  928. },
  929. "require": {
  930. "php": "^8.1"
  931. },
  932. "conflict": {
  933. "doctrine/common": "<2.9"
  934. },
  935. "require-dev": {
  936. "doctrine/coding-standard": "^12",
  937. "phpstan/phpstan": "^1.8.8",
  938. "phpunit/phpunit": "^10.5",
  939. "vimeo/psalm": "^5.24"
  940. },
  941. "type": "library",
  942. "autoload": {
  943. "psr-4": {
  944. "Doctrine\\Common\\": "src"
  945. }
  946. },
  947. "notification-url": "https://packagist.org/downloads/",
  948. "license": [
  949. "MIT"
  950. ],
  951. "authors": [
  952. {
  953. "name": "Guilherme Blanco",
  954. "email": "guilhermeblanco@gmail.com"
  955. },
  956. {
  957. "name": "Roman Borschel",
  958. "email": "roman@code-factory.org"
  959. },
  960. {
  961. "name": "Benjamin Eberlei",
  962. "email": "kontakt@beberlei.de"
  963. },
  964. {
  965. "name": "Jonathan Wage",
  966. "email": "jonwage@gmail.com"
  967. },
  968. {
  969. "name": "Johannes Schmitt",
  970. "email": "schmittjoh@gmail.com"
  971. },
  972. {
  973. "name": "Marco Pivetta",
  974. "email": "ocramius@gmail.com"
  975. }
  976. ],
  977. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  978. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  979. "keywords": [
  980. "event",
  981. "event dispatcher",
  982. "event manager",
  983. "event system",
  984. "events"
  985. ],
  986. "support": {
  987. "issues": "https://github.com/doctrine/event-manager/issues",
  988. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  989. },
  990. "funding": [
  991. {
  992. "url": "https://www.doctrine-project.org/sponsorship.html",
  993. "type": "custom"
  994. },
  995. {
  996. "url": "https://www.patreon.com/phpdoctrine",
  997. "type": "patreon"
  998. },
  999. {
  1000. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1001. "type": "tidelift"
  1002. }
  1003. ],
  1004. "time": "2024-05-22T20:47:39+00:00"
  1005. },
  1006. {
  1007. "name": "doctrine/inflector",
  1008. "version": "2.0.10",
  1009. "source": {
  1010. "type": "git",
  1011. "url": "https://github.com/doctrine/inflector.git",
  1012. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1013. },
  1014. "dist": {
  1015. "type": "zip",
  1016. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1017. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1018. "shasum": ""
  1019. },
  1020. "require": {
  1021. "php": "^7.2 || ^8.0"
  1022. },
  1023. "require-dev": {
  1024. "doctrine/coding-standard": "^11.0",
  1025. "phpstan/phpstan": "^1.8",
  1026. "phpstan/phpstan-phpunit": "^1.1",
  1027. "phpstan/phpstan-strict-rules": "^1.3",
  1028. "phpunit/phpunit": "^8.5 || ^9.5",
  1029. "vimeo/psalm": "^4.25 || ^5.4"
  1030. },
  1031. "type": "library",
  1032. "autoload": {
  1033. "psr-4": {
  1034. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1035. }
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Guilherme Blanco",
  1044. "email": "guilhermeblanco@gmail.com"
  1045. },
  1046. {
  1047. "name": "Roman Borschel",
  1048. "email": "roman@code-factory.org"
  1049. },
  1050. {
  1051. "name": "Benjamin Eberlei",
  1052. "email": "kontakt@beberlei.de"
  1053. },
  1054. {
  1055. "name": "Jonathan Wage",
  1056. "email": "jonwage@gmail.com"
  1057. },
  1058. {
  1059. "name": "Johannes Schmitt",
  1060. "email": "schmittjoh@gmail.com"
  1061. }
  1062. ],
  1063. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1064. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1065. "keywords": [
  1066. "inflection",
  1067. "inflector",
  1068. "lowercase",
  1069. "manipulation",
  1070. "php",
  1071. "plural",
  1072. "singular",
  1073. "strings",
  1074. "uppercase",
  1075. "words"
  1076. ],
  1077. "support": {
  1078. "issues": "https://github.com/doctrine/inflector/issues",
  1079. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1080. },
  1081. "funding": [
  1082. {
  1083. "url": "https://www.doctrine-project.org/sponsorship.html",
  1084. "type": "custom"
  1085. },
  1086. {
  1087. "url": "https://www.patreon.com/phpdoctrine",
  1088. "type": "patreon"
  1089. },
  1090. {
  1091. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1092. "type": "tidelift"
  1093. }
  1094. ],
  1095. "time": "2024-02-18T20:23:39+00:00"
  1096. },
  1097. {
  1098. "name": "doctrine/instantiator",
  1099. "version": "2.0.0",
  1100. "source": {
  1101. "type": "git",
  1102. "url": "https://github.com/doctrine/instantiator.git",
  1103. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  1104. },
  1105. "dist": {
  1106. "type": "zip",
  1107. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1108. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  1109. "shasum": ""
  1110. },
  1111. "require": {
  1112. "php": "^8.1"
  1113. },
  1114. "require-dev": {
  1115. "doctrine/coding-standard": "^11",
  1116. "ext-pdo": "*",
  1117. "ext-phar": "*",
  1118. "phpbench/phpbench": "^1.2",
  1119. "phpstan/phpstan": "^1.9.4",
  1120. "phpstan/phpstan-phpunit": "^1.3",
  1121. "phpunit/phpunit": "^9.5.27",
  1122. "vimeo/psalm": "^5.4"
  1123. },
  1124. "type": "library",
  1125. "autoload": {
  1126. "psr-4": {
  1127. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1128. }
  1129. },
  1130. "notification-url": "https://packagist.org/downloads/",
  1131. "license": [
  1132. "MIT"
  1133. ],
  1134. "authors": [
  1135. {
  1136. "name": "Marco Pivetta",
  1137. "email": "ocramius@gmail.com",
  1138. "homepage": "https://ocramius.github.io/"
  1139. }
  1140. ],
  1141. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1142. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1143. "keywords": [
  1144. "constructor",
  1145. "instantiate"
  1146. ],
  1147. "support": {
  1148. "issues": "https://github.com/doctrine/instantiator/issues",
  1149. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  1150. },
  1151. "funding": [
  1152. {
  1153. "url": "https://www.doctrine-project.org/sponsorship.html",
  1154. "type": "custom"
  1155. },
  1156. {
  1157. "url": "https://www.patreon.com/phpdoctrine",
  1158. "type": "patreon"
  1159. },
  1160. {
  1161. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1162. "type": "tidelift"
  1163. }
  1164. ],
  1165. "time": "2022-12-30T00:23:10+00:00"
  1166. },
  1167. {
  1168. "name": "doctrine/lexer",
  1169. "version": "3.0.1",
  1170. "source": {
  1171. "type": "git",
  1172. "url": "https://github.com/doctrine/lexer.git",
  1173. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1174. },
  1175. "dist": {
  1176. "type": "zip",
  1177. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1178. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1179. "shasum": ""
  1180. },
  1181. "require": {
  1182. "php": "^8.1"
  1183. },
  1184. "require-dev": {
  1185. "doctrine/coding-standard": "^12",
  1186. "phpstan/phpstan": "^1.10",
  1187. "phpunit/phpunit": "^10.5",
  1188. "psalm/plugin-phpunit": "^0.18.3",
  1189. "vimeo/psalm": "^5.21"
  1190. },
  1191. "type": "library",
  1192. "autoload": {
  1193. "psr-4": {
  1194. "Doctrine\\Common\\Lexer\\": "src"
  1195. }
  1196. },
  1197. "notification-url": "https://packagist.org/downloads/",
  1198. "license": [
  1199. "MIT"
  1200. ],
  1201. "authors": [
  1202. {
  1203. "name": "Guilherme Blanco",
  1204. "email": "guilhermeblanco@gmail.com"
  1205. },
  1206. {
  1207. "name": "Roman Borschel",
  1208. "email": "roman@code-factory.org"
  1209. },
  1210. {
  1211. "name": "Johannes Schmitt",
  1212. "email": "schmittjoh@gmail.com"
  1213. }
  1214. ],
  1215. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1216. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1217. "keywords": [
  1218. "annotations",
  1219. "docblock",
  1220. "lexer",
  1221. "parser",
  1222. "php"
  1223. ],
  1224. "support": {
  1225. "issues": "https://github.com/doctrine/lexer/issues",
  1226. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1227. },
  1228. "funding": [
  1229. {
  1230. "url": "https://www.doctrine-project.org/sponsorship.html",
  1231. "type": "custom"
  1232. },
  1233. {
  1234. "url": "https://www.patreon.com/phpdoctrine",
  1235. "type": "patreon"
  1236. },
  1237. {
  1238. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1239. "type": "tidelift"
  1240. }
  1241. ],
  1242. "time": "2024-02-05T11:56:58+00:00"
  1243. },
  1244. {
  1245. "name": "doctrine/migrations",
  1246. "version": "3.8.2",
  1247. "source": {
  1248. "type": "git",
  1249. "url": "https://github.com/doctrine/migrations.git",
  1250. "reference": "5007eb1168691225ac305fe16856755c20860842"
  1251. },
  1252. "dist": {
  1253. "type": "zip",
  1254. "url": "https://api.github.com/repos/doctrine/migrations/zipball/5007eb1168691225ac305fe16856755c20860842",
  1255. "reference": "5007eb1168691225ac305fe16856755c20860842",
  1256. "shasum": ""
  1257. },
  1258. "require": {
  1259. "composer-runtime-api": "^2",
  1260. "doctrine/dbal": "^3.6 || ^4",
  1261. "doctrine/deprecations": "^0.5.3 || ^1",
  1262. "doctrine/event-manager": "^1.2 || ^2.0",
  1263. "php": "^8.1",
  1264. "psr/log": "^1.1.3 || ^2 || ^3",
  1265. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1266. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1267. "symfony/var-exporter": "^6.2 || ^7.0"
  1268. },
  1269. "conflict": {
  1270. "doctrine/orm": "<2.12 || >=4"
  1271. },
  1272. "require-dev": {
  1273. "doctrine/coding-standard": "^12",
  1274. "doctrine/orm": "^2.13 || ^3",
  1275. "doctrine/persistence": "^2 || ^3",
  1276. "doctrine/sql-formatter": "^1.0",
  1277. "ext-pdo_sqlite": "*",
  1278. "fig/log-test": "^1",
  1279. "phpstan/phpstan": "^1.10",
  1280. "phpstan/phpstan-deprecation-rules": "^1.1",
  1281. "phpstan/phpstan-phpunit": "^1.3",
  1282. "phpstan/phpstan-strict-rules": "^1.4",
  1283. "phpstan/phpstan-symfony": "^1.3",
  1284. "phpunit/phpunit": "^10.3",
  1285. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1286. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1287. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1288. },
  1289. "suggest": {
  1290. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1291. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1292. },
  1293. "bin": [
  1294. "bin/doctrine-migrations"
  1295. ],
  1296. "type": "library",
  1297. "autoload": {
  1298. "psr-4": {
  1299. "Doctrine\\Migrations\\": "src"
  1300. }
  1301. },
  1302. "notification-url": "https://packagist.org/downloads/",
  1303. "license": [
  1304. "MIT"
  1305. ],
  1306. "authors": [
  1307. {
  1308. "name": "Benjamin Eberlei",
  1309. "email": "kontakt@beberlei.de"
  1310. },
  1311. {
  1312. "name": "Jonathan Wage",
  1313. "email": "jonwage@gmail.com"
  1314. },
  1315. {
  1316. "name": "Michael Simonson",
  1317. "email": "contact@mikesimonson.com"
  1318. }
  1319. ],
  1320. "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.",
  1321. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1322. "keywords": [
  1323. "database",
  1324. "dbal",
  1325. "migrations"
  1326. ],
  1327. "support": {
  1328. "issues": "https://github.com/doctrine/migrations/issues",
  1329. "source": "https://github.com/doctrine/migrations/tree/3.8.2"
  1330. },
  1331. "funding": [
  1332. {
  1333. "url": "https://www.doctrine-project.org/sponsorship.html",
  1334. "type": "custom"
  1335. },
  1336. {
  1337. "url": "https://www.patreon.com/phpdoctrine",
  1338. "type": "patreon"
  1339. },
  1340. {
  1341. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1342. "type": "tidelift"
  1343. }
  1344. ],
  1345. "time": "2024-10-10T21:35:27+00:00"
  1346. },
  1347. {
  1348. "name": "doctrine/orm",
  1349. "version": "3.3.0",
  1350. "source": {
  1351. "type": "git",
  1352. "url": "https://github.com/doctrine/orm.git",
  1353. "reference": "69958152e661aa9c14e80d1ee4962863485aa60b"
  1354. },
  1355. "dist": {
  1356. "type": "zip",
  1357. "url": "https://api.github.com/repos/doctrine/orm/zipball/69958152e661aa9c14e80d1ee4962863485aa60b",
  1358. "reference": "69958152e661aa9c14e80d1ee4962863485aa60b",
  1359. "shasum": ""
  1360. },
  1361. "require": {
  1362. "composer-runtime-api": "^2",
  1363. "doctrine/collections": "^2.2",
  1364. "doctrine/dbal": "^3.8.2 || ^4",
  1365. "doctrine/deprecations": "^0.5.3 || ^1",
  1366. "doctrine/event-manager": "^1.2 || ^2",
  1367. "doctrine/inflector": "^1.4 || ^2.0",
  1368. "doctrine/instantiator": "^1.3 || ^2",
  1369. "doctrine/lexer": "^3",
  1370. "doctrine/persistence": "^3.3.1",
  1371. "ext-ctype": "*",
  1372. "php": "^8.1",
  1373. "psr/cache": "^1 || ^2 || ^3",
  1374. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1375. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1376. },
  1377. "require-dev": {
  1378. "doctrine/coding-standard": "^12.0",
  1379. "phpbench/phpbench": "^1.0",
  1380. "phpdocumentor/guides-cli": "^1.4",
  1381. "phpstan/extension-installer": "^1.4",
  1382. "phpstan/phpstan": "1.12.6",
  1383. "phpstan/phpstan-deprecation-rules": "^1.2",
  1384. "phpunit/phpunit": "^10.4.0",
  1385. "psr/log": "^1 || ^2 || ^3",
  1386. "squizlabs/php_codesniffer": "3.7.2",
  1387. "symfony/cache": "^5.4 || ^6.2 || ^7.0",
  1388. "vimeo/psalm": "5.24.0"
  1389. },
  1390. "suggest": {
  1391. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1392. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1393. },
  1394. "type": "library",
  1395. "autoload": {
  1396. "psr-4": {
  1397. "Doctrine\\ORM\\": "src"
  1398. }
  1399. },
  1400. "notification-url": "https://packagist.org/downloads/",
  1401. "license": [
  1402. "MIT"
  1403. ],
  1404. "authors": [
  1405. {
  1406. "name": "Guilherme Blanco",
  1407. "email": "guilhermeblanco@gmail.com"
  1408. },
  1409. {
  1410. "name": "Roman Borschel",
  1411. "email": "roman@code-factory.org"
  1412. },
  1413. {
  1414. "name": "Benjamin Eberlei",
  1415. "email": "kontakt@beberlei.de"
  1416. },
  1417. {
  1418. "name": "Jonathan Wage",
  1419. "email": "jonwage@gmail.com"
  1420. },
  1421. {
  1422. "name": "Marco Pivetta",
  1423. "email": "ocramius@gmail.com"
  1424. }
  1425. ],
  1426. "description": "Object-Relational-Mapper for PHP",
  1427. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1428. "keywords": [
  1429. "database",
  1430. "orm"
  1431. ],
  1432. "support": {
  1433. "issues": "https://github.com/doctrine/orm/issues",
  1434. "source": "https://github.com/doctrine/orm/tree/3.3.0"
  1435. },
  1436. "time": "2024-10-12T20:07:18+00:00"
  1437. },
  1438. {
  1439. "name": "doctrine/persistence",
  1440. "version": "3.3.3",
  1441. "source": {
  1442. "type": "git",
  1443. "url": "https://github.com/doctrine/persistence.git",
  1444. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1445. },
  1446. "dist": {
  1447. "type": "zip",
  1448. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1449. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1450. "shasum": ""
  1451. },
  1452. "require": {
  1453. "doctrine/event-manager": "^1 || ^2",
  1454. "php": "^7.2 || ^8.0",
  1455. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1456. },
  1457. "conflict": {
  1458. "doctrine/common": "<2.10"
  1459. },
  1460. "require-dev": {
  1461. "doctrine/coding-standard": "^12",
  1462. "doctrine/common": "^3.0",
  1463. "phpstan/phpstan": "1.11.1",
  1464. "phpstan/phpstan-phpunit": "^1",
  1465. "phpstan/phpstan-strict-rules": "^1.1",
  1466. "phpunit/phpunit": "^8.5 || ^9.5",
  1467. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1468. "vimeo/psalm": "4.30.0 || 5.24.0"
  1469. },
  1470. "type": "library",
  1471. "autoload": {
  1472. "psr-4": {
  1473. "Doctrine\\Persistence\\": "src/Persistence"
  1474. }
  1475. },
  1476. "notification-url": "https://packagist.org/downloads/",
  1477. "license": [
  1478. "MIT"
  1479. ],
  1480. "authors": [
  1481. {
  1482. "name": "Guilherme Blanco",
  1483. "email": "guilhermeblanco@gmail.com"
  1484. },
  1485. {
  1486. "name": "Roman Borschel",
  1487. "email": "roman@code-factory.org"
  1488. },
  1489. {
  1490. "name": "Benjamin Eberlei",
  1491. "email": "kontakt@beberlei.de"
  1492. },
  1493. {
  1494. "name": "Jonathan Wage",
  1495. "email": "jonwage@gmail.com"
  1496. },
  1497. {
  1498. "name": "Johannes Schmitt",
  1499. "email": "schmittjoh@gmail.com"
  1500. },
  1501. {
  1502. "name": "Marco Pivetta",
  1503. "email": "ocramius@gmail.com"
  1504. }
  1505. ],
  1506. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1507. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1508. "keywords": [
  1509. "mapper",
  1510. "object",
  1511. "odm",
  1512. "orm",
  1513. "persistence"
  1514. ],
  1515. "support": {
  1516. "issues": "https://github.com/doctrine/persistence/issues",
  1517. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1518. },
  1519. "funding": [
  1520. {
  1521. "url": "https://www.doctrine-project.org/sponsorship.html",
  1522. "type": "custom"
  1523. },
  1524. {
  1525. "url": "https://www.patreon.com/phpdoctrine",
  1526. "type": "patreon"
  1527. },
  1528. {
  1529. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1530. "type": "tidelift"
  1531. }
  1532. ],
  1533. "time": "2024-06-20T10:14:30+00:00"
  1534. },
  1535. {
  1536. "name": "doctrine/sql-formatter",
  1537. "version": "1.5.1",
  1538. "source": {
  1539. "type": "git",
  1540. "url": "https://github.com/doctrine/sql-formatter.git",
  1541. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86"
  1542. },
  1543. "dist": {
  1544. "type": "zip",
  1545. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/b784cbde727cf806721451dde40eff4fec3bbe86",
  1546. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86",
  1547. "shasum": ""
  1548. },
  1549. "require": {
  1550. "php": "^8.1"
  1551. },
  1552. "require-dev": {
  1553. "doctrine/coding-standard": "^12",
  1554. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1555. "phpstan/phpstan": "^1.10",
  1556. "phpunit/phpunit": "^10.5",
  1557. "vimeo/psalm": "^5.24"
  1558. },
  1559. "bin": [
  1560. "bin/sql-formatter"
  1561. ],
  1562. "type": "library",
  1563. "autoload": {
  1564. "psr-4": {
  1565. "Doctrine\\SqlFormatter\\": "src"
  1566. }
  1567. },
  1568. "notification-url": "https://packagist.org/downloads/",
  1569. "license": [
  1570. "MIT"
  1571. ],
  1572. "authors": [
  1573. {
  1574. "name": "Jeremy Dorn",
  1575. "email": "jeremy@jeremydorn.com",
  1576. "homepage": "https://jeremydorn.com/"
  1577. }
  1578. ],
  1579. "description": "a PHP SQL highlighting library",
  1580. "homepage": "https://github.com/doctrine/sql-formatter/",
  1581. "keywords": [
  1582. "highlight",
  1583. "sql"
  1584. ],
  1585. "support": {
  1586. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1587. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.1"
  1588. },
  1589. "time": "2024-10-21T18:21:57+00:00"
  1590. },
  1591. {
  1592. "name": "egulias/email-validator",
  1593. "version": "4.0.2",
  1594. "source": {
  1595. "type": "git",
  1596. "url": "https://github.com/egulias/EmailValidator.git",
  1597. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1598. },
  1599. "dist": {
  1600. "type": "zip",
  1601. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1602. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1603. "shasum": ""
  1604. },
  1605. "require": {
  1606. "doctrine/lexer": "^2.0 || ^3.0",
  1607. "php": ">=8.1",
  1608. "symfony/polyfill-intl-idn": "^1.26"
  1609. },
  1610. "require-dev": {
  1611. "phpunit/phpunit": "^10.2",
  1612. "vimeo/psalm": "^5.12"
  1613. },
  1614. "suggest": {
  1615. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1616. },
  1617. "type": "library",
  1618. "extra": {
  1619. "branch-alias": {
  1620. "dev-master": "4.0.x-dev"
  1621. }
  1622. },
  1623. "autoload": {
  1624. "psr-4": {
  1625. "Egulias\\EmailValidator\\": "src"
  1626. }
  1627. },
  1628. "notification-url": "https://packagist.org/downloads/",
  1629. "license": [
  1630. "MIT"
  1631. ],
  1632. "authors": [
  1633. {
  1634. "name": "Eduardo Gulias Davis"
  1635. }
  1636. ],
  1637. "description": "A library for validating emails against several RFCs",
  1638. "homepage": "https://github.com/egulias/EmailValidator",
  1639. "keywords": [
  1640. "email",
  1641. "emailvalidation",
  1642. "emailvalidator",
  1643. "validation",
  1644. "validator"
  1645. ],
  1646. "support": {
  1647. "issues": "https://github.com/egulias/EmailValidator/issues",
  1648. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1649. },
  1650. "funding": [
  1651. {
  1652. "url": "https://github.com/egulias",
  1653. "type": "github"
  1654. }
  1655. ],
  1656. "time": "2023-10-06T06:47:41+00:00"
  1657. },
  1658. {
  1659. "name": "embed/embed",
  1660. "version": "v4.4.12",
  1661. "source": {
  1662. "type": "git",
  1663. "url": "https://github.com/oscarotero/Embed.git",
  1664. "reference": "b0e1c0496e3707794e96d4eef53ffffd538b850a"
  1665. },
  1666. "dist": {
  1667. "type": "zip",
  1668. "url": "https://api.github.com/repos/oscarotero/Embed/zipball/b0e1c0496e3707794e96d4eef53ffffd538b850a",
  1669. "reference": "b0e1c0496e3707794e96d4eef53ffffd538b850a",
  1670. "shasum": ""
  1671. },
  1672. "require": {
  1673. "composer/ca-bundle": "^1.0",
  1674. "ext-curl": "*",
  1675. "ext-dom": "*",
  1676. "ext-json": "*",
  1677. "ext-mbstring": "*",
  1678. "ml/json-ld": "^1.1",
  1679. "oscarotero/html-parser": "^0.1.4",
  1680. "php": "^7.4|^8",
  1681. "psr/http-client": "^1.0",
  1682. "psr/http-factory": "^1.0",
  1683. "psr/http-message": "^1.0|^2.0"
  1684. },
  1685. "require-dev": {
  1686. "brick/varexporter": "^0.3.1",
  1687. "friendsofphp/php-cs-fixer": "^2.0",
  1688. "nyholm/psr7": "^1.2",
  1689. "oscarotero/php-cs-fixer-config": "^1.0",
  1690. "phpunit/phpunit": "^9.0",
  1691. "symfony/css-selector": "^5.0"
  1692. },
  1693. "suggest": {
  1694. "symfony/css-selector": "If you want to get elements using css selectors"
  1695. },
  1696. "type": "library",
  1697. "autoload": {
  1698. "files": [
  1699. "src/functions.php"
  1700. ],
  1701. "psr-4": {
  1702. "Embed\\": "src"
  1703. }
  1704. },
  1705. "notification-url": "https://packagist.org/downloads/",
  1706. "license": [
  1707. "MIT"
  1708. ],
  1709. "authors": [
  1710. {
  1711. "name": "Oscar Otero",
  1712. "email": "oom@oscarotero.com",
  1713. "homepage": "http://oscarotero.com",
  1714. "role": "Developer"
  1715. }
  1716. ],
  1717. "description": "PHP library to retrieve page info using oembed, opengraph, etc",
  1718. "homepage": "https://github.com/oscarotero/Embed",
  1719. "keywords": [
  1720. "embed",
  1721. "embedly",
  1722. "oembed",
  1723. "opengraph",
  1724. "twitter cards"
  1725. ],
  1726. "support": {
  1727. "email": "oom@oscarotero.com",
  1728. "issues": "https://github.com/oscarotero/Embed/issues",
  1729. "source": "https://github.com/oscarotero/Embed/tree/v4.4.12"
  1730. },
  1731. "funding": [
  1732. {
  1733. "url": "https://paypal.me/oscarotero",
  1734. "type": "custom"
  1735. },
  1736. {
  1737. "url": "https://github.com/oscarotero",
  1738. "type": "github"
  1739. },
  1740. {
  1741. "url": "https://www.patreon.com/misteroom",
  1742. "type": "patreon"
  1743. }
  1744. ],
  1745. "time": "2024-07-24T14:08:11+00:00"
  1746. },
  1747. {
  1748. "name": "guzzlehttp/guzzle",
  1749. "version": "7.9.2",
  1750. "source": {
  1751. "type": "git",
  1752. "url": "https://github.com/guzzle/guzzle.git",
  1753. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1754. },
  1755. "dist": {
  1756. "type": "zip",
  1757. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1758. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1759. "shasum": ""
  1760. },
  1761. "require": {
  1762. "ext-json": "*",
  1763. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1764. "guzzlehttp/psr7": "^2.7.0",
  1765. "php": "^7.2.5 || ^8.0",
  1766. "psr/http-client": "^1.0",
  1767. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1768. },
  1769. "provide": {
  1770. "psr/http-client-implementation": "1.0"
  1771. },
  1772. "require-dev": {
  1773. "bamarni/composer-bin-plugin": "^1.8.2",
  1774. "ext-curl": "*",
  1775. "guzzle/client-integration-tests": "3.0.2",
  1776. "php-http/message-factory": "^1.1",
  1777. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1778. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1779. },
  1780. "suggest": {
  1781. "ext-curl": "Required for CURL handler support",
  1782. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1783. "psr/log": "Required for using the Log middleware"
  1784. },
  1785. "type": "library",
  1786. "extra": {
  1787. "bamarni-bin": {
  1788. "bin-links": true,
  1789. "forward-command": false
  1790. }
  1791. },
  1792. "autoload": {
  1793. "files": [
  1794. "src/functions_include.php"
  1795. ],
  1796. "psr-4": {
  1797. "GuzzleHttp\\": "src/"
  1798. }
  1799. },
  1800. "notification-url": "https://packagist.org/downloads/",
  1801. "license": [
  1802. "MIT"
  1803. ],
  1804. "authors": [
  1805. {
  1806. "name": "Graham Campbell",
  1807. "email": "hello@gjcampbell.co.uk",
  1808. "homepage": "https://github.com/GrahamCampbell"
  1809. },
  1810. {
  1811. "name": "Michael Dowling",
  1812. "email": "mtdowling@gmail.com",
  1813. "homepage": "https://github.com/mtdowling"
  1814. },
  1815. {
  1816. "name": "Jeremy Lindblom",
  1817. "email": "jeremeamia@gmail.com",
  1818. "homepage": "https://github.com/jeremeamia"
  1819. },
  1820. {
  1821. "name": "George Mponos",
  1822. "email": "gmponos@gmail.com",
  1823. "homepage": "https://github.com/gmponos"
  1824. },
  1825. {
  1826. "name": "Tobias Nyholm",
  1827. "email": "tobias.nyholm@gmail.com",
  1828. "homepage": "https://github.com/Nyholm"
  1829. },
  1830. {
  1831. "name": "Márk Sági-Kazár",
  1832. "email": "mark.sagikazar@gmail.com",
  1833. "homepage": "https://github.com/sagikazarmark"
  1834. },
  1835. {
  1836. "name": "Tobias Schultze",
  1837. "email": "webmaster@tubo-world.de",
  1838. "homepage": "https://github.com/Tobion"
  1839. }
  1840. ],
  1841. "description": "Guzzle is a PHP HTTP client library",
  1842. "keywords": [
  1843. "client",
  1844. "curl",
  1845. "framework",
  1846. "http",
  1847. "http client",
  1848. "psr-18",
  1849. "psr-7",
  1850. "rest",
  1851. "web service"
  1852. ],
  1853. "support": {
  1854. "issues": "https://github.com/guzzle/guzzle/issues",
  1855. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1856. },
  1857. "funding": [
  1858. {
  1859. "url": "https://github.com/GrahamCampbell",
  1860. "type": "github"
  1861. },
  1862. {
  1863. "url": "https://github.com/Nyholm",
  1864. "type": "github"
  1865. },
  1866. {
  1867. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1868. "type": "tidelift"
  1869. }
  1870. ],
  1871. "time": "2024-07-24T11:22:20+00:00"
  1872. },
  1873. {
  1874. "name": "guzzlehttp/promises",
  1875. "version": "2.0.4",
  1876. "source": {
  1877. "type": "git",
  1878. "url": "https://github.com/guzzle/promises.git",
  1879. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  1880. },
  1881. "dist": {
  1882. "type": "zip",
  1883. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1884. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1885. "shasum": ""
  1886. },
  1887. "require": {
  1888. "php": "^7.2.5 || ^8.0"
  1889. },
  1890. "require-dev": {
  1891. "bamarni/composer-bin-plugin": "^1.8.2",
  1892. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1893. },
  1894. "type": "library",
  1895. "extra": {
  1896. "bamarni-bin": {
  1897. "bin-links": true,
  1898. "forward-command": false
  1899. }
  1900. },
  1901. "autoload": {
  1902. "psr-4": {
  1903. "GuzzleHttp\\Promise\\": "src/"
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "MIT"
  1909. ],
  1910. "authors": [
  1911. {
  1912. "name": "Graham Campbell",
  1913. "email": "hello@gjcampbell.co.uk",
  1914. "homepage": "https://github.com/GrahamCampbell"
  1915. },
  1916. {
  1917. "name": "Michael Dowling",
  1918. "email": "mtdowling@gmail.com",
  1919. "homepage": "https://github.com/mtdowling"
  1920. },
  1921. {
  1922. "name": "Tobias Nyholm",
  1923. "email": "tobias.nyholm@gmail.com",
  1924. "homepage": "https://github.com/Nyholm"
  1925. },
  1926. {
  1927. "name": "Tobias Schultze",
  1928. "email": "webmaster@tubo-world.de",
  1929. "homepage": "https://github.com/Tobion"
  1930. }
  1931. ],
  1932. "description": "Guzzle promises library",
  1933. "keywords": [
  1934. "promise"
  1935. ],
  1936. "support": {
  1937. "issues": "https://github.com/guzzle/promises/issues",
  1938. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  1939. },
  1940. "funding": [
  1941. {
  1942. "url": "https://github.com/GrahamCampbell",
  1943. "type": "github"
  1944. },
  1945. {
  1946. "url": "https://github.com/Nyholm",
  1947. "type": "github"
  1948. },
  1949. {
  1950. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1951. "type": "tidelift"
  1952. }
  1953. ],
  1954. "time": "2024-10-17T10:06:22+00:00"
  1955. },
  1956. {
  1957. "name": "guzzlehttp/psr7",
  1958. "version": "2.7.0",
  1959. "source": {
  1960. "type": "git",
  1961. "url": "https://github.com/guzzle/psr7.git",
  1962. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1963. },
  1964. "dist": {
  1965. "type": "zip",
  1966. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1967. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1968. "shasum": ""
  1969. },
  1970. "require": {
  1971. "php": "^7.2.5 || ^8.0",
  1972. "psr/http-factory": "^1.0",
  1973. "psr/http-message": "^1.1 || ^2.0",
  1974. "ralouphie/getallheaders": "^3.0"
  1975. },
  1976. "provide": {
  1977. "psr/http-factory-implementation": "1.0",
  1978. "psr/http-message-implementation": "1.0"
  1979. },
  1980. "require-dev": {
  1981. "bamarni/composer-bin-plugin": "^1.8.2",
  1982. "http-interop/http-factory-tests": "0.9.0",
  1983. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1984. },
  1985. "suggest": {
  1986. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1987. },
  1988. "type": "library",
  1989. "extra": {
  1990. "bamarni-bin": {
  1991. "bin-links": true,
  1992. "forward-command": false
  1993. }
  1994. },
  1995. "autoload": {
  1996. "psr-4": {
  1997. "GuzzleHttp\\Psr7\\": "src/"
  1998. }
  1999. },
  2000. "notification-url": "https://packagist.org/downloads/",
  2001. "license": [
  2002. "MIT"
  2003. ],
  2004. "authors": [
  2005. {
  2006. "name": "Graham Campbell",
  2007. "email": "hello@gjcampbell.co.uk",
  2008. "homepage": "https://github.com/GrahamCampbell"
  2009. },
  2010. {
  2011. "name": "Michael Dowling",
  2012. "email": "mtdowling@gmail.com",
  2013. "homepage": "https://github.com/mtdowling"
  2014. },
  2015. {
  2016. "name": "George Mponos",
  2017. "email": "gmponos@gmail.com",
  2018. "homepage": "https://github.com/gmponos"
  2019. },
  2020. {
  2021. "name": "Tobias Nyholm",
  2022. "email": "tobias.nyholm@gmail.com",
  2023. "homepage": "https://github.com/Nyholm"
  2024. },
  2025. {
  2026. "name": "Márk Sági-Kazár",
  2027. "email": "mark.sagikazar@gmail.com",
  2028. "homepage": "https://github.com/sagikazarmark"
  2029. },
  2030. {
  2031. "name": "Tobias Schultze",
  2032. "email": "webmaster@tubo-world.de",
  2033. "homepage": "https://github.com/Tobion"
  2034. },
  2035. {
  2036. "name": "Márk Sági-Kazár",
  2037. "email": "mark.sagikazar@gmail.com",
  2038. "homepage": "https://sagikazarmark.hu"
  2039. }
  2040. ],
  2041. "description": "PSR-7 message implementation that also provides common utility methods",
  2042. "keywords": [
  2043. "http",
  2044. "message",
  2045. "psr-7",
  2046. "request",
  2047. "response",
  2048. "stream",
  2049. "uri",
  2050. "url"
  2051. ],
  2052. "support": {
  2053. "issues": "https://github.com/guzzle/psr7/issues",
  2054. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  2055. },
  2056. "funding": [
  2057. {
  2058. "url": "https://github.com/GrahamCampbell",
  2059. "type": "github"
  2060. },
  2061. {
  2062. "url": "https://github.com/Nyholm",
  2063. "type": "github"
  2064. },
  2065. {
  2066. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2067. "type": "tidelift"
  2068. }
  2069. ],
  2070. "time": "2024-07-18T11:15:46+00:00"
  2071. },
  2072. {
  2073. "name": "laminas/laminas-diactoros",
  2074. "version": "3.5.0",
  2075. "source": {
  2076. "type": "git",
  2077. "url": "https://github.com/laminas/laminas-diactoros.git",
  2078. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2"
  2079. },
  2080. "dist": {
  2081. "type": "zip",
  2082. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/143a16306602ce56b8b092a7914fef03c37f9ed2",
  2083. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2",
  2084. "shasum": ""
  2085. },
  2086. "require": {
  2087. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
  2088. "psr/http-factory": "^1.1",
  2089. "psr/http-message": "^1.1 || ^2.0"
  2090. },
  2091. "conflict": {
  2092. "amphp/amp": "<2.6.4"
  2093. },
  2094. "provide": {
  2095. "psr/http-factory-implementation": "^1.0",
  2096. "psr/http-message-implementation": "^1.1 || ^2.0"
  2097. },
  2098. "require-dev": {
  2099. "ext-curl": "*",
  2100. "ext-dom": "*",
  2101. "ext-gd": "*",
  2102. "ext-libxml": "*",
  2103. "http-interop/http-factory-tests": "^2.2.0",
  2104. "laminas/laminas-coding-standard": "~2.5.0",
  2105. "php-http/psr7-integration-tests": "^1.4.0",
  2106. "phpunit/phpunit": "^10.5.36",
  2107. "psalm/plugin-phpunit": "^0.19.0",
  2108. "vimeo/psalm": "^5.26.1"
  2109. },
  2110. "type": "library",
  2111. "extra": {
  2112. "laminas": {
  2113. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  2114. "module": "Laminas\\Diactoros"
  2115. }
  2116. },
  2117. "autoload": {
  2118. "files": [
  2119. "src/functions/create_uploaded_file.php",
  2120. "src/functions/marshal_headers_from_sapi.php",
  2121. "src/functions/marshal_method_from_sapi.php",
  2122. "src/functions/marshal_protocol_version_from_sapi.php",
  2123. "src/functions/normalize_server.php",
  2124. "src/functions/normalize_uploaded_files.php",
  2125. "src/functions/parse_cookie_header.php"
  2126. ],
  2127. "psr-4": {
  2128. "Laminas\\Diactoros\\": "src/"
  2129. }
  2130. },
  2131. "notification-url": "https://packagist.org/downloads/",
  2132. "license": [
  2133. "BSD-3-Clause"
  2134. ],
  2135. "description": "PSR HTTP Message implementations",
  2136. "homepage": "https://laminas.dev",
  2137. "keywords": [
  2138. "http",
  2139. "laminas",
  2140. "psr",
  2141. "psr-17",
  2142. "psr-7"
  2143. ],
  2144. "support": {
  2145. "chat": "https://laminas.dev/chat",
  2146. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  2147. "forum": "https://discourse.laminas.dev",
  2148. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  2149. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  2150. "source": "https://github.com/laminas/laminas-diactoros"
  2151. },
  2152. "funding": [
  2153. {
  2154. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2155. "type": "community_bridge"
  2156. }
  2157. ],
  2158. "time": "2024-10-14T11:59:49+00:00"
  2159. },
  2160. {
  2161. "name": "league/commonmark",
  2162. "version": "2.5.3",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/thephpleague/commonmark.git",
  2166. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  2171. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  2172. "shasum": ""
  2173. },
  2174. "require": {
  2175. "ext-mbstring": "*",
  2176. "league/config": "^1.1.1",
  2177. "php": "^7.4 || ^8.0",
  2178. "psr/event-dispatcher": "^1.0",
  2179. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2180. "symfony/polyfill-php80": "^1.16"
  2181. },
  2182. "require-dev": {
  2183. "cebe/markdown": "^1.0",
  2184. "commonmark/cmark": "0.31.1",
  2185. "commonmark/commonmark.js": "0.31.1",
  2186. "composer/package-versions-deprecated": "^1.8",
  2187. "embed/embed": "^4.4",
  2188. "erusev/parsedown": "^1.0",
  2189. "ext-json": "*",
  2190. "github/gfm": "0.29.0",
  2191. "michelf/php-markdown": "^1.4 || ^2.0",
  2192. "nyholm/psr7": "^1.5",
  2193. "phpstan/phpstan": "^1.8.2",
  2194. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2195. "scrutinizer/ocular": "^1.8.1",
  2196. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  2197. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  2198. "unleashedtech/php-coding-standard": "^3.1.1",
  2199. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2200. },
  2201. "suggest": {
  2202. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2203. },
  2204. "type": "library",
  2205. "extra": {
  2206. "branch-alias": {
  2207. "dev-main": "2.6-dev"
  2208. }
  2209. },
  2210. "autoload": {
  2211. "psr-4": {
  2212. "League\\CommonMark\\": "src"
  2213. }
  2214. },
  2215. "notification-url": "https://packagist.org/downloads/",
  2216. "license": [
  2217. "BSD-3-Clause"
  2218. ],
  2219. "authors": [
  2220. {
  2221. "name": "Colin O'Dell",
  2222. "email": "colinodell@gmail.com",
  2223. "homepage": "https://www.colinodell.com",
  2224. "role": "Lead Developer"
  2225. }
  2226. ],
  2227. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2228. "homepage": "https://commonmark.thephpleague.com",
  2229. "keywords": [
  2230. "commonmark",
  2231. "flavored",
  2232. "gfm",
  2233. "github",
  2234. "github-flavored",
  2235. "markdown",
  2236. "md",
  2237. "parser"
  2238. ],
  2239. "support": {
  2240. "docs": "https://commonmark.thephpleague.com/",
  2241. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2242. "issues": "https://github.com/thephpleague/commonmark/issues",
  2243. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2244. "source": "https://github.com/thephpleague/commonmark"
  2245. },
  2246. "funding": [
  2247. {
  2248. "url": "https://www.colinodell.com/sponsor",
  2249. "type": "custom"
  2250. },
  2251. {
  2252. "url": "https://www.paypal.me/colinpodell/10.00",
  2253. "type": "custom"
  2254. },
  2255. {
  2256. "url": "https://github.com/colinodell",
  2257. "type": "github"
  2258. },
  2259. {
  2260. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2261. "type": "tidelift"
  2262. }
  2263. ],
  2264. "time": "2024-08-16T11:46:16+00:00"
  2265. },
  2266. {
  2267. "name": "league/config",
  2268. "version": "v1.2.0",
  2269. "source": {
  2270. "type": "git",
  2271. "url": "https://github.com/thephpleague/config.git",
  2272. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2273. },
  2274. "dist": {
  2275. "type": "zip",
  2276. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2277. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2278. "shasum": ""
  2279. },
  2280. "require": {
  2281. "dflydev/dot-access-data": "^3.0.1",
  2282. "nette/schema": "^1.2",
  2283. "php": "^7.4 || ^8.0"
  2284. },
  2285. "require-dev": {
  2286. "phpstan/phpstan": "^1.8.2",
  2287. "phpunit/phpunit": "^9.5.5",
  2288. "scrutinizer/ocular": "^1.8.1",
  2289. "unleashedtech/php-coding-standard": "^3.1",
  2290. "vimeo/psalm": "^4.7.3"
  2291. },
  2292. "type": "library",
  2293. "extra": {
  2294. "branch-alias": {
  2295. "dev-main": "1.2-dev"
  2296. }
  2297. },
  2298. "autoload": {
  2299. "psr-4": {
  2300. "League\\Config\\": "src"
  2301. }
  2302. },
  2303. "notification-url": "https://packagist.org/downloads/",
  2304. "license": [
  2305. "BSD-3-Clause"
  2306. ],
  2307. "authors": [
  2308. {
  2309. "name": "Colin O'Dell",
  2310. "email": "colinodell@gmail.com",
  2311. "homepage": "https://www.colinodell.com",
  2312. "role": "Lead Developer"
  2313. }
  2314. ],
  2315. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2316. "homepage": "https://config.thephpleague.com",
  2317. "keywords": [
  2318. "array",
  2319. "config",
  2320. "configuration",
  2321. "dot",
  2322. "dot-access",
  2323. "nested",
  2324. "schema"
  2325. ],
  2326. "support": {
  2327. "docs": "https://config.thephpleague.com/",
  2328. "issues": "https://github.com/thephpleague/config/issues",
  2329. "rss": "https://github.com/thephpleague/config/releases.atom",
  2330. "source": "https://github.com/thephpleague/config"
  2331. },
  2332. "funding": [
  2333. {
  2334. "url": "https://www.colinodell.com/sponsor",
  2335. "type": "custom"
  2336. },
  2337. {
  2338. "url": "https://www.paypal.me/colinpodell/10.00",
  2339. "type": "custom"
  2340. },
  2341. {
  2342. "url": "https://github.com/colinodell",
  2343. "type": "github"
  2344. }
  2345. ],
  2346. "time": "2022-12-11T20:36:23+00:00"
  2347. },
  2348. {
  2349. "name": "ml/iri",
  2350. "version": "1.1.4",
  2351. "target-dir": "ML/IRI",
  2352. "source": {
  2353. "type": "git",
  2354. "url": "https://github.com/lanthaler/IRI.git",
  2355. "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341"
  2356. },
  2357. "dist": {
  2358. "type": "zip",
  2359. "url": "https://api.github.com/repos/lanthaler/IRI/zipball/cbd44fa913e00ea624241b38cefaa99da8d71341",
  2360. "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341",
  2361. "shasum": ""
  2362. },
  2363. "require": {
  2364. "lib-pcre": ">=4.0",
  2365. "php": ">=5.3.0"
  2366. },
  2367. "type": "library",
  2368. "autoload": {
  2369. "psr-0": {
  2370. "ML\\IRI": ""
  2371. }
  2372. },
  2373. "notification-url": "https://packagist.org/downloads/",
  2374. "license": [
  2375. "MIT"
  2376. ],
  2377. "authors": [
  2378. {
  2379. "name": "Markus Lanthaler",
  2380. "email": "mail@markus-lanthaler.com",
  2381. "homepage": "http://www.markus-lanthaler.com",
  2382. "role": "Developer"
  2383. }
  2384. ],
  2385. "description": "IRI handling for PHP",
  2386. "homepage": "http://www.markus-lanthaler.com",
  2387. "keywords": [
  2388. "URN",
  2389. "iri",
  2390. "uri",
  2391. "url"
  2392. ],
  2393. "support": {
  2394. "issues": "https://github.com/lanthaler/IRI/issues",
  2395. "source": "https://github.com/lanthaler/IRI/tree/master"
  2396. },
  2397. "time": "2014-01-21T13:43:39+00:00"
  2398. },
  2399. {
  2400. "name": "ml/json-ld",
  2401. "version": "1.2.1",
  2402. "source": {
  2403. "type": "git",
  2404. "url": "https://github.com/lanthaler/JsonLD.git",
  2405. "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8"
  2406. },
  2407. "dist": {
  2408. "type": "zip",
  2409. "url": "https://api.github.com/repos/lanthaler/JsonLD/zipball/537e68e87a6bce23e57c575cd5dcac1f67ce25d8",
  2410. "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8",
  2411. "shasum": ""
  2412. },
  2413. "require": {
  2414. "ext-json": "*",
  2415. "ml/iri": "^1.1.1",
  2416. "php": ">=5.3.0"
  2417. },
  2418. "require-dev": {
  2419. "json-ld/tests": "1.0",
  2420. "phpunit/phpunit": "^4"
  2421. },
  2422. "type": "library",
  2423. "autoload": {
  2424. "psr-4": {
  2425. "ML\\JsonLD\\": ""
  2426. }
  2427. },
  2428. "notification-url": "https://packagist.org/downloads/",
  2429. "license": [
  2430. "MIT"
  2431. ],
  2432. "authors": [
  2433. {
  2434. "name": "Markus Lanthaler",
  2435. "email": "mail@markus-lanthaler.com",
  2436. "homepage": "http://www.markus-lanthaler.com",
  2437. "role": "Developer"
  2438. }
  2439. ],
  2440. "description": "JSON-LD Processor for PHP",
  2441. "homepage": "http://www.markus-lanthaler.com",
  2442. "keywords": [
  2443. "JSON-LD",
  2444. "jsonld"
  2445. ],
  2446. "support": {
  2447. "issues": "https://github.com/lanthaler/JsonLD/issues",
  2448. "source": "https://github.com/lanthaler/JsonLD/tree/1.2.1"
  2449. },
  2450. "time": "2022-09-29T08:45:17+00:00"
  2451. },
  2452. {
  2453. "name": "monolog/monolog",
  2454. "version": "3.7.0",
  2455. "source": {
  2456. "type": "git",
  2457. "url": "https://github.com/Seldaek/monolog.git",
  2458. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  2459. },
  2460. "dist": {
  2461. "type": "zip",
  2462. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  2463. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  2464. "shasum": ""
  2465. },
  2466. "require": {
  2467. "php": ">=8.1",
  2468. "psr/log": "^2.0 || ^3.0"
  2469. },
  2470. "provide": {
  2471. "psr/log-implementation": "3.0.0"
  2472. },
  2473. "require-dev": {
  2474. "aws/aws-sdk-php": "^3.0",
  2475. "doctrine/couchdb": "~1.0@dev",
  2476. "elasticsearch/elasticsearch": "^7 || ^8",
  2477. "ext-json": "*",
  2478. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2479. "guzzlehttp/guzzle": "^7.4.5",
  2480. "guzzlehttp/psr7": "^2.2",
  2481. "mongodb/mongodb": "^1.8",
  2482. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2483. "phpstan/phpstan": "^1.9",
  2484. "phpstan/phpstan-deprecation-rules": "^1.0",
  2485. "phpstan/phpstan-strict-rules": "^1.4",
  2486. "phpunit/phpunit": "^10.5.17",
  2487. "predis/predis": "^1.1 || ^2",
  2488. "ruflin/elastica": "^7",
  2489. "symfony/mailer": "^5.4 || ^6",
  2490. "symfony/mime": "^5.4 || ^6"
  2491. },
  2492. "suggest": {
  2493. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2494. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2495. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2496. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2497. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2498. "ext-mbstring": "Allow to work properly with unicode symbols",
  2499. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2500. "ext-openssl": "Required to send log messages using SSL",
  2501. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2502. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2503. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2504. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2505. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2506. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2507. },
  2508. "type": "library",
  2509. "extra": {
  2510. "branch-alias": {
  2511. "dev-main": "3.x-dev"
  2512. }
  2513. },
  2514. "autoload": {
  2515. "psr-4": {
  2516. "Monolog\\": "src/Monolog"
  2517. }
  2518. },
  2519. "notification-url": "https://packagist.org/downloads/",
  2520. "license": [
  2521. "MIT"
  2522. ],
  2523. "authors": [
  2524. {
  2525. "name": "Jordi Boggiano",
  2526. "email": "j.boggiano@seld.be",
  2527. "homepage": "https://seld.be"
  2528. }
  2529. ],
  2530. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2531. "homepage": "https://github.com/Seldaek/monolog",
  2532. "keywords": [
  2533. "log",
  2534. "logging",
  2535. "psr-3"
  2536. ],
  2537. "support": {
  2538. "issues": "https://github.com/Seldaek/monolog/issues",
  2539. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  2540. },
  2541. "funding": [
  2542. {
  2543. "url": "https://github.com/Seldaek",
  2544. "type": "github"
  2545. },
  2546. {
  2547. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2548. "type": "tidelift"
  2549. }
  2550. ],
  2551. "time": "2024-06-28T09:40:51+00:00"
  2552. },
  2553. {
  2554. "name": "nette/schema",
  2555. "version": "v1.3.2",
  2556. "source": {
  2557. "type": "git",
  2558. "url": "https://github.com/nette/schema.git",
  2559. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  2560. },
  2561. "dist": {
  2562. "type": "zip",
  2563. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  2564. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  2565. "shasum": ""
  2566. },
  2567. "require": {
  2568. "nette/utils": "^4.0",
  2569. "php": "8.1 - 8.4"
  2570. },
  2571. "require-dev": {
  2572. "nette/tester": "^2.5.2",
  2573. "phpstan/phpstan-nette": "^1.0",
  2574. "tracy/tracy": "^2.8"
  2575. },
  2576. "type": "library",
  2577. "extra": {
  2578. "branch-alias": {
  2579. "dev-master": "1.3-dev"
  2580. }
  2581. },
  2582. "autoload": {
  2583. "classmap": [
  2584. "src/"
  2585. ]
  2586. },
  2587. "notification-url": "https://packagist.org/downloads/",
  2588. "license": [
  2589. "BSD-3-Clause",
  2590. "GPL-2.0-only",
  2591. "GPL-3.0-only"
  2592. ],
  2593. "authors": [
  2594. {
  2595. "name": "David Grudl",
  2596. "homepage": "https://davidgrudl.com"
  2597. },
  2598. {
  2599. "name": "Nette Community",
  2600. "homepage": "https://nette.org/contributors"
  2601. }
  2602. ],
  2603. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2604. "homepage": "https://nette.org",
  2605. "keywords": [
  2606. "config",
  2607. "nette"
  2608. ],
  2609. "support": {
  2610. "issues": "https://github.com/nette/schema/issues",
  2611. "source": "https://github.com/nette/schema/tree/v1.3.2"
  2612. },
  2613. "time": "2024-10-06T23:10:23+00:00"
  2614. },
  2615. {
  2616. "name": "nette/utils",
  2617. "version": "v4.0.5",
  2618. "source": {
  2619. "type": "git",
  2620. "url": "https://github.com/nette/utils.git",
  2621. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  2622. },
  2623. "dist": {
  2624. "type": "zip",
  2625. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2626. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2627. "shasum": ""
  2628. },
  2629. "require": {
  2630. "php": "8.0 - 8.4"
  2631. },
  2632. "conflict": {
  2633. "nette/finder": "<3",
  2634. "nette/schema": "<1.2.2"
  2635. },
  2636. "require-dev": {
  2637. "jetbrains/phpstorm-attributes": "dev-master",
  2638. "nette/tester": "^2.5",
  2639. "phpstan/phpstan": "^1.0",
  2640. "tracy/tracy": "^2.9"
  2641. },
  2642. "suggest": {
  2643. "ext-gd": "to use Image",
  2644. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2645. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2646. "ext-json": "to use Nette\\Utils\\Json",
  2647. "ext-mbstring": "to use Strings::lower() etc...",
  2648. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2649. },
  2650. "type": "library",
  2651. "extra": {
  2652. "branch-alias": {
  2653. "dev-master": "4.0-dev"
  2654. }
  2655. },
  2656. "autoload": {
  2657. "classmap": [
  2658. "src/"
  2659. ]
  2660. },
  2661. "notification-url": "https://packagist.org/downloads/",
  2662. "license": [
  2663. "BSD-3-Clause",
  2664. "GPL-2.0-only",
  2665. "GPL-3.0-only"
  2666. ],
  2667. "authors": [
  2668. {
  2669. "name": "David Grudl",
  2670. "homepage": "https://davidgrudl.com"
  2671. },
  2672. {
  2673. "name": "Nette Community",
  2674. "homepage": "https://nette.org/contributors"
  2675. }
  2676. ],
  2677. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2678. "homepage": "https://nette.org",
  2679. "keywords": [
  2680. "array",
  2681. "core",
  2682. "datetime",
  2683. "images",
  2684. "json",
  2685. "nette",
  2686. "paginator",
  2687. "password",
  2688. "slugify",
  2689. "string",
  2690. "unicode",
  2691. "utf-8",
  2692. "utility",
  2693. "validation"
  2694. ],
  2695. "support": {
  2696. "issues": "https://github.com/nette/utils/issues",
  2697. "source": "https://github.com/nette/utils/tree/v4.0.5"
  2698. },
  2699. "time": "2024-08-07T15:39:19+00:00"
  2700. },
  2701. {
  2702. "name": "oscarotero/html-parser",
  2703. "version": "v0.1.8",
  2704. "source": {
  2705. "type": "git",
  2706. "url": "https://github.com/oscarotero/html-parser.git",
  2707. "reference": "10f3219267a365d9433f2f7d1694209c9d436c8d"
  2708. },
  2709. "dist": {
  2710. "type": "zip",
  2711. "url": "https://api.github.com/repos/oscarotero/html-parser/zipball/10f3219267a365d9433f2f7d1694209c9d436c8d",
  2712. "reference": "10f3219267a365d9433f2f7d1694209c9d436c8d",
  2713. "shasum": ""
  2714. },
  2715. "require": {
  2716. "php": "^7.2 || ^8"
  2717. },
  2718. "require-dev": {
  2719. "friendsofphp/php-cs-fixer": "^2.11",
  2720. "phpunit/phpunit": "^8.0"
  2721. },
  2722. "type": "library",
  2723. "autoload": {
  2724. "psr-4": {
  2725. "HtmlParser\\": "src"
  2726. }
  2727. },
  2728. "notification-url": "https://packagist.org/downloads/",
  2729. "license": [
  2730. "MIT"
  2731. ],
  2732. "authors": [
  2733. {
  2734. "name": "Oscar Otero",
  2735. "email": "oom@oscarotero.com",
  2736. "homepage": "http://oscarotero.com",
  2737. "role": "Developer"
  2738. }
  2739. ],
  2740. "description": "Parse html strings to DOMDocument",
  2741. "homepage": "https://github.com/oscarotero/html-parser",
  2742. "keywords": [
  2743. "dom",
  2744. "html",
  2745. "parser"
  2746. ],
  2747. "support": {
  2748. "email": "oom@oscarotero.com",
  2749. "issues": "https://github.com/oscarotero/html-parser/issues",
  2750. "source": "https://github.com/oscarotero/html-parser/tree/v0.1.8"
  2751. },
  2752. "time": "2023-11-29T20:28:41+00:00"
  2753. },
  2754. {
  2755. "name": "phpdocumentor/reflection-common",
  2756. "version": "2.2.0",
  2757. "source": {
  2758. "type": "git",
  2759. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2760. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2761. },
  2762. "dist": {
  2763. "type": "zip",
  2764. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2765. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2766. "shasum": ""
  2767. },
  2768. "require": {
  2769. "php": "^7.2 || ^8.0"
  2770. },
  2771. "type": "library",
  2772. "extra": {
  2773. "branch-alias": {
  2774. "dev-2.x": "2.x-dev"
  2775. }
  2776. },
  2777. "autoload": {
  2778. "psr-4": {
  2779. "phpDocumentor\\Reflection\\": "src/"
  2780. }
  2781. },
  2782. "notification-url": "https://packagist.org/downloads/",
  2783. "license": [
  2784. "MIT"
  2785. ],
  2786. "authors": [
  2787. {
  2788. "name": "Jaap van Otterdijk",
  2789. "email": "opensource@ijaap.nl"
  2790. }
  2791. ],
  2792. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2793. "homepage": "http://www.phpdoc.org",
  2794. "keywords": [
  2795. "FQSEN",
  2796. "phpDocumentor",
  2797. "phpdoc",
  2798. "reflection",
  2799. "static analysis"
  2800. ],
  2801. "support": {
  2802. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2803. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2804. },
  2805. "time": "2020-06-27T09:03:43+00:00"
  2806. },
  2807. {
  2808. "name": "phpdocumentor/reflection-docblock",
  2809. "version": "5.4.1",
  2810. "source": {
  2811. "type": "git",
  2812. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2813. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
  2814. },
  2815. "dist": {
  2816. "type": "zip",
  2817. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2818. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2819. "shasum": ""
  2820. },
  2821. "require": {
  2822. "doctrine/deprecations": "^1.1",
  2823. "ext-filter": "*",
  2824. "php": "^7.4 || ^8.0",
  2825. "phpdocumentor/reflection-common": "^2.2",
  2826. "phpdocumentor/type-resolver": "^1.7",
  2827. "phpstan/phpdoc-parser": "^1.7",
  2828. "webmozart/assert": "^1.9.1"
  2829. },
  2830. "require-dev": {
  2831. "mockery/mockery": "~1.3.5",
  2832. "phpstan/extension-installer": "^1.1",
  2833. "phpstan/phpstan": "^1.8",
  2834. "phpstan/phpstan-mockery": "^1.1",
  2835. "phpstan/phpstan-webmozart-assert": "^1.2",
  2836. "phpunit/phpunit": "^9.5",
  2837. "vimeo/psalm": "^5.13"
  2838. },
  2839. "type": "library",
  2840. "extra": {
  2841. "branch-alias": {
  2842. "dev-master": "5.x-dev"
  2843. }
  2844. },
  2845. "autoload": {
  2846. "psr-4": {
  2847. "phpDocumentor\\Reflection\\": "src"
  2848. }
  2849. },
  2850. "notification-url": "https://packagist.org/downloads/",
  2851. "license": [
  2852. "MIT"
  2853. ],
  2854. "authors": [
  2855. {
  2856. "name": "Mike van Riel",
  2857. "email": "me@mikevanriel.com"
  2858. },
  2859. {
  2860. "name": "Jaap van Otterdijk",
  2861. "email": "opensource@ijaap.nl"
  2862. }
  2863. ],
  2864. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2865. "support": {
  2866. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2867. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
  2868. },
  2869. "time": "2024-05-21T05:55:05+00:00"
  2870. },
  2871. {
  2872. "name": "phpdocumentor/type-resolver",
  2873. "version": "1.8.2",
  2874. "source": {
  2875. "type": "git",
  2876. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2877. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  2878. },
  2879. "dist": {
  2880. "type": "zip",
  2881. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  2882. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  2883. "shasum": ""
  2884. },
  2885. "require": {
  2886. "doctrine/deprecations": "^1.0",
  2887. "php": "^7.3 || ^8.0",
  2888. "phpdocumentor/reflection-common": "^2.0",
  2889. "phpstan/phpdoc-parser": "^1.13"
  2890. },
  2891. "require-dev": {
  2892. "ext-tokenizer": "*",
  2893. "phpbench/phpbench": "^1.2",
  2894. "phpstan/extension-installer": "^1.1",
  2895. "phpstan/phpstan": "^1.8",
  2896. "phpstan/phpstan-phpunit": "^1.1",
  2897. "phpunit/phpunit": "^9.5",
  2898. "rector/rector": "^0.13.9",
  2899. "vimeo/psalm": "^4.25"
  2900. },
  2901. "type": "library",
  2902. "extra": {
  2903. "branch-alias": {
  2904. "dev-1.x": "1.x-dev"
  2905. }
  2906. },
  2907. "autoload": {
  2908. "psr-4": {
  2909. "phpDocumentor\\Reflection\\": "src"
  2910. }
  2911. },
  2912. "notification-url": "https://packagist.org/downloads/",
  2913. "license": [
  2914. "MIT"
  2915. ],
  2916. "authors": [
  2917. {
  2918. "name": "Mike van Riel",
  2919. "email": "me@mikevanriel.com"
  2920. }
  2921. ],
  2922. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2923. "support": {
  2924. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2925. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  2926. },
  2927. "time": "2024-02-23T11:10:43+00:00"
  2928. },
  2929. {
  2930. "name": "phpstan/phpdoc-parser",
  2931. "version": "1.33.0",
  2932. "source": {
  2933. "type": "git",
  2934. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2935. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140"
  2936. },
  2937. "dist": {
  2938. "type": "zip",
  2939. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2940. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2941. "shasum": ""
  2942. },
  2943. "require": {
  2944. "php": "^7.2 || ^8.0"
  2945. },
  2946. "require-dev": {
  2947. "doctrine/annotations": "^2.0",
  2948. "nikic/php-parser": "^4.15",
  2949. "php-parallel-lint/php-parallel-lint": "^1.2",
  2950. "phpstan/extension-installer": "^1.0",
  2951. "phpstan/phpstan": "^1.5",
  2952. "phpstan/phpstan-phpunit": "^1.1",
  2953. "phpstan/phpstan-strict-rules": "^1.0",
  2954. "phpunit/phpunit": "^9.5",
  2955. "symfony/process": "^5.2"
  2956. },
  2957. "type": "library",
  2958. "autoload": {
  2959. "psr-4": {
  2960. "PHPStan\\PhpDocParser\\": [
  2961. "src/"
  2962. ]
  2963. }
  2964. },
  2965. "notification-url": "https://packagist.org/downloads/",
  2966. "license": [
  2967. "MIT"
  2968. ],
  2969. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2970. "support": {
  2971. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2972. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.33.0"
  2973. },
  2974. "time": "2024-10-13T11:25:22+00:00"
  2975. },
  2976. {
  2977. "name": "psr/cache",
  2978. "version": "3.0.0",
  2979. "source": {
  2980. "type": "git",
  2981. "url": "https://github.com/php-fig/cache.git",
  2982. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2983. },
  2984. "dist": {
  2985. "type": "zip",
  2986. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2987. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2988. "shasum": ""
  2989. },
  2990. "require": {
  2991. "php": ">=8.0.0"
  2992. },
  2993. "type": "library",
  2994. "extra": {
  2995. "branch-alias": {
  2996. "dev-master": "1.0.x-dev"
  2997. }
  2998. },
  2999. "autoload": {
  3000. "psr-4": {
  3001. "Psr\\Cache\\": "src/"
  3002. }
  3003. },
  3004. "notification-url": "https://packagist.org/downloads/",
  3005. "license": [
  3006. "MIT"
  3007. ],
  3008. "authors": [
  3009. {
  3010. "name": "PHP-FIG",
  3011. "homepage": "https://www.php-fig.org/"
  3012. }
  3013. ],
  3014. "description": "Common interface for caching libraries",
  3015. "keywords": [
  3016. "cache",
  3017. "psr",
  3018. "psr-6"
  3019. ],
  3020. "support": {
  3021. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3022. },
  3023. "time": "2021-02-03T23:26:27+00:00"
  3024. },
  3025. {
  3026. "name": "psr/clock",
  3027. "version": "1.0.0",
  3028. "source": {
  3029. "type": "git",
  3030. "url": "https://github.com/php-fig/clock.git",
  3031. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3032. },
  3033. "dist": {
  3034. "type": "zip",
  3035. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3036. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3037. "shasum": ""
  3038. },
  3039. "require": {
  3040. "php": "^7.0 || ^8.0"
  3041. },
  3042. "type": "library",
  3043. "autoload": {
  3044. "psr-4": {
  3045. "Psr\\Clock\\": "src/"
  3046. }
  3047. },
  3048. "notification-url": "https://packagist.org/downloads/",
  3049. "license": [
  3050. "MIT"
  3051. ],
  3052. "authors": [
  3053. {
  3054. "name": "PHP-FIG",
  3055. "homepage": "https://www.php-fig.org/"
  3056. }
  3057. ],
  3058. "description": "Common interface for reading the clock.",
  3059. "homepage": "https://github.com/php-fig/clock",
  3060. "keywords": [
  3061. "clock",
  3062. "now",
  3063. "psr",
  3064. "psr-20",
  3065. "time"
  3066. ],
  3067. "support": {
  3068. "issues": "https://github.com/php-fig/clock/issues",
  3069. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3070. },
  3071. "time": "2022-11-25T14:36:26+00:00"
  3072. },
  3073. {
  3074. "name": "psr/container",
  3075. "version": "2.0.2",
  3076. "source": {
  3077. "type": "git",
  3078. "url": "https://github.com/php-fig/container.git",
  3079. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3080. },
  3081. "dist": {
  3082. "type": "zip",
  3083. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3084. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3085. "shasum": ""
  3086. },
  3087. "require": {
  3088. "php": ">=7.4.0"
  3089. },
  3090. "type": "library",
  3091. "extra": {
  3092. "branch-alias": {
  3093. "dev-master": "2.0.x-dev"
  3094. }
  3095. },
  3096. "autoload": {
  3097. "psr-4": {
  3098. "Psr\\Container\\": "src/"
  3099. }
  3100. },
  3101. "notification-url": "https://packagist.org/downloads/",
  3102. "license": [
  3103. "MIT"
  3104. ],
  3105. "authors": [
  3106. {
  3107. "name": "PHP-FIG",
  3108. "homepage": "https://www.php-fig.org/"
  3109. }
  3110. ],
  3111. "description": "Common Container Interface (PHP FIG PSR-11)",
  3112. "homepage": "https://github.com/php-fig/container",
  3113. "keywords": [
  3114. "PSR-11",
  3115. "container",
  3116. "container-interface",
  3117. "container-interop",
  3118. "psr"
  3119. ],
  3120. "support": {
  3121. "issues": "https://github.com/php-fig/container/issues",
  3122. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3123. },
  3124. "time": "2021-11-05T16:47:00+00:00"
  3125. },
  3126. {
  3127. "name": "psr/event-dispatcher",
  3128. "version": "1.0.0",
  3129. "source": {
  3130. "type": "git",
  3131. "url": "https://github.com/php-fig/event-dispatcher.git",
  3132. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3133. },
  3134. "dist": {
  3135. "type": "zip",
  3136. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3137. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3138. "shasum": ""
  3139. },
  3140. "require": {
  3141. "php": ">=7.2.0"
  3142. },
  3143. "type": "library",
  3144. "extra": {
  3145. "branch-alias": {
  3146. "dev-master": "1.0.x-dev"
  3147. }
  3148. },
  3149. "autoload": {
  3150. "psr-4": {
  3151. "Psr\\EventDispatcher\\": "src/"
  3152. }
  3153. },
  3154. "notification-url": "https://packagist.org/downloads/",
  3155. "license": [
  3156. "MIT"
  3157. ],
  3158. "authors": [
  3159. {
  3160. "name": "PHP-FIG",
  3161. "homepage": "http://www.php-fig.org/"
  3162. }
  3163. ],
  3164. "description": "Standard interfaces for event handling.",
  3165. "keywords": [
  3166. "events",
  3167. "psr",
  3168. "psr-14"
  3169. ],
  3170. "support": {
  3171. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3172. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3173. },
  3174. "time": "2019-01-08T18:20:26+00:00"
  3175. },
  3176. {
  3177. "name": "psr/http-client",
  3178. "version": "1.0.3",
  3179. "source": {
  3180. "type": "git",
  3181. "url": "https://github.com/php-fig/http-client.git",
  3182. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3183. },
  3184. "dist": {
  3185. "type": "zip",
  3186. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3187. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3188. "shasum": ""
  3189. },
  3190. "require": {
  3191. "php": "^7.0 || ^8.0",
  3192. "psr/http-message": "^1.0 || ^2.0"
  3193. },
  3194. "type": "library",
  3195. "extra": {
  3196. "branch-alias": {
  3197. "dev-master": "1.0.x-dev"
  3198. }
  3199. },
  3200. "autoload": {
  3201. "psr-4": {
  3202. "Psr\\Http\\Client\\": "src/"
  3203. }
  3204. },
  3205. "notification-url": "https://packagist.org/downloads/",
  3206. "license": [
  3207. "MIT"
  3208. ],
  3209. "authors": [
  3210. {
  3211. "name": "PHP-FIG",
  3212. "homepage": "https://www.php-fig.org/"
  3213. }
  3214. ],
  3215. "description": "Common interface for HTTP clients",
  3216. "homepage": "https://github.com/php-fig/http-client",
  3217. "keywords": [
  3218. "http",
  3219. "http-client",
  3220. "psr",
  3221. "psr-18"
  3222. ],
  3223. "support": {
  3224. "source": "https://github.com/php-fig/http-client"
  3225. },
  3226. "time": "2023-09-23T14:17:50+00:00"
  3227. },
  3228. {
  3229. "name": "psr/http-factory",
  3230. "version": "1.1.0",
  3231. "source": {
  3232. "type": "git",
  3233. "url": "https://github.com/php-fig/http-factory.git",
  3234. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  3235. },
  3236. "dist": {
  3237. "type": "zip",
  3238. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3239. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3240. "shasum": ""
  3241. },
  3242. "require": {
  3243. "php": ">=7.1",
  3244. "psr/http-message": "^1.0 || ^2.0"
  3245. },
  3246. "type": "library",
  3247. "extra": {
  3248. "branch-alias": {
  3249. "dev-master": "1.0.x-dev"
  3250. }
  3251. },
  3252. "autoload": {
  3253. "psr-4": {
  3254. "Psr\\Http\\Message\\": "src/"
  3255. }
  3256. },
  3257. "notification-url": "https://packagist.org/downloads/",
  3258. "license": [
  3259. "MIT"
  3260. ],
  3261. "authors": [
  3262. {
  3263. "name": "PHP-FIG",
  3264. "homepage": "https://www.php-fig.org/"
  3265. }
  3266. ],
  3267. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  3268. "keywords": [
  3269. "factory",
  3270. "http",
  3271. "message",
  3272. "psr",
  3273. "psr-17",
  3274. "psr-7",
  3275. "request",
  3276. "response"
  3277. ],
  3278. "support": {
  3279. "source": "https://github.com/php-fig/http-factory"
  3280. },
  3281. "time": "2024-04-15T12:06:14+00:00"
  3282. },
  3283. {
  3284. "name": "psr/http-message",
  3285. "version": "2.0",
  3286. "source": {
  3287. "type": "git",
  3288. "url": "https://github.com/php-fig/http-message.git",
  3289. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  3290. },
  3291. "dist": {
  3292. "type": "zip",
  3293. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3294. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3295. "shasum": ""
  3296. },
  3297. "require": {
  3298. "php": "^7.2 || ^8.0"
  3299. },
  3300. "type": "library",
  3301. "extra": {
  3302. "branch-alias": {
  3303. "dev-master": "2.0.x-dev"
  3304. }
  3305. },
  3306. "autoload": {
  3307. "psr-4": {
  3308. "Psr\\Http\\Message\\": "src/"
  3309. }
  3310. },
  3311. "notification-url": "https://packagist.org/downloads/",
  3312. "license": [
  3313. "MIT"
  3314. ],
  3315. "authors": [
  3316. {
  3317. "name": "PHP-FIG",
  3318. "homepage": "https://www.php-fig.org/"
  3319. }
  3320. ],
  3321. "description": "Common interface for HTTP messages",
  3322. "homepage": "https://github.com/php-fig/http-message",
  3323. "keywords": [
  3324. "http",
  3325. "http-message",
  3326. "psr",
  3327. "psr-7",
  3328. "request",
  3329. "response"
  3330. ],
  3331. "support": {
  3332. "source": "https://github.com/php-fig/http-message/tree/2.0"
  3333. },
  3334. "time": "2023-04-04T09:54:51+00:00"
  3335. },
  3336. {
  3337. "name": "psr/link",
  3338. "version": "2.0.1",
  3339. "source": {
  3340. "type": "git",
  3341. "url": "https://github.com/php-fig/link.git",
  3342. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  3343. },
  3344. "dist": {
  3345. "type": "zip",
  3346. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  3347. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  3348. "shasum": ""
  3349. },
  3350. "require": {
  3351. "php": ">=8.0.0"
  3352. },
  3353. "suggest": {
  3354. "fig/link-util": "Provides some useful PSR-13 utilities"
  3355. },
  3356. "type": "library",
  3357. "extra": {
  3358. "branch-alias": {
  3359. "dev-master": "2.0.x-dev"
  3360. }
  3361. },
  3362. "autoload": {
  3363. "psr-4": {
  3364. "Psr\\Link\\": "src/"
  3365. }
  3366. },
  3367. "notification-url": "https://packagist.org/downloads/",
  3368. "license": [
  3369. "MIT"
  3370. ],
  3371. "authors": [
  3372. {
  3373. "name": "PHP-FIG",
  3374. "homepage": "http://www.php-fig.org/"
  3375. }
  3376. ],
  3377. "description": "Common interfaces for HTTP links",
  3378. "homepage": "https://github.com/php-fig/link",
  3379. "keywords": [
  3380. "http",
  3381. "http-link",
  3382. "link",
  3383. "psr",
  3384. "psr-13",
  3385. "rest"
  3386. ],
  3387. "support": {
  3388. "source": "https://github.com/php-fig/link/tree/2.0.1"
  3389. },
  3390. "time": "2021-03-11T23:00:27+00:00"
  3391. },
  3392. {
  3393. "name": "psr/log",
  3394. "version": "3.0.2",
  3395. "source": {
  3396. "type": "git",
  3397. "url": "https://github.com/php-fig/log.git",
  3398. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  3399. },
  3400. "dist": {
  3401. "type": "zip",
  3402. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3403. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3404. "shasum": ""
  3405. },
  3406. "require": {
  3407. "php": ">=8.0.0"
  3408. },
  3409. "type": "library",
  3410. "extra": {
  3411. "branch-alias": {
  3412. "dev-master": "3.x-dev"
  3413. }
  3414. },
  3415. "autoload": {
  3416. "psr-4": {
  3417. "Psr\\Log\\": "src"
  3418. }
  3419. },
  3420. "notification-url": "https://packagist.org/downloads/",
  3421. "license": [
  3422. "MIT"
  3423. ],
  3424. "authors": [
  3425. {
  3426. "name": "PHP-FIG",
  3427. "homepage": "https://www.php-fig.org/"
  3428. }
  3429. ],
  3430. "description": "Common interface for logging libraries",
  3431. "homepage": "https://github.com/php-fig/log",
  3432. "keywords": [
  3433. "log",
  3434. "psr",
  3435. "psr-3"
  3436. ],
  3437. "support": {
  3438. "source": "https://github.com/php-fig/log/tree/3.0.2"
  3439. },
  3440. "time": "2024-09-11T13:17:53+00:00"
  3441. },
  3442. {
  3443. "name": "ralouphie/getallheaders",
  3444. "version": "3.0.3",
  3445. "source": {
  3446. "type": "git",
  3447. "url": "https://github.com/ralouphie/getallheaders.git",
  3448. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3449. },
  3450. "dist": {
  3451. "type": "zip",
  3452. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3453. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3454. "shasum": ""
  3455. },
  3456. "require": {
  3457. "php": ">=5.6"
  3458. },
  3459. "require-dev": {
  3460. "php-coveralls/php-coveralls": "^2.1",
  3461. "phpunit/phpunit": "^5 || ^6.5"
  3462. },
  3463. "type": "library",
  3464. "autoload": {
  3465. "files": [
  3466. "src/getallheaders.php"
  3467. ]
  3468. },
  3469. "notification-url": "https://packagist.org/downloads/",
  3470. "license": [
  3471. "MIT"
  3472. ],
  3473. "authors": [
  3474. {
  3475. "name": "Ralph Khattar",
  3476. "email": "ralph.khattar@gmail.com"
  3477. }
  3478. ],
  3479. "description": "A polyfill for getallheaders.",
  3480. "support": {
  3481. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3482. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3483. },
  3484. "time": "2019-03-08T08:55:37+00:00"
  3485. },
  3486. {
  3487. "name": "symfony/apache-pack",
  3488. "version": "v1.0.1",
  3489. "source": {
  3490. "type": "git",
  3491. "url": "https://github.com/symfony/apache-pack.git",
  3492. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  3493. },
  3494. "dist": {
  3495. "type": "zip",
  3496. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3497. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3498. "shasum": ""
  3499. },
  3500. "type": "symfony-pack",
  3501. "notification-url": "https://packagist.org/downloads/",
  3502. "license": [
  3503. "MIT"
  3504. ],
  3505. "description": "A pack for Apache support in Symfony",
  3506. "support": {
  3507. "issues": "https://github.com/symfony/apache-pack/issues",
  3508. "source": "https://github.com/symfony/apache-pack/tree/master"
  3509. },
  3510. "time": "2017-12-12T01:46:35+00:00"
  3511. },
  3512. {
  3513. "name": "symfony/asset",
  3514. "version": "v7.1.1",
  3515. "source": {
  3516. "type": "git",
  3517. "url": "https://github.com/symfony/asset.git",
  3518. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43"
  3519. },
  3520. "dist": {
  3521. "type": "zip",
  3522. "url": "https://api.github.com/repos/symfony/asset/zipball/8970de4a0cedd34e097c0f5c502a614780b9ca43",
  3523. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43",
  3524. "shasum": ""
  3525. },
  3526. "require": {
  3527. "php": ">=8.2"
  3528. },
  3529. "conflict": {
  3530. "symfony/http-foundation": "<6.4"
  3531. },
  3532. "require-dev": {
  3533. "symfony/http-client": "^6.4|^7.0",
  3534. "symfony/http-foundation": "^6.4|^7.0",
  3535. "symfony/http-kernel": "^6.4|^7.0"
  3536. },
  3537. "type": "library",
  3538. "autoload": {
  3539. "psr-4": {
  3540. "Symfony\\Component\\Asset\\": ""
  3541. },
  3542. "exclude-from-classmap": [
  3543. "/Tests/"
  3544. ]
  3545. },
  3546. "notification-url": "https://packagist.org/downloads/",
  3547. "license": [
  3548. "MIT"
  3549. ],
  3550. "authors": [
  3551. {
  3552. "name": "Fabien Potencier",
  3553. "email": "fabien@symfony.com"
  3554. },
  3555. {
  3556. "name": "Symfony Community",
  3557. "homepage": "https://symfony.com/contributors"
  3558. }
  3559. ],
  3560. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3561. "homepage": "https://symfony.com",
  3562. "support": {
  3563. "source": "https://github.com/symfony/asset/tree/v7.1.1"
  3564. },
  3565. "funding": [
  3566. {
  3567. "url": "https://symfony.com/sponsor",
  3568. "type": "custom"
  3569. },
  3570. {
  3571. "url": "https://github.com/fabpot",
  3572. "type": "github"
  3573. },
  3574. {
  3575. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3576. "type": "tidelift"
  3577. }
  3578. ],
  3579. "time": "2024-05-31T14:57:53+00:00"
  3580. },
  3581. {
  3582. "name": "symfony/asset-mapper",
  3583. "version": "v7.1.5",
  3584. "source": {
  3585. "type": "git",
  3586. "url": "https://github.com/symfony/asset-mapper.git",
  3587. "reference": "e3ae56f965f1fe503db1f604756a44d40e6dea16"
  3588. },
  3589. "dist": {
  3590. "type": "zip",
  3591. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/e3ae56f965f1fe503db1f604756a44d40e6dea16",
  3592. "reference": "e3ae56f965f1fe503db1f604756a44d40e6dea16",
  3593. "shasum": ""
  3594. },
  3595. "require": {
  3596. "composer/semver": "^3.0",
  3597. "php": ">=8.2",
  3598. "symfony/deprecation-contracts": "^2.1|^3",
  3599. "symfony/filesystem": "^7.1",
  3600. "symfony/http-client": "^6.4|^7.0"
  3601. },
  3602. "conflict": {
  3603. "symfony/framework-bundle": "<6.4"
  3604. },
  3605. "require-dev": {
  3606. "symfony/asset": "^6.4|^7.0",
  3607. "symfony/browser-kit": "^6.4|^7.0",
  3608. "symfony/console": "^6.4|^7.0",
  3609. "symfony/event-dispatcher-contracts": "^3.0",
  3610. "symfony/finder": "^6.4|^7.0",
  3611. "symfony/framework-bundle": "^6.4|^7.0",
  3612. "symfony/http-foundation": "^6.4|^7.0",
  3613. "symfony/http-kernel": "^6.4|^7.0",
  3614. "symfony/web-link": "^6.4|^7.0"
  3615. },
  3616. "type": "library",
  3617. "autoload": {
  3618. "psr-4": {
  3619. "Symfony\\Component\\AssetMapper\\": ""
  3620. },
  3621. "exclude-from-classmap": [
  3622. "/Tests/"
  3623. ]
  3624. },
  3625. "notification-url": "https://packagist.org/downloads/",
  3626. "license": [
  3627. "MIT"
  3628. ],
  3629. "authors": [
  3630. {
  3631. "name": "Fabien Potencier",
  3632. "email": "fabien@symfony.com"
  3633. },
  3634. {
  3635. "name": "Symfony Community",
  3636. "homepage": "https://symfony.com/contributors"
  3637. }
  3638. ],
  3639. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  3640. "homepage": "https://symfony.com",
  3641. "support": {
  3642. "source": "https://github.com/symfony/asset-mapper/tree/v7.1.5"
  3643. },
  3644. "funding": [
  3645. {
  3646. "url": "https://symfony.com/sponsor",
  3647. "type": "custom"
  3648. },
  3649. {
  3650. "url": "https://github.com/fabpot",
  3651. "type": "github"
  3652. },
  3653. {
  3654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3655. "type": "tidelift"
  3656. }
  3657. ],
  3658. "time": "2024-09-19T08:57:32+00:00"
  3659. },
  3660. {
  3661. "name": "symfony/cache",
  3662. "version": "v7.1.5",
  3663. "source": {
  3664. "type": "git",
  3665. "url": "https://github.com/symfony/cache.git",
  3666. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a"
  3667. },
  3668. "dist": {
  3669. "type": "zip",
  3670. "url": "https://api.github.com/repos/symfony/cache/zipball/86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  3671. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  3672. "shasum": ""
  3673. },
  3674. "require": {
  3675. "php": ">=8.2",
  3676. "psr/cache": "^2.0|^3.0",
  3677. "psr/log": "^1.1|^2|^3",
  3678. "symfony/cache-contracts": "^2.5|^3",
  3679. "symfony/deprecation-contracts": "^2.5|^3.0",
  3680. "symfony/service-contracts": "^2.5|^3",
  3681. "symfony/var-exporter": "^6.4|^7.0"
  3682. },
  3683. "conflict": {
  3684. "doctrine/dbal": "<3.6",
  3685. "symfony/dependency-injection": "<6.4",
  3686. "symfony/http-kernel": "<6.4",
  3687. "symfony/var-dumper": "<6.4"
  3688. },
  3689. "provide": {
  3690. "psr/cache-implementation": "2.0|3.0",
  3691. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3692. "symfony/cache-implementation": "1.1|2.0|3.0"
  3693. },
  3694. "require-dev": {
  3695. "cache/integration-tests": "dev-master",
  3696. "doctrine/dbal": "^3.6|^4",
  3697. "predis/predis": "^1.1|^2.0",
  3698. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3699. "symfony/config": "^6.4|^7.0",
  3700. "symfony/dependency-injection": "^6.4|^7.0",
  3701. "symfony/filesystem": "^6.4|^7.0",
  3702. "symfony/http-kernel": "^6.4|^7.0",
  3703. "symfony/messenger": "^6.4|^7.0",
  3704. "symfony/var-dumper": "^6.4|^7.0"
  3705. },
  3706. "type": "library",
  3707. "autoload": {
  3708. "psr-4": {
  3709. "Symfony\\Component\\Cache\\": ""
  3710. },
  3711. "classmap": [
  3712. "Traits/ValueWrapper.php"
  3713. ],
  3714. "exclude-from-classmap": [
  3715. "/Tests/"
  3716. ]
  3717. },
  3718. "notification-url": "https://packagist.org/downloads/",
  3719. "license": [
  3720. "MIT"
  3721. ],
  3722. "authors": [
  3723. {
  3724. "name": "Nicolas Grekas",
  3725. "email": "p@tchwork.com"
  3726. },
  3727. {
  3728. "name": "Symfony Community",
  3729. "homepage": "https://symfony.com/contributors"
  3730. }
  3731. ],
  3732. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3733. "homepage": "https://symfony.com",
  3734. "keywords": [
  3735. "caching",
  3736. "psr6"
  3737. ],
  3738. "support": {
  3739. "source": "https://github.com/symfony/cache/tree/v7.1.5"
  3740. },
  3741. "funding": [
  3742. {
  3743. "url": "https://symfony.com/sponsor",
  3744. "type": "custom"
  3745. },
  3746. {
  3747. "url": "https://github.com/fabpot",
  3748. "type": "github"
  3749. },
  3750. {
  3751. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3752. "type": "tidelift"
  3753. }
  3754. ],
  3755. "time": "2024-09-17T09:16:35+00:00"
  3756. },
  3757. {
  3758. "name": "symfony/cache-contracts",
  3759. "version": "v3.5.0",
  3760. "source": {
  3761. "type": "git",
  3762. "url": "https://github.com/symfony/cache-contracts.git",
  3763. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  3764. },
  3765. "dist": {
  3766. "type": "zip",
  3767. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3768. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3769. "shasum": ""
  3770. },
  3771. "require": {
  3772. "php": ">=8.1",
  3773. "psr/cache": "^3.0"
  3774. },
  3775. "type": "library",
  3776. "extra": {
  3777. "branch-alias": {
  3778. "dev-main": "3.5-dev"
  3779. },
  3780. "thanks": {
  3781. "name": "symfony/contracts",
  3782. "url": "https://github.com/symfony/contracts"
  3783. }
  3784. },
  3785. "autoload": {
  3786. "psr-4": {
  3787. "Symfony\\Contracts\\Cache\\": ""
  3788. }
  3789. },
  3790. "notification-url": "https://packagist.org/downloads/",
  3791. "license": [
  3792. "MIT"
  3793. ],
  3794. "authors": [
  3795. {
  3796. "name": "Nicolas Grekas",
  3797. "email": "p@tchwork.com"
  3798. },
  3799. {
  3800. "name": "Symfony Community",
  3801. "homepage": "https://symfony.com/contributors"
  3802. }
  3803. ],
  3804. "description": "Generic abstractions related to caching",
  3805. "homepage": "https://symfony.com",
  3806. "keywords": [
  3807. "abstractions",
  3808. "contracts",
  3809. "decoupling",
  3810. "interfaces",
  3811. "interoperability",
  3812. "standards"
  3813. ],
  3814. "support": {
  3815. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  3816. },
  3817. "funding": [
  3818. {
  3819. "url": "https://symfony.com/sponsor",
  3820. "type": "custom"
  3821. },
  3822. {
  3823. "url": "https://github.com/fabpot",
  3824. "type": "github"
  3825. },
  3826. {
  3827. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3828. "type": "tidelift"
  3829. }
  3830. ],
  3831. "time": "2024-04-18T09:32:20+00:00"
  3832. },
  3833. {
  3834. "name": "symfony/clock",
  3835. "version": "v7.1.1",
  3836. "source": {
  3837. "type": "git",
  3838. "url": "https://github.com/symfony/clock.git",
  3839. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  3840. },
  3841. "dist": {
  3842. "type": "zip",
  3843. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  3844. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  3845. "shasum": ""
  3846. },
  3847. "require": {
  3848. "php": ">=8.2",
  3849. "psr/clock": "^1.0",
  3850. "symfony/polyfill-php83": "^1.28"
  3851. },
  3852. "provide": {
  3853. "psr/clock-implementation": "1.0"
  3854. },
  3855. "type": "library",
  3856. "autoload": {
  3857. "files": [
  3858. "Resources/now.php"
  3859. ],
  3860. "psr-4": {
  3861. "Symfony\\Component\\Clock\\": ""
  3862. },
  3863. "exclude-from-classmap": [
  3864. "/Tests/"
  3865. ]
  3866. },
  3867. "notification-url": "https://packagist.org/downloads/",
  3868. "license": [
  3869. "MIT"
  3870. ],
  3871. "authors": [
  3872. {
  3873. "name": "Nicolas Grekas",
  3874. "email": "p@tchwork.com"
  3875. },
  3876. {
  3877. "name": "Symfony Community",
  3878. "homepage": "https://symfony.com/contributors"
  3879. }
  3880. ],
  3881. "description": "Decouples applications from the system clock",
  3882. "homepage": "https://symfony.com",
  3883. "keywords": [
  3884. "clock",
  3885. "psr20",
  3886. "time"
  3887. ],
  3888. "support": {
  3889. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  3890. },
  3891. "funding": [
  3892. {
  3893. "url": "https://symfony.com/sponsor",
  3894. "type": "custom"
  3895. },
  3896. {
  3897. "url": "https://github.com/fabpot",
  3898. "type": "github"
  3899. },
  3900. {
  3901. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3902. "type": "tidelift"
  3903. }
  3904. ],
  3905. "time": "2024-05-31T14:57:53+00:00"
  3906. },
  3907. {
  3908. "name": "symfony/config",
  3909. "version": "v7.1.1",
  3910. "source": {
  3911. "type": "git",
  3912. "url": "https://github.com/symfony/config.git",
  3913. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2"
  3914. },
  3915. "dist": {
  3916. "type": "zip",
  3917. "url": "https://api.github.com/repos/symfony/config/zipball/2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  3918. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  3919. "shasum": ""
  3920. },
  3921. "require": {
  3922. "php": ">=8.2",
  3923. "symfony/deprecation-contracts": "^2.5|^3",
  3924. "symfony/filesystem": "^7.1",
  3925. "symfony/polyfill-ctype": "~1.8"
  3926. },
  3927. "conflict": {
  3928. "symfony/finder": "<6.4",
  3929. "symfony/service-contracts": "<2.5"
  3930. },
  3931. "require-dev": {
  3932. "symfony/event-dispatcher": "^6.4|^7.0",
  3933. "symfony/finder": "^6.4|^7.0",
  3934. "symfony/messenger": "^6.4|^7.0",
  3935. "symfony/service-contracts": "^2.5|^3",
  3936. "symfony/yaml": "^6.4|^7.0"
  3937. },
  3938. "type": "library",
  3939. "autoload": {
  3940. "psr-4": {
  3941. "Symfony\\Component\\Config\\": ""
  3942. },
  3943. "exclude-from-classmap": [
  3944. "/Tests/"
  3945. ]
  3946. },
  3947. "notification-url": "https://packagist.org/downloads/",
  3948. "license": [
  3949. "MIT"
  3950. ],
  3951. "authors": [
  3952. {
  3953. "name": "Fabien Potencier",
  3954. "email": "fabien@symfony.com"
  3955. },
  3956. {
  3957. "name": "Symfony Community",
  3958. "homepage": "https://symfony.com/contributors"
  3959. }
  3960. ],
  3961. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3962. "homepage": "https://symfony.com",
  3963. "support": {
  3964. "source": "https://github.com/symfony/config/tree/v7.1.1"
  3965. },
  3966. "funding": [
  3967. {
  3968. "url": "https://symfony.com/sponsor",
  3969. "type": "custom"
  3970. },
  3971. {
  3972. "url": "https://github.com/fabpot",
  3973. "type": "github"
  3974. },
  3975. {
  3976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3977. "type": "tidelift"
  3978. }
  3979. ],
  3980. "time": "2024-05-31T14:57:53+00:00"
  3981. },
  3982. {
  3983. "name": "symfony/console",
  3984. "version": "v7.1.5",
  3985. "source": {
  3986. "type": "git",
  3987. "url": "https://github.com/symfony/console.git",
  3988. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee"
  3989. },
  3990. "dist": {
  3991. "type": "zip",
  3992. "url": "https://api.github.com/repos/symfony/console/zipball/0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  3993. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  3994. "shasum": ""
  3995. },
  3996. "require": {
  3997. "php": ">=8.2",
  3998. "symfony/polyfill-mbstring": "~1.0",
  3999. "symfony/service-contracts": "^2.5|^3",
  4000. "symfony/string": "^6.4|^7.0"
  4001. },
  4002. "conflict": {
  4003. "symfony/dependency-injection": "<6.4",
  4004. "symfony/dotenv": "<6.4",
  4005. "symfony/event-dispatcher": "<6.4",
  4006. "symfony/lock": "<6.4",
  4007. "symfony/process": "<6.4"
  4008. },
  4009. "provide": {
  4010. "psr/log-implementation": "1.0|2.0|3.0"
  4011. },
  4012. "require-dev": {
  4013. "psr/log": "^1|^2|^3",
  4014. "symfony/config": "^6.4|^7.0",
  4015. "symfony/dependency-injection": "^6.4|^7.0",
  4016. "symfony/event-dispatcher": "^6.4|^7.0",
  4017. "symfony/http-foundation": "^6.4|^7.0",
  4018. "symfony/http-kernel": "^6.4|^7.0",
  4019. "symfony/lock": "^6.4|^7.0",
  4020. "symfony/messenger": "^6.4|^7.0",
  4021. "symfony/process": "^6.4|^7.0",
  4022. "symfony/stopwatch": "^6.4|^7.0",
  4023. "symfony/var-dumper": "^6.4|^7.0"
  4024. },
  4025. "type": "library",
  4026. "autoload": {
  4027. "psr-4": {
  4028. "Symfony\\Component\\Console\\": ""
  4029. },
  4030. "exclude-from-classmap": [
  4031. "/Tests/"
  4032. ]
  4033. },
  4034. "notification-url": "https://packagist.org/downloads/",
  4035. "license": [
  4036. "MIT"
  4037. ],
  4038. "authors": [
  4039. {
  4040. "name": "Fabien Potencier",
  4041. "email": "fabien@symfony.com"
  4042. },
  4043. {
  4044. "name": "Symfony Community",
  4045. "homepage": "https://symfony.com/contributors"
  4046. }
  4047. ],
  4048. "description": "Eases the creation of beautiful and testable command line interfaces",
  4049. "homepage": "https://symfony.com",
  4050. "keywords": [
  4051. "cli",
  4052. "command-line",
  4053. "console",
  4054. "terminal"
  4055. ],
  4056. "support": {
  4057. "source": "https://github.com/symfony/console/tree/v7.1.5"
  4058. },
  4059. "funding": [
  4060. {
  4061. "url": "https://symfony.com/sponsor",
  4062. "type": "custom"
  4063. },
  4064. {
  4065. "url": "https://github.com/fabpot",
  4066. "type": "github"
  4067. },
  4068. {
  4069. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4070. "type": "tidelift"
  4071. }
  4072. ],
  4073. "time": "2024-09-20T08:28:38+00:00"
  4074. },
  4075. {
  4076. "name": "symfony/dependency-injection",
  4077. "version": "v7.1.5",
  4078. "source": {
  4079. "type": "git",
  4080. "url": "https://github.com/symfony/dependency-injection.git",
  4081. "reference": "38465f925ec4e0707b090e9147c65869837d639d"
  4082. },
  4083. "dist": {
  4084. "type": "zip",
  4085. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/38465f925ec4e0707b090e9147c65869837d639d",
  4086. "reference": "38465f925ec4e0707b090e9147c65869837d639d",
  4087. "shasum": ""
  4088. },
  4089. "require": {
  4090. "php": ">=8.2",
  4091. "psr/container": "^1.1|^2.0",
  4092. "symfony/deprecation-contracts": "^2.5|^3",
  4093. "symfony/service-contracts": "^3.5",
  4094. "symfony/var-exporter": "^6.4|^7.0"
  4095. },
  4096. "conflict": {
  4097. "ext-psr": "<1.1|>=2",
  4098. "symfony/config": "<6.4",
  4099. "symfony/finder": "<6.4",
  4100. "symfony/yaml": "<6.4"
  4101. },
  4102. "provide": {
  4103. "psr/container-implementation": "1.1|2.0",
  4104. "symfony/service-implementation": "1.1|2.0|3.0"
  4105. },
  4106. "require-dev": {
  4107. "symfony/config": "^6.4|^7.0",
  4108. "symfony/expression-language": "^6.4|^7.0",
  4109. "symfony/yaml": "^6.4|^7.0"
  4110. },
  4111. "type": "library",
  4112. "autoload": {
  4113. "psr-4": {
  4114. "Symfony\\Component\\DependencyInjection\\": ""
  4115. },
  4116. "exclude-from-classmap": [
  4117. "/Tests/"
  4118. ]
  4119. },
  4120. "notification-url": "https://packagist.org/downloads/",
  4121. "license": [
  4122. "MIT"
  4123. ],
  4124. "authors": [
  4125. {
  4126. "name": "Fabien Potencier",
  4127. "email": "fabien@symfony.com"
  4128. },
  4129. {
  4130. "name": "Symfony Community",
  4131. "homepage": "https://symfony.com/contributors"
  4132. }
  4133. ],
  4134. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  4135. "homepage": "https://symfony.com",
  4136. "support": {
  4137. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.5"
  4138. },
  4139. "funding": [
  4140. {
  4141. "url": "https://symfony.com/sponsor",
  4142. "type": "custom"
  4143. },
  4144. {
  4145. "url": "https://github.com/fabpot",
  4146. "type": "github"
  4147. },
  4148. {
  4149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4150. "type": "tidelift"
  4151. }
  4152. ],
  4153. "time": "2024-09-20T08:28:38+00:00"
  4154. },
  4155. {
  4156. "name": "symfony/deprecation-contracts",
  4157. "version": "v3.5.0",
  4158. "source": {
  4159. "type": "git",
  4160. "url": "https://github.com/symfony/deprecation-contracts.git",
  4161. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  4162. },
  4163. "dist": {
  4164. "type": "zip",
  4165. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  4166. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  4167. "shasum": ""
  4168. },
  4169. "require": {
  4170. "php": ">=8.1"
  4171. },
  4172. "type": "library",
  4173. "extra": {
  4174. "branch-alias": {
  4175. "dev-main": "3.5-dev"
  4176. },
  4177. "thanks": {
  4178. "name": "symfony/contracts",
  4179. "url": "https://github.com/symfony/contracts"
  4180. }
  4181. },
  4182. "autoload": {
  4183. "files": [
  4184. "function.php"
  4185. ]
  4186. },
  4187. "notification-url": "https://packagist.org/downloads/",
  4188. "license": [
  4189. "MIT"
  4190. ],
  4191. "authors": [
  4192. {
  4193. "name": "Nicolas Grekas",
  4194. "email": "p@tchwork.com"
  4195. },
  4196. {
  4197. "name": "Symfony Community",
  4198. "homepage": "https://symfony.com/contributors"
  4199. }
  4200. ],
  4201. "description": "A generic function and convention to trigger deprecation notices",
  4202. "homepage": "https://symfony.com",
  4203. "support": {
  4204. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  4205. },
  4206. "funding": [
  4207. {
  4208. "url": "https://symfony.com/sponsor",
  4209. "type": "custom"
  4210. },
  4211. {
  4212. "url": "https://github.com/fabpot",
  4213. "type": "github"
  4214. },
  4215. {
  4216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4217. "type": "tidelift"
  4218. }
  4219. ],
  4220. "time": "2024-04-18T09:32:20+00:00"
  4221. },
  4222. {
  4223. "name": "symfony/doctrine-bridge",
  4224. "version": "v7.1.5",
  4225. "source": {
  4226. "type": "git",
  4227. "url": "https://github.com/symfony/doctrine-bridge.git",
  4228. "reference": "2568d0adaa5b0018b07beaa90363b880a43cc957"
  4229. },
  4230. "dist": {
  4231. "type": "zip",
  4232. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/2568d0adaa5b0018b07beaa90363b880a43cc957",
  4233. "reference": "2568d0adaa5b0018b07beaa90363b880a43cc957",
  4234. "shasum": ""
  4235. },
  4236. "require": {
  4237. "doctrine/event-manager": "^2",
  4238. "doctrine/persistence": "^3.1",
  4239. "php": ">=8.2",
  4240. "symfony/deprecation-contracts": "^2.5|^3",
  4241. "symfony/polyfill-ctype": "~1.8",
  4242. "symfony/polyfill-mbstring": "~1.0",
  4243. "symfony/service-contracts": "^2.5|^3"
  4244. },
  4245. "conflict": {
  4246. "doctrine/dbal": "<3.6",
  4247. "doctrine/lexer": "<1.1",
  4248. "doctrine/orm": "<2.15",
  4249. "symfony/cache": "<6.4",
  4250. "symfony/dependency-injection": "<6.4",
  4251. "symfony/form": "<6.4.6|>=7,<7.0.6",
  4252. "symfony/http-foundation": "<6.4",
  4253. "symfony/http-kernel": "<6.4",
  4254. "symfony/lock": "<6.4",
  4255. "symfony/messenger": "<6.4",
  4256. "symfony/property-info": "<6.4",
  4257. "symfony/security-bundle": "<6.4",
  4258. "symfony/security-core": "<6.4",
  4259. "symfony/validator": "<6.4"
  4260. },
  4261. "require-dev": {
  4262. "doctrine/collections": "^1.0|^2.0",
  4263. "doctrine/data-fixtures": "^1.1",
  4264. "doctrine/dbal": "^3.6|^4",
  4265. "doctrine/orm": "^2.15|^3",
  4266. "psr/log": "^1|^2|^3",
  4267. "symfony/cache": "^6.4|^7.0",
  4268. "symfony/config": "^6.4|^7.0",
  4269. "symfony/dependency-injection": "^6.4|^7.0",
  4270. "symfony/doctrine-messenger": "^6.4|^7.0",
  4271. "symfony/expression-language": "^6.4|^7.0",
  4272. "symfony/form": "^6.4.6|^7.0.6",
  4273. "symfony/http-kernel": "^6.4|^7.0",
  4274. "symfony/lock": "^6.4|^7.0",
  4275. "symfony/messenger": "^6.4|^7.0",
  4276. "symfony/property-access": "^6.4|^7.0",
  4277. "symfony/property-info": "^6.4|^7.0",
  4278. "symfony/security-core": "^6.4|^7.0",
  4279. "symfony/stopwatch": "^6.4|^7.0",
  4280. "symfony/translation": "^6.4|^7.0",
  4281. "symfony/type-info": "^7.1",
  4282. "symfony/uid": "^6.4|^7.0",
  4283. "symfony/validator": "^6.4|^7.0",
  4284. "symfony/var-dumper": "^6.4|^7.0"
  4285. },
  4286. "type": "symfony-bridge",
  4287. "autoload": {
  4288. "psr-4": {
  4289. "Symfony\\Bridge\\Doctrine\\": ""
  4290. },
  4291. "exclude-from-classmap": [
  4292. "/Tests/"
  4293. ]
  4294. },
  4295. "notification-url": "https://packagist.org/downloads/",
  4296. "license": [
  4297. "MIT"
  4298. ],
  4299. "authors": [
  4300. {
  4301. "name": "Fabien Potencier",
  4302. "email": "fabien@symfony.com"
  4303. },
  4304. {
  4305. "name": "Symfony Community",
  4306. "homepage": "https://symfony.com/contributors"
  4307. }
  4308. ],
  4309. "description": "Provides integration for Doctrine with various Symfony components",
  4310. "homepage": "https://symfony.com",
  4311. "support": {
  4312. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.5"
  4313. },
  4314. "funding": [
  4315. {
  4316. "url": "https://symfony.com/sponsor",
  4317. "type": "custom"
  4318. },
  4319. {
  4320. "url": "https://github.com/fabpot",
  4321. "type": "github"
  4322. },
  4323. {
  4324. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4325. "type": "tidelift"
  4326. }
  4327. ],
  4328. "time": "2024-09-08T12:32:26+00:00"
  4329. },
  4330. {
  4331. "name": "symfony/doctrine-messenger",
  4332. "version": "v7.1.5",
  4333. "source": {
  4334. "type": "git",
  4335. "url": "https://github.com/symfony/doctrine-messenger.git",
  4336. "reference": "29015027fb63461e035246e07d74eeab9cb03304"
  4337. },
  4338. "dist": {
  4339. "type": "zip",
  4340. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/29015027fb63461e035246e07d74eeab9cb03304",
  4341. "reference": "29015027fb63461e035246e07d74eeab9cb03304",
  4342. "shasum": ""
  4343. },
  4344. "require": {
  4345. "doctrine/dbal": "^3.6|^4",
  4346. "php": ">=8.2",
  4347. "symfony/messenger": "^6.4|^7.0",
  4348. "symfony/service-contracts": "^2.5|^3"
  4349. },
  4350. "conflict": {
  4351. "doctrine/persistence": "<1.3"
  4352. },
  4353. "require-dev": {
  4354. "doctrine/persistence": "^1.3|^2|^3",
  4355. "symfony/property-access": "^6.4|^7.0",
  4356. "symfony/serializer": "^6.4|^7.0"
  4357. },
  4358. "type": "symfony-messenger-bridge",
  4359. "autoload": {
  4360. "psr-4": {
  4361. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  4362. },
  4363. "exclude-from-classmap": [
  4364. "/Tests/"
  4365. ]
  4366. },
  4367. "notification-url": "https://packagist.org/downloads/",
  4368. "license": [
  4369. "MIT"
  4370. ],
  4371. "authors": [
  4372. {
  4373. "name": "Fabien Potencier",
  4374. "email": "fabien@symfony.com"
  4375. },
  4376. {
  4377. "name": "Symfony Community",
  4378. "homepage": "https://symfony.com/contributors"
  4379. }
  4380. ],
  4381. "description": "Symfony Doctrine Messenger Bridge",
  4382. "homepage": "https://symfony.com",
  4383. "support": {
  4384. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.1.5"
  4385. },
  4386. "funding": [
  4387. {
  4388. "url": "https://symfony.com/sponsor",
  4389. "type": "custom"
  4390. },
  4391. {
  4392. "url": "https://github.com/fabpot",
  4393. "type": "github"
  4394. },
  4395. {
  4396. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4397. "type": "tidelift"
  4398. }
  4399. ],
  4400. "time": "2024-09-20T08:28:38+00:00"
  4401. },
  4402. {
  4403. "name": "symfony/dotenv",
  4404. "version": "v7.1.5",
  4405. "source": {
  4406. "type": "git",
  4407. "url": "https://github.com/symfony/dotenv.git",
  4408. "reference": "6d966200b399fa59759286f3fc7c919f0677c449"
  4409. },
  4410. "dist": {
  4411. "type": "zip",
  4412. "url": "https://api.github.com/repos/symfony/dotenv/zipball/6d966200b399fa59759286f3fc7c919f0677c449",
  4413. "reference": "6d966200b399fa59759286f3fc7c919f0677c449",
  4414. "shasum": ""
  4415. },
  4416. "require": {
  4417. "php": ">=8.2"
  4418. },
  4419. "conflict": {
  4420. "symfony/console": "<6.4",
  4421. "symfony/process": "<6.4"
  4422. },
  4423. "require-dev": {
  4424. "symfony/console": "^6.4|^7.0",
  4425. "symfony/process": "^6.4|^7.0"
  4426. },
  4427. "type": "library",
  4428. "autoload": {
  4429. "psr-4": {
  4430. "Symfony\\Component\\Dotenv\\": ""
  4431. },
  4432. "exclude-from-classmap": [
  4433. "/Tests/"
  4434. ]
  4435. },
  4436. "notification-url": "https://packagist.org/downloads/",
  4437. "license": [
  4438. "MIT"
  4439. ],
  4440. "authors": [
  4441. {
  4442. "name": "Fabien Potencier",
  4443. "email": "fabien@symfony.com"
  4444. },
  4445. {
  4446. "name": "Symfony Community",
  4447. "homepage": "https://symfony.com/contributors"
  4448. }
  4449. ],
  4450. "description": "Registers environment variables from a .env file",
  4451. "homepage": "https://symfony.com",
  4452. "keywords": [
  4453. "dotenv",
  4454. "env",
  4455. "environment"
  4456. ],
  4457. "support": {
  4458. "source": "https://github.com/symfony/dotenv/tree/v7.1.5"
  4459. },
  4460. "funding": [
  4461. {
  4462. "url": "https://symfony.com/sponsor",
  4463. "type": "custom"
  4464. },
  4465. {
  4466. "url": "https://github.com/fabpot",
  4467. "type": "github"
  4468. },
  4469. {
  4470. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4471. "type": "tidelift"
  4472. }
  4473. ],
  4474. "time": "2024-09-17T09:16:35+00:00"
  4475. },
  4476. {
  4477. "name": "symfony/error-handler",
  4478. "version": "v7.1.3",
  4479. "source": {
  4480. "type": "git",
  4481. "url": "https://github.com/symfony/error-handler.git",
  4482. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  4483. },
  4484. "dist": {
  4485. "type": "zip",
  4486. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  4487. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  4488. "shasum": ""
  4489. },
  4490. "require": {
  4491. "php": ">=8.2",
  4492. "psr/log": "^1|^2|^3",
  4493. "symfony/var-dumper": "^6.4|^7.0"
  4494. },
  4495. "conflict": {
  4496. "symfony/deprecation-contracts": "<2.5",
  4497. "symfony/http-kernel": "<6.4"
  4498. },
  4499. "require-dev": {
  4500. "symfony/deprecation-contracts": "^2.5|^3",
  4501. "symfony/http-kernel": "^6.4|^7.0",
  4502. "symfony/serializer": "^6.4|^7.0"
  4503. },
  4504. "bin": [
  4505. "Resources/bin/patch-type-declarations"
  4506. ],
  4507. "type": "library",
  4508. "autoload": {
  4509. "psr-4": {
  4510. "Symfony\\Component\\ErrorHandler\\": ""
  4511. },
  4512. "exclude-from-classmap": [
  4513. "/Tests/"
  4514. ]
  4515. },
  4516. "notification-url": "https://packagist.org/downloads/",
  4517. "license": [
  4518. "MIT"
  4519. ],
  4520. "authors": [
  4521. {
  4522. "name": "Fabien Potencier",
  4523. "email": "fabien@symfony.com"
  4524. },
  4525. {
  4526. "name": "Symfony Community",
  4527. "homepage": "https://symfony.com/contributors"
  4528. }
  4529. ],
  4530. "description": "Provides tools to manage errors and ease debugging PHP code",
  4531. "homepage": "https://symfony.com",
  4532. "support": {
  4533. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  4534. },
  4535. "funding": [
  4536. {
  4537. "url": "https://symfony.com/sponsor",
  4538. "type": "custom"
  4539. },
  4540. {
  4541. "url": "https://github.com/fabpot",
  4542. "type": "github"
  4543. },
  4544. {
  4545. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4546. "type": "tidelift"
  4547. }
  4548. ],
  4549. "time": "2024-07-26T13:02:51+00:00"
  4550. },
  4551. {
  4552. "name": "symfony/event-dispatcher",
  4553. "version": "v7.1.1",
  4554. "source": {
  4555. "type": "git",
  4556. "url": "https://github.com/symfony/event-dispatcher.git",
  4557. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  4558. },
  4559. "dist": {
  4560. "type": "zip",
  4561. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  4562. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  4563. "shasum": ""
  4564. },
  4565. "require": {
  4566. "php": ">=8.2",
  4567. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4568. },
  4569. "conflict": {
  4570. "symfony/dependency-injection": "<6.4",
  4571. "symfony/service-contracts": "<2.5"
  4572. },
  4573. "provide": {
  4574. "psr/event-dispatcher-implementation": "1.0",
  4575. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4576. },
  4577. "require-dev": {
  4578. "psr/log": "^1|^2|^3",
  4579. "symfony/config": "^6.4|^7.0",
  4580. "symfony/dependency-injection": "^6.4|^7.0",
  4581. "symfony/error-handler": "^6.4|^7.0",
  4582. "symfony/expression-language": "^6.4|^7.0",
  4583. "symfony/http-foundation": "^6.4|^7.0",
  4584. "symfony/service-contracts": "^2.5|^3",
  4585. "symfony/stopwatch": "^6.4|^7.0"
  4586. },
  4587. "type": "library",
  4588. "autoload": {
  4589. "psr-4": {
  4590. "Symfony\\Component\\EventDispatcher\\": ""
  4591. },
  4592. "exclude-from-classmap": [
  4593. "/Tests/"
  4594. ]
  4595. },
  4596. "notification-url": "https://packagist.org/downloads/",
  4597. "license": [
  4598. "MIT"
  4599. ],
  4600. "authors": [
  4601. {
  4602. "name": "Fabien Potencier",
  4603. "email": "fabien@symfony.com"
  4604. },
  4605. {
  4606. "name": "Symfony Community",
  4607. "homepage": "https://symfony.com/contributors"
  4608. }
  4609. ],
  4610. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4611. "homepage": "https://symfony.com",
  4612. "support": {
  4613. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  4614. },
  4615. "funding": [
  4616. {
  4617. "url": "https://symfony.com/sponsor",
  4618. "type": "custom"
  4619. },
  4620. {
  4621. "url": "https://github.com/fabpot",
  4622. "type": "github"
  4623. },
  4624. {
  4625. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4626. "type": "tidelift"
  4627. }
  4628. ],
  4629. "time": "2024-05-31T14:57:53+00:00"
  4630. },
  4631. {
  4632. "name": "symfony/event-dispatcher-contracts",
  4633. "version": "v3.5.0",
  4634. "source": {
  4635. "type": "git",
  4636. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4637. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  4638. },
  4639. "dist": {
  4640. "type": "zip",
  4641. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  4642. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  4643. "shasum": ""
  4644. },
  4645. "require": {
  4646. "php": ">=8.1",
  4647. "psr/event-dispatcher": "^1"
  4648. },
  4649. "type": "library",
  4650. "extra": {
  4651. "branch-alias": {
  4652. "dev-main": "3.5-dev"
  4653. },
  4654. "thanks": {
  4655. "name": "symfony/contracts",
  4656. "url": "https://github.com/symfony/contracts"
  4657. }
  4658. },
  4659. "autoload": {
  4660. "psr-4": {
  4661. "Symfony\\Contracts\\EventDispatcher\\": ""
  4662. }
  4663. },
  4664. "notification-url": "https://packagist.org/downloads/",
  4665. "license": [
  4666. "MIT"
  4667. ],
  4668. "authors": [
  4669. {
  4670. "name": "Nicolas Grekas",
  4671. "email": "p@tchwork.com"
  4672. },
  4673. {
  4674. "name": "Symfony Community",
  4675. "homepage": "https://symfony.com/contributors"
  4676. }
  4677. ],
  4678. "description": "Generic abstractions related to dispatching event",
  4679. "homepage": "https://symfony.com",
  4680. "keywords": [
  4681. "abstractions",
  4682. "contracts",
  4683. "decoupling",
  4684. "interfaces",
  4685. "interoperability",
  4686. "standards"
  4687. ],
  4688. "support": {
  4689. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  4690. },
  4691. "funding": [
  4692. {
  4693. "url": "https://symfony.com/sponsor",
  4694. "type": "custom"
  4695. },
  4696. {
  4697. "url": "https://github.com/fabpot",
  4698. "type": "github"
  4699. },
  4700. {
  4701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4702. "type": "tidelift"
  4703. }
  4704. ],
  4705. "time": "2024-04-18T09:32:20+00:00"
  4706. },
  4707. {
  4708. "name": "symfony/expression-language",
  4709. "version": "v7.1.4",
  4710. "source": {
  4711. "type": "git",
  4712. "url": "https://github.com/symfony/expression-language.git",
  4713. "reference": "b9e4bc6685d513c10235145ed1042a6081635806"
  4714. },
  4715. "dist": {
  4716. "type": "zip",
  4717. "url": "https://api.github.com/repos/symfony/expression-language/zipball/b9e4bc6685d513c10235145ed1042a6081635806",
  4718. "reference": "b9e4bc6685d513c10235145ed1042a6081635806",
  4719. "shasum": ""
  4720. },
  4721. "require": {
  4722. "php": ">=8.2",
  4723. "symfony/cache": "^6.4|^7.0",
  4724. "symfony/deprecation-contracts": "^2.5|^3",
  4725. "symfony/service-contracts": "^2.5|^3"
  4726. },
  4727. "type": "library",
  4728. "autoload": {
  4729. "psr-4": {
  4730. "Symfony\\Component\\ExpressionLanguage\\": ""
  4731. },
  4732. "exclude-from-classmap": [
  4733. "/Tests/"
  4734. ]
  4735. },
  4736. "notification-url": "https://packagist.org/downloads/",
  4737. "license": [
  4738. "MIT"
  4739. ],
  4740. "authors": [
  4741. {
  4742. "name": "Fabien Potencier",
  4743. "email": "fabien@symfony.com"
  4744. },
  4745. {
  4746. "name": "Symfony Community",
  4747. "homepage": "https://symfony.com/contributors"
  4748. }
  4749. ],
  4750. "description": "Provides an engine that can compile and evaluate expressions",
  4751. "homepage": "https://symfony.com",
  4752. "support": {
  4753. "source": "https://github.com/symfony/expression-language/tree/v7.1.4"
  4754. },
  4755. "funding": [
  4756. {
  4757. "url": "https://symfony.com/sponsor",
  4758. "type": "custom"
  4759. },
  4760. {
  4761. "url": "https://github.com/fabpot",
  4762. "type": "github"
  4763. },
  4764. {
  4765. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4766. "type": "tidelift"
  4767. }
  4768. ],
  4769. "time": "2024-08-12T09:59:40+00:00"
  4770. },
  4771. {
  4772. "name": "symfony/filesystem",
  4773. "version": "v7.1.5",
  4774. "source": {
  4775. "type": "git",
  4776. "url": "https://github.com/symfony/filesystem.git",
  4777. "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a"
  4778. },
  4779. "dist": {
  4780. "type": "zip",
  4781. "url": "https://api.github.com/repos/symfony/filesystem/zipball/61fe0566189bf32e8cfee78335d8776f64a66f5a",
  4782. "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a",
  4783. "shasum": ""
  4784. },
  4785. "require": {
  4786. "php": ">=8.2",
  4787. "symfony/polyfill-ctype": "~1.8",
  4788. "symfony/polyfill-mbstring": "~1.8"
  4789. },
  4790. "require-dev": {
  4791. "symfony/process": "^6.4|^7.0"
  4792. },
  4793. "type": "library",
  4794. "autoload": {
  4795. "psr-4": {
  4796. "Symfony\\Component\\Filesystem\\": ""
  4797. },
  4798. "exclude-from-classmap": [
  4799. "/Tests/"
  4800. ]
  4801. },
  4802. "notification-url": "https://packagist.org/downloads/",
  4803. "license": [
  4804. "MIT"
  4805. ],
  4806. "authors": [
  4807. {
  4808. "name": "Fabien Potencier",
  4809. "email": "fabien@symfony.com"
  4810. },
  4811. {
  4812. "name": "Symfony Community",
  4813. "homepage": "https://symfony.com/contributors"
  4814. }
  4815. ],
  4816. "description": "Provides basic utilities for the filesystem",
  4817. "homepage": "https://symfony.com",
  4818. "support": {
  4819. "source": "https://github.com/symfony/filesystem/tree/v7.1.5"
  4820. },
  4821. "funding": [
  4822. {
  4823. "url": "https://symfony.com/sponsor",
  4824. "type": "custom"
  4825. },
  4826. {
  4827. "url": "https://github.com/fabpot",
  4828. "type": "github"
  4829. },
  4830. {
  4831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4832. "type": "tidelift"
  4833. }
  4834. ],
  4835. "time": "2024-09-17T09:16:35+00:00"
  4836. },
  4837. {
  4838. "name": "symfony/finder",
  4839. "version": "v7.1.4",
  4840. "source": {
  4841. "type": "git",
  4842. "url": "https://github.com/symfony/finder.git",
  4843. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823"
  4844. },
  4845. "dist": {
  4846. "type": "zip",
  4847. "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823",
  4848. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823",
  4849. "shasum": ""
  4850. },
  4851. "require": {
  4852. "php": ">=8.2"
  4853. },
  4854. "require-dev": {
  4855. "symfony/filesystem": "^6.4|^7.0"
  4856. },
  4857. "type": "library",
  4858. "autoload": {
  4859. "psr-4": {
  4860. "Symfony\\Component\\Finder\\": ""
  4861. },
  4862. "exclude-from-classmap": [
  4863. "/Tests/"
  4864. ]
  4865. },
  4866. "notification-url": "https://packagist.org/downloads/",
  4867. "license": [
  4868. "MIT"
  4869. ],
  4870. "authors": [
  4871. {
  4872. "name": "Fabien Potencier",
  4873. "email": "fabien@symfony.com"
  4874. },
  4875. {
  4876. "name": "Symfony Community",
  4877. "homepage": "https://symfony.com/contributors"
  4878. }
  4879. ],
  4880. "description": "Finds files and directories via an intuitive fluent interface",
  4881. "homepage": "https://symfony.com",
  4882. "support": {
  4883. "source": "https://github.com/symfony/finder/tree/v7.1.4"
  4884. },
  4885. "funding": [
  4886. {
  4887. "url": "https://symfony.com/sponsor",
  4888. "type": "custom"
  4889. },
  4890. {
  4891. "url": "https://github.com/fabpot",
  4892. "type": "github"
  4893. },
  4894. {
  4895. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4896. "type": "tidelift"
  4897. }
  4898. ],
  4899. "time": "2024-08-13T14:28:19+00:00"
  4900. },
  4901. {
  4902. "name": "symfony/flex",
  4903. "version": "v2.4.7",
  4904. "source": {
  4905. "type": "git",
  4906. "url": "https://github.com/symfony/flex.git",
  4907. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402"
  4908. },
  4909. "dist": {
  4910. "type": "zip",
  4911. "url": "https://api.github.com/repos/symfony/flex/zipball/92f4fba342161ff36072bd3b8e0b3c6c23160402",
  4912. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402",
  4913. "shasum": ""
  4914. },
  4915. "require": {
  4916. "composer-plugin-api": "^2.1",
  4917. "php": ">=8.0"
  4918. },
  4919. "conflict": {
  4920. "composer/semver": "<1.7.2"
  4921. },
  4922. "require-dev": {
  4923. "composer/composer": "^2.1",
  4924. "symfony/dotenv": "^5.4|^6.0",
  4925. "symfony/filesystem": "^5.4|^6.0",
  4926. "symfony/phpunit-bridge": "^5.4|^6.0",
  4927. "symfony/process": "^5.4|^6.0"
  4928. },
  4929. "type": "composer-plugin",
  4930. "extra": {
  4931. "class": "Symfony\\Flex\\Flex"
  4932. },
  4933. "autoload": {
  4934. "psr-4": {
  4935. "Symfony\\Flex\\": "src"
  4936. }
  4937. },
  4938. "notification-url": "https://packagist.org/downloads/",
  4939. "license": [
  4940. "MIT"
  4941. ],
  4942. "authors": [
  4943. {
  4944. "name": "Fabien Potencier",
  4945. "email": "fabien.potencier@gmail.com"
  4946. }
  4947. ],
  4948. "description": "Composer plugin for Symfony",
  4949. "support": {
  4950. "issues": "https://github.com/symfony/flex/issues",
  4951. "source": "https://github.com/symfony/flex/tree/v2.4.7"
  4952. },
  4953. "funding": [
  4954. {
  4955. "url": "https://symfony.com/sponsor",
  4956. "type": "custom"
  4957. },
  4958. {
  4959. "url": "https://github.com/fabpot",
  4960. "type": "github"
  4961. },
  4962. {
  4963. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4964. "type": "tidelift"
  4965. }
  4966. ],
  4967. "time": "2024-10-07T08:51:54+00:00"
  4968. },
  4969. {
  4970. "name": "symfony/form",
  4971. "version": "v7.1.5",
  4972. "source": {
  4973. "type": "git",
  4974. "url": "https://github.com/symfony/form.git",
  4975. "reference": "6b8b53ad6d42f14b158c896163b96ff260d78222"
  4976. },
  4977. "dist": {
  4978. "type": "zip",
  4979. "url": "https://api.github.com/repos/symfony/form/zipball/6b8b53ad6d42f14b158c896163b96ff260d78222",
  4980. "reference": "6b8b53ad6d42f14b158c896163b96ff260d78222",
  4981. "shasum": ""
  4982. },
  4983. "require": {
  4984. "php": ">=8.2",
  4985. "symfony/deprecation-contracts": "^2.5|^3",
  4986. "symfony/event-dispatcher": "^6.4|^7.0",
  4987. "symfony/options-resolver": "^6.4|^7.0",
  4988. "symfony/polyfill-ctype": "~1.8",
  4989. "symfony/polyfill-intl-icu": "^1.21",
  4990. "symfony/polyfill-mbstring": "~1.0",
  4991. "symfony/property-access": "^6.4|^7.0",
  4992. "symfony/service-contracts": "^2.5|^3"
  4993. },
  4994. "conflict": {
  4995. "symfony/console": "<6.4",
  4996. "symfony/dependency-injection": "<6.4",
  4997. "symfony/doctrine-bridge": "<6.4",
  4998. "symfony/error-handler": "<6.4",
  4999. "symfony/framework-bundle": "<6.4",
  5000. "symfony/http-kernel": "<6.4",
  5001. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  5002. "symfony/translation-contracts": "<2.5",
  5003. "symfony/twig-bridge": "<6.4"
  5004. },
  5005. "require-dev": {
  5006. "doctrine/collections": "^1.0|^2.0",
  5007. "symfony/config": "^6.4|^7.0",
  5008. "symfony/console": "^6.4|^7.0",
  5009. "symfony/dependency-injection": "^6.4|^7.0",
  5010. "symfony/expression-language": "^6.4|^7.0",
  5011. "symfony/html-sanitizer": "^6.4|^7.0",
  5012. "symfony/http-foundation": "^6.4|^7.0",
  5013. "symfony/http-kernel": "^6.4|^7.0",
  5014. "symfony/intl": "^6.4|^7.0",
  5015. "symfony/security-core": "^6.4|^7.0",
  5016. "symfony/security-csrf": "^6.4|^7.0",
  5017. "symfony/translation": "^6.4.3|^7.0.3",
  5018. "symfony/uid": "^6.4|^7.0",
  5019. "symfony/validator": "^6.4|^7.0",
  5020. "symfony/var-dumper": "^6.4|^7.0"
  5021. },
  5022. "type": "library",
  5023. "autoload": {
  5024. "psr-4": {
  5025. "Symfony\\Component\\Form\\": ""
  5026. },
  5027. "exclude-from-classmap": [
  5028. "/Tests/"
  5029. ]
  5030. },
  5031. "notification-url": "https://packagist.org/downloads/",
  5032. "license": [
  5033. "MIT"
  5034. ],
  5035. "authors": [
  5036. {
  5037. "name": "Fabien Potencier",
  5038. "email": "fabien@symfony.com"
  5039. },
  5040. {
  5041. "name": "Symfony Community",
  5042. "homepage": "https://symfony.com/contributors"
  5043. }
  5044. ],
  5045. "description": "Allows to easily create, process and reuse HTML forms",
  5046. "homepage": "https://symfony.com",
  5047. "support": {
  5048. "source": "https://github.com/symfony/form/tree/v7.1.5"
  5049. },
  5050. "funding": [
  5051. {
  5052. "url": "https://symfony.com/sponsor",
  5053. "type": "custom"
  5054. },
  5055. {
  5056. "url": "https://github.com/fabpot",
  5057. "type": "github"
  5058. },
  5059. {
  5060. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5061. "type": "tidelift"
  5062. }
  5063. ],
  5064. "time": "2024-09-20T08:28:38+00:00"
  5065. },
  5066. {
  5067. "name": "symfony/framework-bundle",
  5068. "version": "v7.1.5",
  5069. "source": {
  5070. "type": "git",
  5071. "url": "https://github.com/symfony/framework-bundle.git",
  5072. "reference": "8a792de86230c13a9de7750c0c8b23cc083183d4"
  5073. },
  5074. "dist": {
  5075. "type": "zip",
  5076. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/8a792de86230c13a9de7750c0c8b23cc083183d4",
  5077. "reference": "8a792de86230c13a9de7750c0c8b23cc083183d4",
  5078. "shasum": ""
  5079. },
  5080. "require": {
  5081. "composer-runtime-api": ">=2.1",
  5082. "ext-xml": "*",
  5083. "php": ">=8.2",
  5084. "symfony/cache": "^6.4|^7.0",
  5085. "symfony/config": "^6.4|^7.0",
  5086. "symfony/dependency-injection": "^7.1.5",
  5087. "symfony/deprecation-contracts": "^2.5|^3",
  5088. "symfony/error-handler": "^6.4|^7.0",
  5089. "symfony/event-dispatcher": "^6.4|^7.0",
  5090. "symfony/filesystem": "^7.1",
  5091. "symfony/finder": "^6.4|^7.0",
  5092. "symfony/http-foundation": "^6.4|^7.0",
  5093. "symfony/http-kernel": "^6.4|^7.0",
  5094. "symfony/polyfill-mbstring": "~1.0",
  5095. "symfony/routing": "^6.4|^7.0"
  5096. },
  5097. "conflict": {
  5098. "doctrine/persistence": "<1.3",
  5099. "phpdocumentor/reflection-docblock": "<3.2.2",
  5100. "phpdocumentor/type-resolver": "<1.4.0",
  5101. "symfony/asset": "<6.4",
  5102. "symfony/asset-mapper": "<6.4",
  5103. "symfony/clock": "<6.4",
  5104. "symfony/console": "<6.4",
  5105. "symfony/dom-crawler": "<6.4",
  5106. "symfony/dotenv": "<6.4",
  5107. "symfony/form": "<6.4",
  5108. "symfony/http-client": "<6.4",
  5109. "symfony/lock": "<6.4",
  5110. "symfony/mailer": "<6.4",
  5111. "symfony/messenger": "<6.4",
  5112. "symfony/mime": "<6.4",
  5113. "symfony/property-access": "<6.4",
  5114. "symfony/property-info": "<6.4",
  5115. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  5116. "symfony/security-core": "<6.4",
  5117. "symfony/security-csrf": "<6.4",
  5118. "symfony/serializer": "<6.4",
  5119. "symfony/stopwatch": "<6.4",
  5120. "symfony/translation": "<6.4",
  5121. "symfony/twig-bridge": "<6.4",
  5122. "symfony/twig-bundle": "<6.4",
  5123. "symfony/validator": "<6.4",
  5124. "symfony/web-profiler-bundle": "<6.4",
  5125. "symfony/workflow": "<6.4"
  5126. },
  5127. "require-dev": {
  5128. "doctrine/persistence": "^1.3|^2|^3",
  5129. "dragonmantank/cron-expression": "^3.1",
  5130. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5131. "seld/jsonlint": "^1.10",
  5132. "symfony/asset": "^6.4|^7.0",
  5133. "symfony/asset-mapper": "^6.4|^7.0",
  5134. "symfony/browser-kit": "^6.4|^7.0",
  5135. "symfony/clock": "^6.4|^7.0",
  5136. "symfony/console": "^6.4|^7.0",
  5137. "symfony/css-selector": "^6.4|^7.0",
  5138. "symfony/dom-crawler": "^6.4|^7.0",
  5139. "symfony/dotenv": "^6.4|^7.0",
  5140. "symfony/expression-language": "^6.4|^7.0",
  5141. "symfony/form": "^6.4|^7.0",
  5142. "symfony/html-sanitizer": "^6.4|^7.0",
  5143. "symfony/http-client": "^6.4|^7.0",
  5144. "symfony/lock": "^6.4|^7.0",
  5145. "symfony/mailer": "^6.4|^7.0",
  5146. "symfony/messenger": "^6.4|^7.0",
  5147. "symfony/mime": "^6.4|^7.0",
  5148. "symfony/notifier": "^6.4|^7.0",
  5149. "symfony/polyfill-intl-icu": "~1.0",
  5150. "symfony/process": "^6.4|^7.0",
  5151. "symfony/property-info": "^6.4|^7.0",
  5152. "symfony/rate-limiter": "^6.4|^7.0",
  5153. "symfony/scheduler": "^6.4.4|^7.0.4",
  5154. "symfony/security-bundle": "^6.4|^7.0",
  5155. "symfony/semaphore": "^6.4|^7.0",
  5156. "symfony/serializer": "^6.4|^7.0",
  5157. "symfony/stopwatch": "^6.4|^7.0",
  5158. "symfony/string": "^6.4|^7.0",
  5159. "symfony/translation": "^6.4|^7.0",
  5160. "symfony/twig-bundle": "^6.4|^7.0",
  5161. "symfony/type-info": "^7.1",
  5162. "symfony/uid": "^6.4|^7.0",
  5163. "symfony/validator": "^6.4|^7.0",
  5164. "symfony/web-link": "^6.4|^7.0",
  5165. "symfony/workflow": "^6.4|^7.0",
  5166. "symfony/yaml": "^6.4|^7.0",
  5167. "twig/twig": "^3.0.4"
  5168. },
  5169. "type": "symfony-bundle",
  5170. "autoload": {
  5171. "psr-4": {
  5172. "Symfony\\Bundle\\FrameworkBundle\\": ""
  5173. },
  5174. "exclude-from-classmap": [
  5175. "/Tests/"
  5176. ]
  5177. },
  5178. "notification-url": "https://packagist.org/downloads/",
  5179. "license": [
  5180. "MIT"
  5181. ],
  5182. "authors": [
  5183. {
  5184. "name": "Fabien Potencier",
  5185. "email": "fabien@symfony.com"
  5186. },
  5187. {
  5188. "name": "Symfony Community",
  5189. "homepage": "https://symfony.com/contributors"
  5190. }
  5191. ],
  5192. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  5193. "homepage": "https://symfony.com",
  5194. "support": {
  5195. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.5"
  5196. },
  5197. "funding": [
  5198. {
  5199. "url": "https://symfony.com/sponsor",
  5200. "type": "custom"
  5201. },
  5202. {
  5203. "url": "https://github.com/fabpot",
  5204. "type": "github"
  5205. },
  5206. {
  5207. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5208. "type": "tidelift"
  5209. }
  5210. ],
  5211. "time": "2024-09-20T13:35:23+00:00"
  5212. },
  5213. {
  5214. "name": "symfony/http-client",
  5215. "version": "v7.1.5",
  5216. "source": {
  5217. "type": "git",
  5218. "url": "https://github.com/symfony/http-client.git",
  5219. "reference": "abca35865118edf35a23f2f24978a1784c831cb4"
  5220. },
  5221. "dist": {
  5222. "type": "zip",
  5223. "url": "https://api.github.com/repos/symfony/http-client/zipball/abca35865118edf35a23f2f24978a1784c831cb4",
  5224. "reference": "abca35865118edf35a23f2f24978a1784c831cb4",
  5225. "shasum": ""
  5226. },
  5227. "require": {
  5228. "php": ">=8.2",
  5229. "psr/log": "^1|^2|^3",
  5230. "symfony/deprecation-contracts": "^2.5|^3",
  5231. "symfony/http-client-contracts": "^3.4.1",
  5232. "symfony/service-contracts": "^2.5|^3"
  5233. },
  5234. "conflict": {
  5235. "php-http/discovery": "<1.15",
  5236. "symfony/http-foundation": "<6.4"
  5237. },
  5238. "provide": {
  5239. "php-http/async-client-implementation": "*",
  5240. "php-http/client-implementation": "*",
  5241. "psr/http-client-implementation": "1.0",
  5242. "symfony/http-client-implementation": "3.0"
  5243. },
  5244. "require-dev": {
  5245. "amphp/amp": "^2.5",
  5246. "amphp/http-client": "^4.2.1",
  5247. "amphp/http-tunnel": "^1.0",
  5248. "amphp/socket": "^1.1",
  5249. "guzzlehttp/promises": "^1.4|^2.0",
  5250. "nyholm/psr7": "^1.0",
  5251. "php-http/httplug": "^1.0|^2.0",
  5252. "psr/http-client": "^1.0",
  5253. "symfony/dependency-injection": "^6.4|^7.0",
  5254. "symfony/http-kernel": "^6.4|^7.0",
  5255. "symfony/messenger": "^6.4|^7.0",
  5256. "symfony/process": "^6.4|^7.0",
  5257. "symfony/rate-limiter": "^6.4|^7.0",
  5258. "symfony/stopwatch": "^6.4|^7.0"
  5259. },
  5260. "type": "library",
  5261. "autoload": {
  5262. "psr-4": {
  5263. "Symfony\\Component\\HttpClient\\": ""
  5264. },
  5265. "exclude-from-classmap": [
  5266. "/Tests/"
  5267. ]
  5268. },
  5269. "notification-url": "https://packagist.org/downloads/",
  5270. "license": [
  5271. "MIT"
  5272. ],
  5273. "authors": [
  5274. {
  5275. "name": "Nicolas Grekas",
  5276. "email": "p@tchwork.com"
  5277. },
  5278. {
  5279. "name": "Symfony Community",
  5280. "homepage": "https://symfony.com/contributors"
  5281. }
  5282. ],
  5283. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5284. "homepage": "https://symfony.com",
  5285. "keywords": [
  5286. "http"
  5287. ],
  5288. "support": {
  5289. "source": "https://github.com/symfony/http-client/tree/v7.1.5"
  5290. },
  5291. "funding": [
  5292. {
  5293. "url": "https://symfony.com/sponsor",
  5294. "type": "custom"
  5295. },
  5296. {
  5297. "url": "https://github.com/fabpot",
  5298. "type": "github"
  5299. },
  5300. {
  5301. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5302. "type": "tidelift"
  5303. }
  5304. ],
  5305. "time": "2024-09-20T13:35:23+00:00"
  5306. },
  5307. {
  5308. "name": "symfony/http-client-contracts",
  5309. "version": "v3.5.0",
  5310. "source": {
  5311. "type": "git",
  5312. "url": "https://github.com/symfony/http-client-contracts.git",
  5313. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  5314. },
  5315. "dist": {
  5316. "type": "zip",
  5317. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  5318. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  5319. "shasum": ""
  5320. },
  5321. "require": {
  5322. "php": ">=8.1"
  5323. },
  5324. "type": "library",
  5325. "extra": {
  5326. "branch-alias": {
  5327. "dev-main": "3.5-dev"
  5328. },
  5329. "thanks": {
  5330. "name": "symfony/contracts",
  5331. "url": "https://github.com/symfony/contracts"
  5332. }
  5333. },
  5334. "autoload": {
  5335. "psr-4": {
  5336. "Symfony\\Contracts\\HttpClient\\": ""
  5337. },
  5338. "exclude-from-classmap": [
  5339. "/Test/"
  5340. ]
  5341. },
  5342. "notification-url": "https://packagist.org/downloads/",
  5343. "license": [
  5344. "MIT"
  5345. ],
  5346. "authors": [
  5347. {
  5348. "name": "Nicolas Grekas",
  5349. "email": "p@tchwork.com"
  5350. },
  5351. {
  5352. "name": "Symfony Community",
  5353. "homepage": "https://symfony.com/contributors"
  5354. }
  5355. ],
  5356. "description": "Generic abstractions related to HTTP clients",
  5357. "homepage": "https://symfony.com",
  5358. "keywords": [
  5359. "abstractions",
  5360. "contracts",
  5361. "decoupling",
  5362. "interfaces",
  5363. "interoperability",
  5364. "standards"
  5365. ],
  5366. "support": {
  5367. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  5368. },
  5369. "funding": [
  5370. {
  5371. "url": "https://symfony.com/sponsor",
  5372. "type": "custom"
  5373. },
  5374. {
  5375. "url": "https://github.com/fabpot",
  5376. "type": "github"
  5377. },
  5378. {
  5379. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5380. "type": "tidelift"
  5381. }
  5382. ],
  5383. "time": "2024-04-18T09:32:20+00:00"
  5384. },
  5385. {
  5386. "name": "symfony/http-foundation",
  5387. "version": "v7.1.5",
  5388. "source": {
  5389. "type": "git",
  5390. "url": "https://github.com/symfony/http-foundation.git",
  5391. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b"
  5392. },
  5393. "dist": {
  5394. "type": "zip",
  5395. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e30ef73b1e44eea7eb37ba69600a354e553f694b",
  5396. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b",
  5397. "shasum": ""
  5398. },
  5399. "require": {
  5400. "php": ">=8.2",
  5401. "symfony/polyfill-mbstring": "~1.1",
  5402. "symfony/polyfill-php83": "^1.27"
  5403. },
  5404. "conflict": {
  5405. "doctrine/dbal": "<3.6",
  5406. "symfony/cache": "<6.4"
  5407. },
  5408. "require-dev": {
  5409. "doctrine/dbal": "^3.6|^4",
  5410. "predis/predis": "^1.1|^2.0",
  5411. "symfony/cache": "^6.4|^7.0",
  5412. "symfony/dependency-injection": "^6.4|^7.0",
  5413. "symfony/expression-language": "^6.4|^7.0",
  5414. "symfony/http-kernel": "^6.4|^7.0",
  5415. "symfony/mime": "^6.4|^7.0",
  5416. "symfony/rate-limiter": "^6.4|^7.0"
  5417. },
  5418. "type": "library",
  5419. "autoload": {
  5420. "psr-4": {
  5421. "Symfony\\Component\\HttpFoundation\\": ""
  5422. },
  5423. "exclude-from-classmap": [
  5424. "/Tests/"
  5425. ]
  5426. },
  5427. "notification-url": "https://packagist.org/downloads/",
  5428. "license": [
  5429. "MIT"
  5430. ],
  5431. "authors": [
  5432. {
  5433. "name": "Fabien Potencier",
  5434. "email": "fabien@symfony.com"
  5435. },
  5436. {
  5437. "name": "Symfony Community",
  5438. "homepage": "https://symfony.com/contributors"
  5439. }
  5440. ],
  5441. "description": "Defines an object-oriented layer for the HTTP specification",
  5442. "homepage": "https://symfony.com",
  5443. "support": {
  5444. "source": "https://github.com/symfony/http-foundation/tree/v7.1.5"
  5445. },
  5446. "funding": [
  5447. {
  5448. "url": "https://symfony.com/sponsor",
  5449. "type": "custom"
  5450. },
  5451. {
  5452. "url": "https://github.com/fabpot",
  5453. "type": "github"
  5454. },
  5455. {
  5456. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5457. "type": "tidelift"
  5458. }
  5459. ],
  5460. "time": "2024-09-20T08:28:38+00:00"
  5461. },
  5462. {
  5463. "name": "symfony/http-kernel",
  5464. "version": "v7.1.5",
  5465. "source": {
  5466. "type": "git",
  5467. "url": "https://github.com/symfony/http-kernel.git",
  5468. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b"
  5469. },
  5470. "dist": {
  5471. "type": "zip",
  5472. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/44204d96150a9df1fc57601ec933d23fefc2d65b",
  5473. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b",
  5474. "shasum": ""
  5475. },
  5476. "require": {
  5477. "php": ">=8.2",
  5478. "psr/log": "^1|^2|^3",
  5479. "symfony/deprecation-contracts": "^2.5|^3",
  5480. "symfony/error-handler": "^6.4|^7.0",
  5481. "symfony/event-dispatcher": "^6.4|^7.0",
  5482. "symfony/http-foundation": "^6.4|^7.0",
  5483. "symfony/polyfill-ctype": "^1.8"
  5484. },
  5485. "conflict": {
  5486. "symfony/browser-kit": "<6.4",
  5487. "symfony/cache": "<6.4",
  5488. "symfony/config": "<6.4",
  5489. "symfony/console": "<6.4",
  5490. "symfony/dependency-injection": "<6.4",
  5491. "symfony/doctrine-bridge": "<6.4",
  5492. "symfony/form": "<6.4",
  5493. "symfony/http-client": "<6.4",
  5494. "symfony/http-client-contracts": "<2.5",
  5495. "symfony/mailer": "<6.4",
  5496. "symfony/messenger": "<6.4",
  5497. "symfony/translation": "<6.4",
  5498. "symfony/translation-contracts": "<2.5",
  5499. "symfony/twig-bridge": "<6.4",
  5500. "symfony/validator": "<6.4",
  5501. "symfony/var-dumper": "<6.4",
  5502. "twig/twig": "<3.0.4"
  5503. },
  5504. "provide": {
  5505. "psr/log-implementation": "1.0|2.0|3.0"
  5506. },
  5507. "require-dev": {
  5508. "psr/cache": "^1.0|^2.0|^3.0",
  5509. "symfony/browser-kit": "^6.4|^7.0",
  5510. "symfony/clock": "^6.4|^7.0",
  5511. "symfony/config": "^6.4|^7.0",
  5512. "symfony/console": "^6.4|^7.0",
  5513. "symfony/css-selector": "^6.4|^7.0",
  5514. "symfony/dependency-injection": "^6.4|^7.0",
  5515. "symfony/dom-crawler": "^6.4|^7.0",
  5516. "symfony/expression-language": "^6.4|^7.0",
  5517. "symfony/finder": "^6.4|^7.0",
  5518. "symfony/http-client-contracts": "^2.5|^3",
  5519. "symfony/process": "^6.4|^7.0",
  5520. "symfony/property-access": "^7.1",
  5521. "symfony/routing": "^6.4|^7.0",
  5522. "symfony/serializer": "^7.1",
  5523. "symfony/stopwatch": "^6.4|^7.0",
  5524. "symfony/translation": "^6.4|^7.0",
  5525. "symfony/translation-contracts": "^2.5|^3",
  5526. "symfony/uid": "^6.4|^7.0",
  5527. "symfony/validator": "^6.4|^7.0",
  5528. "symfony/var-dumper": "^6.4|^7.0",
  5529. "symfony/var-exporter": "^6.4|^7.0",
  5530. "twig/twig": "^3.0.4"
  5531. },
  5532. "type": "library",
  5533. "autoload": {
  5534. "psr-4": {
  5535. "Symfony\\Component\\HttpKernel\\": ""
  5536. },
  5537. "exclude-from-classmap": [
  5538. "/Tests/"
  5539. ]
  5540. },
  5541. "notification-url": "https://packagist.org/downloads/",
  5542. "license": [
  5543. "MIT"
  5544. ],
  5545. "authors": [
  5546. {
  5547. "name": "Fabien Potencier",
  5548. "email": "fabien@symfony.com"
  5549. },
  5550. {
  5551. "name": "Symfony Community",
  5552. "homepage": "https://symfony.com/contributors"
  5553. }
  5554. ],
  5555. "description": "Provides a structured process for converting a Request into a Response",
  5556. "homepage": "https://symfony.com",
  5557. "support": {
  5558. "source": "https://github.com/symfony/http-kernel/tree/v7.1.5"
  5559. },
  5560. "funding": [
  5561. {
  5562. "url": "https://symfony.com/sponsor",
  5563. "type": "custom"
  5564. },
  5565. {
  5566. "url": "https://github.com/fabpot",
  5567. "type": "github"
  5568. },
  5569. {
  5570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5571. "type": "tidelift"
  5572. }
  5573. ],
  5574. "time": "2024-09-21T06:09:21+00:00"
  5575. },
  5576. {
  5577. "name": "symfony/intl",
  5578. "version": "v7.1.5",
  5579. "source": {
  5580. "type": "git",
  5581. "url": "https://github.com/symfony/intl.git",
  5582. "reference": "a0ba7a400e4c915500762c998355bea219a32d6b"
  5583. },
  5584. "dist": {
  5585. "type": "zip",
  5586. "url": "https://api.github.com/repos/symfony/intl/zipball/a0ba7a400e4c915500762c998355bea219a32d6b",
  5587. "reference": "a0ba7a400e4c915500762c998355bea219a32d6b",
  5588. "shasum": ""
  5589. },
  5590. "require": {
  5591. "php": ">=8.2",
  5592. "symfony/deprecation-contracts": "^2.5|^3"
  5593. },
  5594. "conflict": {
  5595. "symfony/string": "<7.1"
  5596. },
  5597. "require-dev": {
  5598. "symfony/filesystem": "^6.4|^7.0",
  5599. "symfony/var-exporter": "^6.4|^7.0"
  5600. },
  5601. "type": "library",
  5602. "autoload": {
  5603. "psr-4": {
  5604. "Symfony\\Component\\Intl\\": ""
  5605. },
  5606. "exclude-from-classmap": [
  5607. "/Tests/",
  5608. "/Resources/data/"
  5609. ]
  5610. },
  5611. "notification-url": "https://packagist.org/downloads/",
  5612. "license": [
  5613. "MIT"
  5614. ],
  5615. "authors": [
  5616. {
  5617. "name": "Bernhard Schussek",
  5618. "email": "bschussek@gmail.com"
  5619. },
  5620. {
  5621. "name": "Eriksen Costa",
  5622. "email": "eriksen.costa@infranology.com.br"
  5623. },
  5624. {
  5625. "name": "Igor Wiedler",
  5626. "email": "igor@wiedler.ch"
  5627. },
  5628. {
  5629. "name": "Symfony Community",
  5630. "homepage": "https://symfony.com/contributors"
  5631. }
  5632. ],
  5633. "description": "Provides access to the localization data of the ICU library",
  5634. "homepage": "https://symfony.com",
  5635. "keywords": [
  5636. "i18n",
  5637. "icu",
  5638. "internationalization",
  5639. "intl",
  5640. "l10n",
  5641. "localization"
  5642. ],
  5643. "support": {
  5644. "source": "https://github.com/symfony/intl/tree/v7.1.5"
  5645. },
  5646. "funding": [
  5647. {
  5648. "url": "https://symfony.com/sponsor",
  5649. "type": "custom"
  5650. },
  5651. {
  5652. "url": "https://github.com/fabpot",
  5653. "type": "github"
  5654. },
  5655. {
  5656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5657. "type": "tidelift"
  5658. }
  5659. ],
  5660. "time": "2024-09-20T08:28:38+00:00"
  5661. },
  5662. {
  5663. "name": "symfony/mailer",
  5664. "version": "v7.1.5",
  5665. "source": {
  5666. "type": "git",
  5667. "url": "https://github.com/symfony/mailer.git",
  5668. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b"
  5669. },
  5670. "dist": {
  5671. "type": "zip",
  5672. "url": "https://api.github.com/repos/symfony/mailer/zipball/bbf21460c56f29810da3df3e206e38dfbb01e80b",
  5673. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b",
  5674. "shasum": ""
  5675. },
  5676. "require": {
  5677. "egulias/email-validator": "^2.1.10|^3|^4",
  5678. "php": ">=8.2",
  5679. "psr/event-dispatcher": "^1",
  5680. "psr/log": "^1|^2|^3",
  5681. "symfony/event-dispatcher": "^6.4|^7.0",
  5682. "symfony/mime": "^6.4|^7.0",
  5683. "symfony/service-contracts": "^2.5|^3"
  5684. },
  5685. "conflict": {
  5686. "symfony/http-client-contracts": "<2.5",
  5687. "symfony/http-kernel": "<6.4",
  5688. "symfony/messenger": "<6.4",
  5689. "symfony/mime": "<6.4",
  5690. "symfony/twig-bridge": "<6.4"
  5691. },
  5692. "require-dev": {
  5693. "symfony/console": "^6.4|^7.0",
  5694. "symfony/http-client": "^6.4|^7.0",
  5695. "symfony/messenger": "^6.4|^7.0",
  5696. "symfony/twig-bridge": "^6.4|^7.0"
  5697. },
  5698. "type": "library",
  5699. "autoload": {
  5700. "psr-4": {
  5701. "Symfony\\Component\\Mailer\\": ""
  5702. },
  5703. "exclude-from-classmap": [
  5704. "/Tests/"
  5705. ]
  5706. },
  5707. "notification-url": "https://packagist.org/downloads/",
  5708. "license": [
  5709. "MIT"
  5710. ],
  5711. "authors": [
  5712. {
  5713. "name": "Fabien Potencier",
  5714. "email": "fabien@symfony.com"
  5715. },
  5716. {
  5717. "name": "Symfony Community",
  5718. "homepage": "https://symfony.com/contributors"
  5719. }
  5720. ],
  5721. "description": "Helps sending emails",
  5722. "homepage": "https://symfony.com",
  5723. "support": {
  5724. "source": "https://github.com/symfony/mailer/tree/v7.1.5"
  5725. },
  5726. "funding": [
  5727. {
  5728. "url": "https://symfony.com/sponsor",
  5729. "type": "custom"
  5730. },
  5731. {
  5732. "url": "https://github.com/fabpot",
  5733. "type": "github"
  5734. },
  5735. {
  5736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5737. "type": "tidelift"
  5738. }
  5739. ],
  5740. "time": "2024-09-08T12:32:26+00:00"
  5741. },
  5742. {
  5743. "name": "symfony/messenger",
  5744. "version": "v7.1.5",
  5745. "source": {
  5746. "type": "git",
  5747. "url": "https://github.com/symfony/messenger.git",
  5748. "reference": "e1c0ced845e3dac12ab428c5ed42dbe7a58ca576"
  5749. },
  5750. "dist": {
  5751. "type": "zip",
  5752. "url": "https://api.github.com/repos/symfony/messenger/zipball/e1c0ced845e3dac12ab428c5ed42dbe7a58ca576",
  5753. "reference": "e1c0ced845e3dac12ab428c5ed42dbe7a58ca576",
  5754. "shasum": ""
  5755. },
  5756. "require": {
  5757. "php": ">=8.2",
  5758. "psr/log": "^1|^2|^3",
  5759. "symfony/clock": "^6.4|^7.0"
  5760. },
  5761. "conflict": {
  5762. "symfony/console": "<6.4",
  5763. "symfony/event-dispatcher": "<6.4",
  5764. "symfony/event-dispatcher-contracts": "<2.5",
  5765. "symfony/framework-bundle": "<6.4",
  5766. "symfony/http-kernel": "<6.4",
  5767. "symfony/serializer": "<6.4"
  5768. },
  5769. "require-dev": {
  5770. "psr/cache": "^1.0|^2.0|^3.0",
  5771. "symfony/console": "^6.4|^7.0",
  5772. "symfony/dependency-injection": "^6.4|^7.0",
  5773. "symfony/event-dispatcher": "^6.4|^7.0",
  5774. "symfony/http-kernel": "^6.4|^7.0",
  5775. "symfony/process": "^6.4|^7.0",
  5776. "symfony/property-access": "^6.4|^7.0",
  5777. "symfony/rate-limiter": "^6.4|^7.0",
  5778. "symfony/routing": "^6.4|^7.0",
  5779. "symfony/serializer": "^6.4|^7.0",
  5780. "symfony/service-contracts": "^2.5|^3",
  5781. "symfony/stopwatch": "^6.4|^7.0",
  5782. "symfony/validator": "^6.4|^7.0"
  5783. },
  5784. "type": "library",
  5785. "autoload": {
  5786. "psr-4": {
  5787. "Symfony\\Component\\Messenger\\": ""
  5788. },
  5789. "exclude-from-classmap": [
  5790. "/Tests/"
  5791. ]
  5792. },
  5793. "notification-url": "https://packagist.org/downloads/",
  5794. "license": [
  5795. "MIT"
  5796. ],
  5797. "authors": [
  5798. {
  5799. "name": "Samuel Roze",
  5800. "email": "samuel.roze@gmail.com"
  5801. },
  5802. {
  5803. "name": "Symfony Community",
  5804. "homepage": "https://symfony.com/contributors"
  5805. }
  5806. ],
  5807. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  5808. "homepage": "https://symfony.com",
  5809. "support": {
  5810. "source": "https://github.com/symfony/messenger/tree/v7.1.5"
  5811. },
  5812. "funding": [
  5813. {
  5814. "url": "https://symfony.com/sponsor",
  5815. "type": "custom"
  5816. },
  5817. {
  5818. "url": "https://github.com/fabpot",
  5819. "type": "github"
  5820. },
  5821. {
  5822. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5823. "type": "tidelift"
  5824. }
  5825. ],
  5826. "time": "2024-09-08T12:32:26+00:00"
  5827. },
  5828. {
  5829. "name": "symfony/mime",
  5830. "version": "v7.1.5",
  5831. "source": {
  5832. "type": "git",
  5833. "url": "https://github.com/symfony/mime.git",
  5834. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff"
  5835. },
  5836. "dist": {
  5837. "type": "zip",
  5838. "url": "https://api.github.com/repos/symfony/mime/zipball/711d2e167e8ce65b05aea6b258c449671cdd38ff",
  5839. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff",
  5840. "shasum": ""
  5841. },
  5842. "require": {
  5843. "php": ">=8.2",
  5844. "symfony/polyfill-intl-idn": "^1.10",
  5845. "symfony/polyfill-mbstring": "^1.0"
  5846. },
  5847. "conflict": {
  5848. "egulias/email-validator": "~3.0.0",
  5849. "phpdocumentor/reflection-docblock": "<3.2.2",
  5850. "phpdocumentor/type-resolver": "<1.4.0",
  5851. "symfony/mailer": "<6.4",
  5852. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  5853. },
  5854. "require-dev": {
  5855. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5856. "league/html-to-markdown": "^5.0",
  5857. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5858. "symfony/dependency-injection": "^6.4|^7.0",
  5859. "symfony/process": "^6.4|^7.0",
  5860. "symfony/property-access": "^6.4|^7.0",
  5861. "symfony/property-info": "^6.4|^7.0",
  5862. "symfony/serializer": "^6.4.3|^7.0.3"
  5863. },
  5864. "type": "library",
  5865. "autoload": {
  5866. "psr-4": {
  5867. "Symfony\\Component\\Mime\\": ""
  5868. },
  5869. "exclude-from-classmap": [
  5870. "/Tests/"
  5871. ]
  5872. },
  5873. "notification-url": "https://packagist.org/downloads/",
  5874. "license": [
  5875. "MIT"
  5876. ],
  5877. "authors": [
  5878. {
  5879. "name": "Fabien Potencier",
  5880. "email": "fabien@symfony.com"
  5881. },
  5882. {
  5883. "name": "Symfony Community",
  5884. "homepage": "https://symfony.com/contributors"
  5885. }
  5886. ],
  5887. "description": "Allows manipulating MIME messages",
  5888. "homepage": "https://symfony.com",
  5889. "keywords": [
  5890. "mime",
  5891. "mime-type"
  5892. ],
  5893. "support": {
  5894. "source": "https://github.com/symfony/mime/tree/v7.1.5"
  5895. },
  5896. "funding": [
  5897. {
  5898. "url": "https://symfony.com/sponsor",
  5899. "type": "custom"
  5900. },
  5901. {
  5902. "url": "https://github.com/fabpot",
  5903. "type": "github"
  5904. },
  5905. {
  5906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5907. "type": "tidelift"
  5908. }
  5909. ],
  5910. "time": "2024-09-20T08:28:38+00:00"
  5911. },
  5912. {
  5913. "name": "symfony/monolog-bridge",
  5914. "version": "v7.1.1",
  5915. "source": {
  5916. "type": "git",
  5917. "url": "https://github.com/symfony/monolog-bridge.git",
  5918. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8"
  5919. },
  5920. "dist": {
  5921. "type": "zip",
  5922. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  5923. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  5924. "shasum": ""
  5925. },
  5926. "require": {
  5927. "monolog/monolog": "^3",
  5928. "php": ">=8.2",
  5929. "symfony/http-kernel": "^6.4|^7.0",
  5930. "symfony/service-contracts": "^2.5|^3"
  5931. },
  5932. "conflict": {
  5933. "symfony/console": "<6.4",
  5934. "symfony/http-foundation": "<6.4",
  5935. "symfony/security-core": "<6.4"
  5936. },
  5937. "require-dev": {
  5938. "symfony/console": "^6.4|^7.0",
  5939. "symfony/http-client": "^6.4|^7.0",
  5940. "symfony/mailer": "^6.4|^7.0",
  5941. "symfony/messenger": "^6.4|^7.0",
  5942. "symfony/mime": "^6.4|^7.0",
  5943. "symfony/security-core": "^6.4|^7.0",
  5944. "symfony/var-dumper": "^6.4|^7.0"
  5945. },
  5946. "type": "symfony-bridge",
  5947. "autoload": {
  5948. "psr-4": {
  5949. "Symfony\\Bridge\\Monolog\\": ""
  5950. },
  5951. "exclude-from-classmap": [
  5952. "/Tests/"
  5953. ]
  5954. },
  5955. "notification-url": "https://packagist.org/downloads/",
  5956. "license": [
  5957. "MIT"
  5958. ],
  5959. "authors": [
  5960. {
  5961. "name": "Fabien Potencier",
  5962. "email": "fabien@symfony.com"
  5963. },
  5964. {
  5965. "name": "Symfony Community",
  5966. "homepage": "https://symfony.com/contributors"
  5967. }
  5968. ],
  5969. "description": "Provides integration for Monolog with various Symfony components",
  5970. "homepage": "https://symfony.com",
  5971. "support": {
  5972. "source": "https://github.com/symfony/monolog-bridge/tree/v7.1.1"
  5973. },
  5974. "funding": [
  5975. {
  5976. "url": "https://symfony.com/sponsor",
  5977. "type": "custom"
  5978. },
  5979. {
  5980. "url": "https://github.com/fabpot",
  5981. "type": "github"
  5982. },
  5983. {
  5984. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5985. "type": "tidelift"
  5986. }
  5987. ],
  5988. "time": "2024-05-31T14:57:53+00:00"
  5989. },
  5990. {
  5991. "name": "symfony/monolog-bundle",
  5992. "version": "v3.10.0",
  5993. "source": {
  5994. "type": "git",
  5995. "url": "https://github.com/symfony/monolog-bundle.git",
  5996. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5997. },
  5998. "dist": {
  5999. "type": "zip",
  6000. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  6001. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  6002. "shasum": ""
  6003. },
  6004. "require": {
  6005. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  6006. "php": ">=7.2.5",
  6007. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  6008. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  6009. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  6010. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  6011. },
  6012. "require-dev": {
  6013. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  6014. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  6015. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  6016. },
  6017. "type": "symfony-bundle",
  6018. "extra": {
  6019. "branch-alias": {
  6020. "dev-master": "3.x-dev"
  6021. }
  6022. },
  6023. "autoload": {
  6024. "psr-4": {
  6025. "Symfony\\Bundle\\MonologBundle\\": ""
  6026. },
  6027. "exclude-from-classmap": [
  6028. "/Tests/"
  6029. ]
  6030. },
  6031. "notification-url": "https://packagist.org/downloads/",
  6032. "license": [
  6033. "MIT"
  6034. ],
  6035. "authors": [
  6036. {
  6037. "name": "Fabien Potencier",
  6038. "email": "fabien@symfony.com"
  6039. },
  6040. {
  6041. "name": "Symfony Community",
  6042. "homepage": "https://symfony.com/contributors"
  6043. }
  6044. ],
  6045. "description": "Symfony MonologBundle",
  6046. "homepage": "https://symfony.com",
  6047. "keywords": [
  6048. "log",
  6049. "logging"
  6050. ],
  6051. "support": {
  6052. "issues": "https://github.com/symfony/monolog-bundle/issues",
  6053. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  6054. },
  6055. "funding": [
  6056. {
  6057. "url": "https://symfony.com/sponsor",
  6058. "type": "custom"
  6059. },
  6060. {
  6061. "url": "https://github.com/fabpot",
  6062. "type": "github"
  6063. },
  6064. {
  6065. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6066. "type": "tidelift"
  6067. }
  6068. ],
  6069. "time": "2023-11-06T17:08:13+00:00"
  6070. },
  6071. {
  6072. "name": "symfony/notifier",
  6073. "version": "v7.1.5",
  6074. "source": {
  6075. "type": "git",
  6076. "url": "https://github.com/symfony/notifier.git",
  6077. "reference": "843946b0b1018ddc714b467f223607c71f9f6c8f"
  6078. },
  6079. "dist": {
  6080. "type": "zip",
  6081. "url": "https://api.github.com/repos/symfony/notifier/zipball/843946b0b1018ddc714b467f223607c71f9f6c8f",
  6082. "reference": "843946b0b1018ddc714b467f223607c71f9f6c8f",
  6083. "shasum": ""
  6084. },
  6085. "require": {
  6086. "php": ">=8.2",
  6087. "psr/log": "^1|^2|^3"
  6088. },
  6089. "conflict": {
  6090. "symfony/event-dispatcher": "<6.4",
  6091. "symfony/event-dispatcher-contracts": "<2.5",
  6092. "symfony/http-client-contracts": "<2.5",
  6093. "symfony/http-kernel": "<6.4"
  6094. },
  6095. "require-dev": {
  6096. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6097. "symfony/http-client-contracts": "^2.5|^3",
  6098. "symfony/http-foundation": "^6.4|^7.0",
  6099. "symfony/messenger": "^6.4|^7.0"
  6100. },
  6101. "type": "library",
  6102. "autoload": {
  6103. "psr-4": {
  6104. "Symfony\\Component\\Notifier\\": ""
  6105. },
  6106. "exclude-from-classmap": [
  6107. "/Tests/"
  6108. ]
  6109. },
  6110. "notification-url": "https://packagist.org/downloads/",
  6111. "license": [
  6112. "MIT"
  6113. ],
  6114. "authors": [
  6115. {
  6116. "name": "Fabien Potencier",
  6117. "email": "fabien@symfony.com"
  6118. },
  6119. {
  6120. "name": "Symfony Community",
  6121. "homepage": "https://symfony.com/contributors"
  6122. }
  6123. ],
  6124. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  6125. "homepage": "https://symfony.com",
  6126. "keywords": [
  6127. "notification",
  6128. "notifier"
  6129. ],
  6130. "support": {
  6131. "source": "https://github.com/symfony/notifier/tree/v7.1.5"
  6132. },
  6133. "funding": [
  6134. {
  6135. "url": "https://symfony.com/sponsor",
  6136. "type": "custom"
  6137. },
  6138. {
  6139. "url": "https://github.com/fabpot",
  6140. "type": "github"
  6141. },
  6142. {
  6143. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6144. "type": "tidelift"
  6145. }
  6146. ],
  6147. "time": "2024-09-08T12:32:26+00:00"
  6148. },
  6149. {
  6150. "name": "symfony/options-resolver",
  6151. "version": "v7.1.1",
  6152. "source": {
  6153. "type": "git",
  6154. "url": "https://github.com/symfony/options-resolver.git",
  6155. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55"
  6156. },
  6157. "dist": {
  6158. "type": "zip",
  6159. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  6160. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  6161. "shasum": ""
  6162. },
  6163. "require": {
  6164. "php": ">=8.2",
  6165. "symfony/deprecation-contracts": "^2.5|^3"
  6166. },
  6167. "type": "library",
  6168. "autoload": {
  6169. "psr-4": {
  6170. "Symfony\\Component\\OptionsResolver\\": ""
  6171. },
  6172. "exclude-from-classmap": [
  6173. "/Tests/"
  6174. ]
  6175. },
  6176. "notification-url": "https://packagist.org/downloads/",
  6177. "license": [
  6178. "MIT"
  6179. ],
  6180. "authors": [
  6181. {
  6182. "name": "Fabien Potencier",
  6183. "email": "fabien@symfony.com"
  6184. },
  6185. {
  6186. "name": "Symfony Community",
  6187. "homepage": "https://symfony.com/contributors"
  6188. }
  6189. ],
  6190. "description": "Provides an improved replacement for the array_replace PHP function",
  6191. "homepage": "https://symfony.com",
  6192. "keywords": [
  6193. "config",
  6194. "configuration",
  6195. "options"
  6196. ],
  6197. "support": {
  6198. "source": "https://github.com/symfony/options-resolver/tree/v7.1.1"
  6199. },
  6200. "funding": [
  6201. {
  6202. "url": "https://symfony.com/sponsor",
  6203. "type": "custom"
  6204. },
  6205. {
  6206. "url": "https://github.com/fabpot",
  6207. "type": "github"
  6208. },
  6209. {
  6210. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6211. "type": "tidelift"
  6212. }
  6213. ],
  6214. "time": "2024-05-31T14:57:53+00:00"
  6215. },
  6216. {
  6217. "name": "symfony/password-hasher",
  6218. "version": "v7.1.1",
  6219. "source": {
  6220. "type": "git",
  6221. "url": "https://github.com/symfony/password-hasher.git",
  6222. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662"
  6223. },
  6224. "dist": {
  6225. "type": "zip",
  6226. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  6227. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  6228. "shasum": ""
  6229. },
  6230. "require": {
  6231. "php": ">=8.2"
  6232. },
  6233. "conflict": {
  6234. "symfony/security-core": "<6.4"
  6235. },
  6236. "require-dev": {
  6237. "symfony/console": "^6.4|^7.0",
  6238. "symfony/security-core": "^6.4|^7.0"
  6239. },
  6240. "type": "library",
  6241. "autoload": {
  6242. "psr-4": {
  6243. "Symfony\\Component\\PasswordHasher\\": ""
  6244. },
  6245. "exclude-from-classmap": [
  6246. "/Tests/"
  6247. ]
  6248. },
  6249. "notification-url": "https://packagist.org/downloads/",
  6250. "license": [
  6251. "MIT"
  6252. ],
  6253. "authors": [
  6254. {
  6255. "name": "Robin Chalas",
  6256. "email": "robin.chalas@gmail.com"
  6257. },
  6258. {
  6259. "name": "Symfony Community",
  6260. "homepage": "https://symfony.com/contributors"
  6261. }
  6262. ],
  6263. "description": "Provides password hashing utilities",
  6264. "homepage": "https://symfony.com",
  6265. "keywords": [
  6266. "hashing",
  6267. "password"
  6268. ],
  6269. "support": {
  6270. "source": "https://github.com/symfony/password-hasher/tree/v7.1.1"
  6271. },
  6272. "funding": [
  6273. {
  6274. "url": "https://symfony.com/sponsor",
  6275. "type": "custom"
  6276. },
  6277. {
  6278. "url": "https://github.com/fabpot",
  6279. "type": "github"
  6280. },
  6281. {
  6282. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6283. "type": "tidelift"
  6284. }
  6285. ],
  6286. "time": "2024-05-31T14:57:53+00:00"
  6287. },
  6288. {
  6289. "name": "symfony/polyfill-intl-grapheme",
  6290. "version": "v1.31.0",
  6291. "source": {
  6292. "type": "git",
  6293. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6294. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6295. },
  6296. "dist": {
  6297. "type": "zip",
  6298. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6299. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6300. "shasum": ""
  6301. },
  6302. "require": {
  6303. "php": ">=7.2"
  6304. },
  6305. "suggest": {
  6306. "ext-intl": "For best performance"
  6307. },
  6308. "type": "library",
  6309. "extra": {
  6310. "thanks": {
  6311. "name": "symfony/polyfill",
  6312. "url": "https://github.com/symfony/polyfill"
  6313. }
  6314. },
  6315. "autoload": {
  6316. "files": [
  6317. "bootstrap.php"
  6318. ],
  6319. "psr-4": {
  6320. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6321. }
  6322. },
  6323. "notification-url": "https://packagist.org/downloads/",
  6324. "license": [
  6325. "MIT"
  6326. ],
  6327. "authors": [
  6328. {
  6329. "name": "Nicolas Grekas",
  6330. "email": "p@tchwork.com"
  6331. },
  6332. {
  6333. "name": "Symfony Community",
  6334. "homepage": "https://symfony.com/contributors"
  6335. }
  6336. ],
  6337. "description": "Symfony polyfill for intl's grapheme_* functions",
  6338. "homepage": "https://symfony.com",
  6339. "keywords": [
  6340. "compatibility",
  6341. "grapheme",
  6342. "intl",
  6343. "polyfill",
  6344. "portable",
  6345. "shim"
  6346. ],
  6347. "support": {
  6348. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6349. },
  6350. "funding": [
  6351. {
  6352. "url": "https://symfony.com/sponsor",
  6353. "type": "custom"
  6354. },
  6355. {
  6356. "url": "https://github.com/fabpot",
  6357. "type": "github"
  6358. },
  6359. {
  6360. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6361. "type": "tidelift"
  6362. }
  6363. ],
  6364. "time": "2024-09-09T11:45:10+00:00"
  6365. },
  6366. {
  6367. "name": "symfony/polyfill-intl-icu",
  6368. "version": "v1.31.0",
  6369. "source": {
  6370. "type": "git",
  6371. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  6372. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78"
  6373. },
  6374. "dist": {
  6375. "type": "zip",
  6376. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  6377. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  6378. "shasum": ""
  6379. },
  6380. "require": {
  6381. "php": ">=7.2"
  6382. },
  6383. "suggest": {
  6384. "ext-intl": "For best performance and support of other locales than \"en\""
  6385. },
  6386. "type": "library",
  6387. "extra": {
  6388. "thanks": {
  6389. "name": "symfony/polyfill",
  6390. "url": "https://github.com/symfony/polyfill"
  6391. }
  6392. },
  6393. "autoload": {
  6394. "files": [
  6395. "bootstrap.php"
  6396. ],
  6397. "psr-4": {
  6398. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  6399. },
  6400. "classmap": [
  6401. "Resources/stubs"
  6402. ],
  6403. "exclude-from-classmap": [
  6404. "/Tests/"
  6405. ]
  6406. },
  6407. "notification-url": "https://packagist.org/downloads/",
  6408. "license": [
  6409. "MIT"
  6410. ],
  6411. "authors": [
  6412. {
  6413. "name": "Nicolas Grekas",
  6414. "email": "p@tchwork.com"
  6415. },
  6416. {
  6417. "name": "Symfony Community",
  6418. "homepage": "https://symfony.com/contributors"
  6419. }
  6420. ],
  6421. "description": "Symfony polyfill for intl's ICU-related data and classes",
  6422. "homepage": "https://symfony.com",
  6423. "keywords": [
  6424. "compatibility",
  6425. "icu",
  6426. "intl",
  6427. "polyfill",
  6428. "portable",
  6429. "shim"
  6430. ],
  6431. "support": {
  6432. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.31.0"
  6433. },
  6434. "funding": [
  6435. {
  6436. "url": "https://symfony.com/sponsor",
  6437. "type": "custom"
  6438. },
  6439. {
  6440. "url": "https://github.com/fabpot",
  6441. "type": "github"
  6442. },
  6443. {
  6444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6445. "type": "tidelift"
  6446. }
  6447. ],
  6448. "time": "2024-09-09T11:45:10+00:00"
  6449. },
  6450. {
  6451. "name": "symfony/polyfill-intl-idn",
  6452. "version": "v1.31.0",
  6453. "source": {
  6454. "type": "git",
  6455. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6456. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  6457. },
  6458. "dist": {
  6459. "type": "zip",
  6460. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  6461. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  6462. "shasum": ""
  6463. },
  6464. "require": {
  6465. "php": ">=7.2",
  6466. "symfony/polyfill-intl-normalizer": "^1.10"
  6467. },
  6468. "suggest": {
  6469. "ext-intl": "For best performance"
  6470. },
  6471. "type": "library",
  6472. "extra": {
  6473. "thanks": {
  6474. "name": "symfony/polyfill",
  6475. "url": "https://github.com/symfony/polyfill"
  6476. }
  6477. },
  6478. "autoload": {
  6479. "files": [
  6480. "bootstrap.php"
  6481. ],
  6482. "psr-4": {
  6483. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6484. }
  6485. },
  6486. "notification-url": "https://packagist.org/downloads/",
  6487. "license": [
  6488. "MIT"
  6489. ],
  6490. "authors": [
  6491. {
  6492. "name": "Laurent Bassin",
  6493. "email": "laurent@bassin.info"
  6494. },
  6495. {
  6496. "name": "Trevor Rowbotham",
  6497. "email": "trevor.rowbotham@pm.me"
  6498. },
  6499. {
  6500. "name": "Symfony Community",
  6501. "homepage": "https://symfony.com/contributors"
  6502. }
  6503. ],
  6504. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6505. "homepage": "https://symfony.com",
  6506. "keywords": [
  6507. "compatibility",
  6508. "idn",
  6509. "intl",
  6510. "polyfill",
  6511. "portable",
  6512. "shim"
  6513. ],
  6514. "support": {
  6515. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  6516. },
  6517. "funding": [
  6518. {
  6519. "url": "https://symfony.com/sponsor",
  6520. "type": "custom"
  6521. },
  6522. {
  6523. "url": "https://github.com/fabpot",
  6524. "type": "github"
  6525. },
  6526. {
  6527. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6528. "type": "tidelift"
  6529. }
  6530. ],
  6531. "time": "2024-09-09T11:45:10+00:00"
  6532. },
  6533. {
  6534. "name": "symfony/polyfill-intl-normalizer",
  6535. "version": "v1.31.0",
  6536. "source": {
  6537. "type": "git",
  6538. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6539. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6540. },
  6541. "dist": {
  6542. "type": "zip",
  6543. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6544. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6545. "shasum": ""
  6546. },
  6547. "require": {
  6548. "php": ">=7.2"
  6549. },
  6550. "suggest": {
  6551. "ext-intl": "For best performance"
  6552. },
  6553. "type": "library",
  6554. "extra": {
  6555. "thanks": {
  6556. "name": "symfony/polyfill",
  6557. "url": "https://github.com/symfony/polyfill"
  6558. }
  6559. },
  6560. "autoload": {
  6561. "files": [
  6562. "bootstrap.php"
  6563. ],
  6564. "psr-4": {
  6565. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6566. },
  6567. "classmap": [
  6568. "Resources/stubs"
  6569. ]
  6570. },
  6571. "notification-url": "https://packagist.org/downloads/",
  6572. "license": [
  6573. "MIT"
  6574. ],
  6575. "authors": [
  6576. {
  6577. "name": "Nicolas Grekas",
  6578. "email": "p@tchwork.com"
  6579. },
  6580. {
  6581. "name": "Symfony Community",
  6582. "homepage": "https://symfony.com/contributors"
  6583. }
  6584. ],
  6585. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6586. "homepage": "https://symfony.com",
  6587. "keywords": [
  6588. "compatibility",
  6589. "intl",
  6590. "normalizer",
  6591. "polyfill",
  6592. "portable",
  6593. "shim"
  6594. ],
  6595. "support": {
  6596. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6597. },
  6598. "funding": [
  6599. {
  6600. "url": "https://symfony.com/sponsor",
  6601. "type": "custom"
  6602. },
  6603. {
  6604. "url": "https://github.com/fabpot",
  6605. "type": "github"
  6606. },
  6607. {
  6608. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6609. "type": "tidelift"
  6610. }
  6611. ],
  6612. "time": "2024-09-09T11:45:10+00:00"
  6613. },
  6614. {
  6615. "name": "symfony/polyfill-mbstring",
  6616. "version": "v1.31.0",
  6617. "source": {
  6618. "type": "git",
  6619. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6620. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6621. },
  6622. "dist": {
  6623. "type": "zip",
  6624. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6625. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6626. "shasum": ""
  6627. },
  6628. "require": {
  6629. "php": ">=7.2"
  6630. },
  6631. "provide": {
  6632. "ext-mbstring": "*"
  6633. },
  6634. "suggest": {
  6635. "ext-mbstring": "For best performance"
  6636. },
  6637. "type": "library",
  6638. "extra": {
  6639. "thanks": {
  6640. "name": "symfony/polyfill",
  6641. "url": "https://github.com/symfony/polyfill"
  6642. }
  6643. },
  6644. "autoload": {
  6645. "files": [
  6646. "bootstrap.php"
  6647. ],
  6648. "psr-4": {
  6649. "Symfony\\Polyfill\\Mbstring\\": ""
  6650. }
  6651. },
  6652. "notification-url": "https://packagist.org/downloads/",
  6653. "license": [
  6654. "MIT"
  6655. ],
  6656. "authors": [
  6657. {
  6658. "name": "Nicolas Grekas",
  6659. "email": "p@tchwork.com"
  6660. },
  6661. {
  6662. "name": "Symfony Community",
  6663. "homepage": "https://symfony.com/contributors"
  6664. }
  6665. ],
  6666. "description": "Symfony polyfill for the Mbstring extension",
  6667. "homepage": "https://symfony.com",
  6668. "keywords": [
  6669. "compatibility",
  6670. "mbstring",
  6671. "polyfill",
  6672. "portable",
  6673. "shim"
  6674. ],
  6675. "support": {
  6676. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6677. },
  6678. "funding": [
  6679. {
  6680. "url": "https://symfony.com/sponsor",
  6681. "type": "custom"
  6682. },
  6683. {
  6684. "url": "https://github.com/fabpot",
  6685. "type": "github"
  6686. },
  6687. {
  6688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6689. "type": "tidelift"
  6690. }
  6691. ],
  6692. "time": "2024-09-09T11:45:10+00:00"
  6693. },
  6694. {
  6695. "name": "symfony/polyfill-php83",
  6696. "version": "v1.31.0",
  6697. "source": {
  6698. "type": "git",
  6699. "url": "https://github.com/symfony/polyfill-php83.git",
  6700. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  6701. },
  6702. "dist": {
  6703. "type": "zip",
  6704. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  6705. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  6706. "shasum": ""
  6707. },
  6708. "require": {
  6709. "php": ">=7.2"
  6710. },
  6711. "type": "library",
  6712. "extra": {
  6713. "thanks": {
  6714. "name": "symfony/polyfill",
  6715. "url": "https://github.com/symfony/polyfill"
  6716. }
  6717. },
  6718. "autoload": {
  6719. "files": [
  6720. "bootstrap.php"
  6721. ],
  6722. "psr-4": {
  6723. "Symfony\\Polyfill\\Php83\\": ""
  6724. },
  6725. "classmap": [
  6726. "Resources/stubs"
  6727. ]
  6728. },
  6729. "notification-url": "https://packagist.org/downloads/",
  6730. "license": [
  6731. "MIT"
  6732. ],
  6733. "authors": [
  6734. {
  6735. "name": "Nicolas Grekas",
  6736. "email": "p@tchwork.com"
  6737. },
  6738. {
  6739. "name": "Symfony Community",
  6740. "homepage": "https://symfony.com/contributors"
  6741. }
  6742. ],
  6743. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6744. "homepage": "https://symfony.com",
  6745. "keywords": [
  6746. "compatibility",
  6747. "polyfill",
  6748. "portable",
  6749. "shim"
  6750. ],
  6751. "support": {
  6752. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  6753. },
  6754. "funding": [
  6755. {
  6756. "url": "https://symfony.com/sponsor",
  6757. "type": "custom"
  6758. },
  6759. {
  6760. "url": "https://github.com/fabpot",
  6761. "type": "github"
  6762. },
  6763. {
  6764. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6765. "type": "tidelift"
  6766. }
  6767. ],
  6768. "time": "2024-09-09T11:45:10+00:00"
  6769. },
  6770. {
  6771. "name": "symfony/process",
  6772. "version": "v7.1.5",
  6773. "source": {
  6774. "type": "git",
  6775. "url": "https://github.com/symfony/process.git",
  6776. "reference": "5c03ee6369281177f07f7c68252a280beccba847"
  6777. },
  6778. "dist": {
  6779. "type": "zip",
  6780. "url": "https://api.github.com/repos/symfony/process/zipball/5c03ee6369281177f07f7c68252a280beccba847",
  6781. "reference": "5c03ee6369281177f07f7c68252a280beccba847",
  6782. "shasum": ""
  6783. },
  6784. "require": {
  6785. "php": ">=8.2"
  6786. },
  6787. "type": "library",
  6788. "autoload": {
  6789. "psr-4": {
  6790. "Symfony\\Component\\Process\\": ""
  6791. },
  6792. "exclude-from-classmap": [
  6793. "/Tests/"
  6794. ]
  6795. },
  6796. "notification-url": "https://packagist.org/downloads/",
  6797. "license": [
  6798. "MIT"
  6799. ],
  6800. "authors": [
  6801. {
  6802. "name": "Fabien Potencier",
  6803. "email": "fabien@symfony.com"
  6804. },
  6805. {
  6806. "name": "Symfony Community",
  6807. "homepage": "https://symfony.com/contributors"
  6808. }
  6809. ],
  6810. "description": "Executes commands in sub-processes",
  6811. "homepage": "https://symfony.com",
  6812. "support": {
  6813. "source": "https://github.com/symfony/process/tree/v7.1.5"
  6814. },
  6815. "funding": [
  6816. {
  6817. "url": "https://symfony.com/sponsor",
  6818. "type": "custom"
  6819. },
  6820. {
  6821. "url": "https://github.com/fabpot",
  6822. "type": "github"
  6823. },
  6824. {
  6825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6826. "type": "tidelift"
  6827. }
  6828. ],
  6829. "time": "2024-09-19T21:48:23+00:00"
  6830. },
  6831. {
  6832. "name": "symfony/property-access",
  6833. "version": "v7.1.4",
  6834. "source": {
  6835. "type": "git",
  6836. "url": "https://github.com/symfony/property-access.git",
  6837. "reference": "6c709f97103355016e5782d0622437ae381012ad"
  6838. },
  6839. "dist": {
  6840. "type": "zip",
  6841. "url": "https://api.github.com/repos/symfony/property-access/zipball/6c709f97103355016e5782d0622437ae381012ad",
  6842. "reference": "6c709f97103355016e5782d0622437ae381012ad",
  6843. "shasum": ""
  6844. },
  6845. "require": {
  6846. "php": ">=8.2",
  6847. "symfony/property-info": "^6.4|^7.0"
  6848. },
  6849. "require-dev": {
  6850. "symfony/cache": "^6.4|^7.0"
  6851. },
  6852. "type": "library",
  6853. "autoload": {
  6854. "psr-4": {
  6855. "Symfony\\Component\\PropertyAccess\\": ""
  6856. },
  6857. "exclude-from-classmap": [
  6858. "/Tests/"
  6859. ]
  6860. },
  6861. "notification-url": "https://packagist.org/downloads/",
  6862. "license": [
  6863. "MIT"
  6864. ],
  6865. "authors": [
  6866. {
  6867. "name": "Fabien Potencier",
  6868. "email": "fabien@symfony.com"
  6869. },
  6870. {
  6871. "name": "Symfony Community",
  6872. "homepage": "https://symfony.com/contributors"
  6873. }
  6874. ],
  6875. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6876. "homepage": "https://symfony.com",
  6877. "keywords": [
  6878. "access",
  6879. "array",
  6880. "extraction",
  6881. "index",
  6882. "injection",
  6883. "object",
  6884. "property",
  6885. "property-path",
  6886. "reflection"
  6887. ],
  6888. "support": {
  6889. "source": "https://github.com/symfony/property-access/tree/v7.1.4"
  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-08-30T16:12:47+00:00"
  6906. },
  6907. {
  6908. "name": "symfony/property-info",
  6909. "version": "v7.1.3",
  6910. "source": {
  6911. "type": "git",
  6912. "url": "https://github.com/symfony/property-info.git",
  6913. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b"
  6914. },
  6915. "dist": {
  6916. "type": "zip",
  6917. "url": "https://api.github.com/repos/symfony/property-info/zipball/88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  6918. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  6919. "shasum": ""
  6920. },
  6921. "require": {
  6922. "php": ">=8.2",
  6923. "symfony/string": "^6.4|^7.0",
  6924. "symfony/type-info": "^7.1"
  6925. },
  6926. "conflict": {
  6927. "phpdocumentor/reflection-docblock": "<5.2",
  6928. "phpdocumentor/type-resolver": "<1.5.1",
  6929. "symfony/dependency-injection": "<6.4",
  6930. "symfony/serializer": "<6.4"
  6931. },
  6932. "require-dev": {
  6933. "phpdocumentor/reflection-docblock": "^5.2",
  6934. "phpstan/phpdoc-parser": "^1.0",
  6935. "symfony/cache": "^6.4|^7.0",
  6936. "symfony/dependency-injection": "^6.4|^7.0",
  6937. "symfony/serializer": "^6.4|^7.0"
  6938. },
  6939. "type": "library",
  6940. "autoload": {
  6941. "psr-4": {
  6942. "Symfony\\Component\\PropertyInfo\\": ""
  6943. },
  6944. "exclude-from-classmap": [
  6945. "/Tests/"
  6946. ]
  6947. },
  6948. "notification-url": "https://packagist.org/downloads/",
  6949. "license": [
  6950. "MIT"
  6951. ],
  6952. "authors": [
  6953. {
  6954. "name": "Kévin Dunglas",
  6955. "email": "dunglas@gmail.com"
  6956. },
  6957. {
  6958. "name": "Symfony Community",
  6959. "homepage": "https://symfony.com/contributors"
  6960. }
  6961. ],
  6962. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6963. "homepage": "https://symfony.com",
  6964. "keywords": [
  6965. "doctrine",
  6966. "phpdoc",
  6967. "property",
  6968. "symfony",
  6969. "type",
  6970. "validator"
  6971. ],
  6972. "support": {
  6973. "source": "https://github.com/symfony/property-info/tree/v7.1.3"
  6974. },
  6975. "funding": [
  6976. {
  6977. "url": "https://symfony.com/sponsor",
  6978. "type": "custom"
  6979. },
  6980. {
  6981. "url": "https://github.com/fabpot",
  6982. "type": "github"
  6983. },
  6984. {
  6985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6986. "type": "tidelift"
  6987. }
  6988. ],
  6989. "time": "2024-07-26T07:36:36+00:00"
  6990. },
  6991. {
  6992. "name": "symfony/routing",
  6993. "version": "v7.1.4",
  6994. "source": {
  6995. "type": "git",
  6996. "url": "https://github.com/symfony/routing.git",
  6997. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7"
  6998. },
  6999. "dist": {
  7000. "type": "zip",
  7001. "url": "https://api.github.com/repos/symfony/routing/zipball/1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  7002. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  7003. "shasum": ""
  7004. },
  7005. "require": {
  7006. "php": ">=8.2",
  7007. "symfony/deprecation-contracts": "^2.5|^3"
  7008. },
  7009. "conflict": {
  7010. "symfony/config": "<6.4",
  7011. "symfony/dependency-injection": "<6.4",
  7012. "symfony/yaml": "<6.4"
  7013. },
  7014. "require-dev": {
  7015. "psr/log": "^1|^2|^3",
  7016. "symfony/config": "^6.4|^7.0",
  7017. "symfony/dependency-injection": "^6.4|^7.0",
  7018. "symfony/expression-language": "^6.4|^7.0",
  7019. "symfony/http-foundation": "^6.4|^7.0",
  7020. "symfony/yaml": "^6.4|^7.0"
  7021. },
  7022. "type": "library",
  7023. "autoload": {
  7024. "psr-4": {
  7025. "Symfony\\Component\\Routing\\": ""
  7026. },
  7027. "exclude-from-classmap": [
  7028. "/Tests/"
  7029. ]
  7030. },
  7031. "notification-url": "https://packagist.org/downloads/",
  7032. "license": [
  7033. "MIT"
  7034. ],
  7035. "authors": [
  7036. {
  7037. "name": "Fabien Potencier",
  7038. "email": "fabien@symfony.com"
  7039. },
  7040. {
  7041. "name": "Symfony Community",
  7042. "homepage": "https://symfony.com/contributors"
  7043. }
  7044. ],
  7045. "description": "Maps an HTTP request to a set of configuration variables",
  7046. "homepage": "https://symfony.com",
  7047. "keywords": [
  7048. "router",
  7049. "routing",
  7050. "uri",
  7051. "url"
  7052. ],
  7053. "support": {
  7054. "source": "https://github.com/symfony/routing/tree/v7.1.4"
  7055. },
  7056. "funding": [
  7057. {
  7058. "url": "https://symfony.com/sponsor",
  7059. "type": "custom"
  7060. },
  7061. {
  7062. "url": "https://github.com/fabpot",
  7063. "type": "github"
  7064. },
  7065. {
  7066. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7067. "type": "tidelift"
  7068. }
  7069. ],
  7070. "time": "2024-08-29T08:16:25+00:00"
  7071. },
  7072. {
  7073. "name": "symfony/runtime",
  7074. "version": "v7.1.1",
  7075. "source": {
  7076. "type": "git",
  7077. "url": "https://github.com/symfony/runtime.git",
  7078. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6"
  7079. },
  7080. "dist": {
  7081. "type": "zip",
  7082. "url": "https://api.github.com/repos/symfony/runtime/zipball/ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  7083. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  7084. "shasum": ""
  7085. },
  7086. "require": {
  7087. "composer-plugin-api": "^1.0|^2.0",
  7088. "php": ">=8.2"
  7089. },
  7090. "conflict": {
  7091. "symfony/dotenv": "<6.4"
  7092. },
  7093. "require-dev": {
  7094. "composer/composer": "^2.6",
  7095. "symfony/console": "^6.4|^7.0",
  7096. "symfony/dotenv": "^6.4|^7.0",
  7097. "symfony/http-foundation": "^6.4|^7.0",
  7098. "symfony/http-kernel": "^6.4|^7.0"
  7099. },
  7100. "type": "composer-plugin",
  7101. "extra": {
  7102. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  7103. },
  7104. "autoload": {
  7105. "psr-4": {
  7106. "Symfony\\Component\\Runtime\\": "",
  7107. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  7108. },
  7109. "exclude-from-classmap": [
  7110. "/Tests/"
  7111. ]
  7112. },
  7113. "notification-url": "https://packagist.org/downloads/",
  7114. "license": [
  7115. "MIT"
  7116. ],
  7117. "authors": [
  7118. {
  7119. "name": "Nicolas Grekas",
  7120. "email": "p@tchwork.com"
  7121. },
  7122. {
  7123. "name": "Symfony Community",
  7124. "homepage": "https://symfony.com/contributors"
  7125. }
  7126. ],
  7127. "description": "Enables decoupling PHP applications from global state",
  7128. "homepage": "https://symfony.com",
  7129. "keywords": [
  7130. "runtime"
  7131. ],
  7132. "support": {
  7133. "source": "https://github.com/symfony/runtime/tree/v7.1.1"
  7134. },
  7135. "funding": [
  7136. {
  7137. "url": "https://symfony.com/sponsor",
  7138. "type": "custom"
  7139. },
  7140. {
  7141. "url": "https://github.com/fabpot",
  7142. "type": "github"
  7143. },
  7144. {
  7145. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7146. "type": "tidelift"
  7147. }
  7148. ],
  7149. "time": "2024-05-31T14:55:39+00:00"
  7150. },
  7151. {
  7152. "name": "symfony/security-bundle",
  7153. "version": "v7.1.4",
  7154. "source": {
  7155. "type": "git",
  7156. "url": "https://github.com/symfony/security-bundle.git",
  7157. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01"
  7158. },
  7159. "dist": {
  7160. "type": "zip",
  7161. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/5e10107856ff64d477c61fed7bcbb8a16125ea01",
  7162. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01",
  7163. "shasum": ""
  7164. },
  7165. "require": {
  7166. "composer-runtime-api": ">=2.1",
  7167. "ext-xml": "*",
  7168. "php": ">=8.2",
  7169. "symfony/clock": "^6.4|^7.0",
  7170. "symfony/config": "^6.4|^7.0",
  7171. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  7172. "symfony/event-dispatcher": "^6.4|^7.0",
  7173. "symfony/http-foundation": "^6.4|^7.0",
  7174. "symfony/http-kernel": "^6.4|^7.0",
  7175. "symfony/password-hasher": "^6.4|^7.0",
  7176. "symfony/security-core": "^6.4|^7.0",
  7177. "symfony/security-csrf": "^6.4|^7.0",
  7178. "symfony/security-http": "^7.1",
  7179. "symfony/service-contracts": "^2.5|^3"
  7180. },
  7181. "conflict": {
  7182. "symfony/browser-kit": "<6.4",
  7183. "symfony/console": "<6.4",
  7184. "symfony/framework-bundle": "<6.4",
  7185. "symfony/http-client": "<6.4",
  7186. "symfony/ldap": "<6.4",
  7187. "symfony/serializer": "<6.4",
  7188. "symfony/twig-bundle": "<6.4",
  7189. "symfony/validator": "<6.4"
  7190. },
  7191. "require-dev": {
  7192. "symfony/asset": "^6.4|^7.0",
  7193. "symfony/browser-kit": "^6.4|^7.0",
  7194. "symfony/console": "^6.4|^7.0",
  7195. "symfony/css-selector": "^6.4|^7.0",
  7196. "symfony/dom-crawler": "^6.4|^7.0",
  7197. "symfony/expression-language": "^6.4|^7.0",
  7198. "symfony/form": "^6.4|^7.0",
  7199. "symfony/framework-bundle": "^6.4|^7.0",
  7200. "symfony/http-client": "^6.4|^7.0",
  7201. "symfony/ldap": "^6.4|^7.0",
  7202. "symfony/process": "^6.4|^7.0",
  7203. "symfony/rate-limiter": "^6.4|^7.0",
  7204. "symfony/serializer": "^6.4|^7.0",
  7205. "symfony/translation": "^6.4|^7.0",
  7206. "symfony/twig-bridge": "^6.4|^7.0",
  7207. "symfony/twig-bundle": "^6.4|^7.0",
  7208. "symfony/validator": "^6.4|^7.0",
  7209. "symfony/yaml": "^6.4|^7.0",
  7210. "twig/twig": "^3.0.4",
  7211. "web-token/jwt-library": "^3.3.2|^4.0"
  7212. },
  7213. "type": "symfony-bundle",
  7214. "autoload": {
  7215. "psr-4": {
  7216. "Symfony\\Bundle\\SecurityBundle\\": ""
  7217. },
  7218. "exclude-from-classmap": [
  7219. "/Tests/"
  7220. ]
  7221. },
  7222. "notification-url": "https://packagist.org/downloads/",
  7223. "license": [
  7224. "MIT"
  7225. ],
  7226. "authors": [
  7227. {
  7228. "name": "Fabien Potencier",
  7229. "email": "fabien@symfony.com"
  7230. },
  7231. {
  7232. "name": "Symfony Community",
  7233. "homepage": "https://symfony.com/contributors"
  7234. }
  7235. ],
  7236. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  7237. "homepage": "https://symfony.com",
  7238. "support": {
  7239. "source": "https://github.com/symfony/security-bundle/tree/v7.1.4"
  7240. },
  7241. "funding": [
  7242. {
  7243. "url": "https://symfony.com/sponsor",
  7244. "type": "custom"
  7245. },
  7246. {
  7247. "url": "https://github.com/fabpot",
  7248. "type": "github"
  7249. },
  7250. {
  7251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7252. "type": "tidelift"
  7253. }
  7254. ],
  7255. "time": "2024-08-20T11:38:55+00:00"
  7256. },
  7257. {
  7258. "name": "symfony/security-core",
  7259. "version": "v7.1.5",
  7260. "source": {
  7261. "type": "git",
  7262. "url": "https://github.com/symfony/security-core.git",
  7263. "reference": "dbeb09f0b786590d126c0da297e2320e66ec353b"
  7264. },
  7265. "dist": {
  7266. "type": "zip",
  7267. "url": "https://api.github.com/repos/symfony/security-core/zipball/dbeb09f0b786590d126c0da297e2320e66ec353b",
  7268. "reference": "dbeb09f0b786590d126c0da297e2320e66ec353b",
  7269. "shasum": ""
  7270. },
  7271. "require": {
  7272. "php": ">=8.2",
  7273. "symfony/event-dispatcher-contracts": "^2.5|^3",
  7274. "symfony/password-hasher": "^6.4|^7.0",
  7275. "symfony/service-contracts": "^2.5|^3"
  7276. },
  7277. "conflict": {
  7278. "symfony/dependency-injection": "<6.4",
  7279. "symfony/event-dispatcher": "<6.4",
  7280. "symfony/http-foundation": "<6.4",
  7281. "symfony/ldap": "<6.4",
  7282. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7283. "symfony/validator": "<6.4"
  7284. },
  7285. "require-dev": {
  7286. "psr/cache": "^1.0|^2.0|^3.0",
  7287. "psr/container": "^1.1|^2.0",
  7288. "psr/log": "^1|^2|^3",
  7289. "symfony/cache": "^6.4|^7.0",
  7290. "symfony/dependency-injection": "^6.4|^7.0",
  7291. "symfony/event-dispatcher": "^6.4|^7.0",
  7292. "symfony/expression-language": "^6.4|^7.0",
  7293. "symfony/http-foundation": "^6.4|^7.0",
  7294. "symfony/ldap": "^6.4|^7.0",
  7295. "symfony/string": "^6.4|^7.0",
  7296. "symfony/translation": "^6.4.3|^7.0.3",
  7297. "symfony/validator": "^6.4|^7.0"
  7298. },
  7299. "type": "library",
  7300. "autoload": {
  7301. "psr-4": {
  7302. "Symfony\\Component\\Security\\Core\\": ""
  7303. },
  7304. "exclude-from-classmap": [
  7305. "/Tests/"
  7306. ]
  7307. },
  7308. "notification-url": "https://packagist.org/downloads/",
  7309. "license": [
  7310. "MIT"
  7311. ],
  7312. "authors": [
  7313. {
  7314. "name": "Fabien Potencier",
  7315. "email": "fabien@symfony.com"
  7316. },
  7317. {
  7318. "name": "Symfony Community",
  7319. "homepage": "https://symfony.com/contributors"
  7320. }
  7321. ],
  7322. "description": "Symfony Security Component - Core Library",
  7323. "homepage": "https://symfony.com",
  7324. "support": {
  7325. "source": "https://github.com/symfony/security-core/tree/v7.1.5"
  7326. },
  7327. "funding": [
  7328. {
  7329. "url": "https://symfony.com/sponsor",
  7330. "type": "custom"
  7331. },
  7332. {
  7333. "url": "https://github.com/fabpot",
  7334. "type": "github"
  7335. },
  7336. {
  7337. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7338. "type": "tidelift"
  7339. }
  7340. ],
  7341. "time": "2024-09-20T13:35:23+00:00"
  7342. },
  7343. {
  7344. "name": "symfony/security-csrf",
  7345. "version": "v7.1.1",
  7346. "source": {
  7347. "type": "git",
  7348. "url": "https://github.com/symfony/security-csrf.git",
  7349. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21"
  7350. },
  7351. "dist": {
  7352. "type": "zip",
  7353. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  7354. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  7355. "shasum": ""
  7356. },
  7357. "require": {
  7358. "php": ">=8.2",
  7359. "symfony/security-core": "^6.4|^7.0"
  7360. },
  7361. "conflict": {
  7362. "symfony/http-foundation": "<6.4"
  7363. },
  7364. "require-dev": {
  7365. "symfony/http-foundation": "^6.4|^7.0"
  7366. },
  7367. "type": "library",
  7368. "autoload": {
  7369. "psr-4": {
  7370. "Symfony\\Component\\Security\\Csrf\\": ""
  7371. },
  7372. "exclude-from-classmap": [
  7373. "/Tests/"
  7374. ]
  7375. },
  7376. "notification-url": "https://packagist.org/downloads/",
  7377. "license": [
  7378. "MIT"
  7379. ],
  7380. "authors": [
  7381. {
  7382. "name": "Fabien Potencier",
  7383. "email": "fabien@symfony.com"
  7384. },
  7385. {
  7386. "name": "Symfony Community",
  7387. "homepage": "https://symfony.com/contributors"
  7388. }
  7389. ],
  7390. "description": "Symfony Security Component - CSRF Library",
  7391. "homepage": "https://symfony.com",
  7392. "support": {
  7393. "source": "https://github.com/symfony/security-csrf/tree/v7.1.1"
  7394. },
  7395. "funding": [
  7396. {
  7397. "url": "https://symfony.com/sponsor",
  7398. "type": "custom"
  7399. },
  7400. {
  7401. "url": "https://github.com/fabpot",
  7402. "type": "github"
  7403. },
  7404. {
  7405. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7406. "type": "tidelift"
  7407. }
  7408. ],
  7409. "time": "2024-05-31T14:57:53+00:00"
  7410. },
  7411. {
  7412. "name": "symfony/security-http",
  7413. "version": "v7.1.5",
  7414. "source": {
  7415. "type": "git",
  7416. "url": "https://github.com/symfony/security-http.git",
  7417. "reference": "d47c013bccf4b81a1496826d42dfa05da549131a"
  7418. },
  7419. "dist": {
  7420. "type": "zip",
  7421. "url": "https://api.github.com/repos/symfony/security-http/zipball/d47c013bccf4b81a1496826d42dfa05da549131a",
  7422. "reference": "d47c013bccf4b81a1496826d42dfa05da549131a",
  7423. "shasum": ""
  7424. },
  7425. "require": {
  7426. "php": ">=8.2",
  7427. "symfony/deprecation-contracts": "^2.5|^3",
  7428. "symfony/http-foundation": "^6.4|^7.0",
  7429. "symfony/http-kernel": "^6.4|^7.0",
  7430. "symfony/polyfill-mbstring": "~1.0",
  7431. "symfony/property-access": "^6.4|^7.0",
  7432. "symfony/security-core": "^6.4|^7.0",
  7433. "symfony/service-contracts": "^2.5|^3"
  7434. },
  7435. "conflict": {
  7436. "symfony/clock": "<6.4",
  7437. "symfony/event-dispatcher": "<6.4",
  7438. "symfony/http-client-contracts": "<3.0",
  7439. "symfony/security-bundle": "<6.4",
  7440. "symfony/security-csrf": "<6.4"
  7441. },
  7442. "require-dev": {
  7443. "psr/log": "^1|^2|^3",
  7444. "symfony/cache": "^6.4|^7.0",
  7445. "symfony/clock": "^6.4|^7.0",
  7446. "symfony/expression-language": "^6.4|^7.0",
  7447. "symfony/http-client": "^6.4|^7.0",
  7448. "symfony/http-client-contracts": "^3.0",
  7449. "symfony/rate-limiter": "^6.4|^7.0",
  7450. "symfony/routing": "^6.4|^7.0",
  7451. "symfony/security-csrf": "^6.4|^7.0",
  7452. "symfony/translation": "^6.4|^7.0",
  7453. "web-token/jwt-library": "^3.3.2|^4.0"
  7454. },
  7455. "type": "library",
  7456. "autoload": {
  7457. "psr-4": {
  7458. "Symfony\\Component\\Security\\Http\\": ""
  7459. },
  7460. "exclude-from-classmap": [
  7461. "/Tests/"
  7462. ]
  7463. },
  7464. "notification-url": "https://packagist.org/downloads/",
  7465. "license": [
  7466. "MIT"
  7467. ],
  7468. "authors": [
  7469. {
  7470. "name": "Fabien Potencier",
  7471. "email": "fabien@symfony.com"
  7472. },
  7473. {
  7474. "name": "Symfony Community",
  7475. "homepage": "https://symfony.com/contributors"
  7476. }
  7477. ],
  7478. "description": "Symfony Security Component - HTTP Integration",
  7479. "homepage": "https://symfony.com",
  7480. "support": {
  7481. "source": "https://github.com/symfony/security-http/tree/v7.1.5"
  7482. },
  7483. "funding": [
  7484. {
  7485. "url": "https://symfony.com/sponsor",
  7486. "type": "custom"
  7487. },
  7488. {
  7489. "url": "https://github.com/fabpot",
  7490. "type": "github"
  7491. },
  7492. {
  7493. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7494. "type": "tidelift"
  7495. }
  7496. ],
  7497. "time": "2024-09-20T08:28:38+00:00"
  7498. },
  7499. {
  7500. "name": "symfony/serializer",
  7501. "version": "v7.1.5",
  7502. "source": {
  7503. "type": "git",
  7504. "url": "https://github.com/symfony/serializer.git",
  7505. "reference": "71d6e1f70f00752d1469d0f5e83b0a51716f288b"
  7506. },
  7507. "dist": {
  7508. "type": "zip",
  7509. "url": "https://api.github.com/repos/symfony/serializer/zipball/71d6e1f70f00752d1469d0f5e83b0a51716f288b",
  7510. "reference": "71d6e1f70f00752d1469d0f5e83b0a51716f288b",
  7511. "shasum": ""
  7512. },
  7513. "require": {
  7514. "php": ">=8.2",
  7515. "symfony/deprecation-contracts": "^2.5|^3",
  7516. "symfony/polyfill-ctype": "~1.8"
  7517. },
  7518. "conflict": {
  7519. "phpdocumentor/reflection-docblock": "<3.2.2",
  7520. "phpdocumentor/type-resolver": "<1.4.0",
  7521. "symfony/dependency-injection": "<6.4",
  7522. "symfony/property-access": "<6.4",
  7523. "symfony/property-info": "<6.4",
  7524. "symfony/type-info": "<7.1.5",
  7525. "symfony/uid": "<6.4",
  7526. "symfony/validator": "<6.4",
  7527. "symfony/yaml": "<6.4"
  7528. },
  7529. "require-dev": {
  7530. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7531. "phpstan/phpdoc-parser": "^1.0",
  7532. "seld/jsonlint": "^1.10",
  7533. "symfony/cache": "^6.4|^7.0",
  7534. "symfony/config": "^6.4|^7.0",
  7535. "symfony/console": "^6.4|^7.0",
  7536. "symfony/dependency-injection": "^6.4|^7.0",
  7537. "symfony/error-handler": "^6.4|^7.0",
  7538. "symfony/filesystem": "^6.4|^7.0",
  7539. "symfony/form": "^6.4|^7.0",
  7540. "symfony/http-foundation": "^6.4|^7.0",
  7541. "symfony/http-kernel": "^6.4|^7.0",
  7542. "symfony/messenger": "^6.4|^7.0",
  7543. "symfony/mime": "^6.4|^7.0",
  7544. "symfony/property-access": "^6.4|^7.0",
  7545. "symfony/property-info": "^6.4|^7.0",
  7546. "symfony/translation-contracts": "^2.5|^3",
  7547. "symfony/type-info": "^7.1.5",
  7548. "symfony/uid": "^6.4|^7.0",
  7549. "symfony/validator": "^6.4|^7.0",
  7550. "symfony/var-dumper": "^6.4|^7.0",
  7551. "symfony/var-exporter": "^6.4|^7.0",
  7552. "symfony/yaml": "^6.4|^7.0"
  7553. },
  7554. "type": "library",
  7555. "autoload": {
  7556. "psr-4": {
  7557. "Symfony\\Component\\Serializer\\": ""
  7558. },
  7559. "exclude-from-classmap": [
  7560. "/Tests/"
  7561. ]
  7562. },
  7563. "notification-url": "https://packagist.org/downloads/",
  7564. "license": [
  7565. "MIT"
  7566. ],
  7567. "authors": [
  7568. {
  7569. "name": "Fabien Potencier",
  7570. "email": "fabien@symfony.com"
  7571. },
  7572. {
  7573. "name": "Symfony Community",
  7574. "homepage": "https://symfony.com/contributors"
  7575. }
  7576. ],
  7577. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7578. "homepage": "https://symfony.com",
  7579. "support": {
  7580. "source": "https://github.com/symfony/serializer/tree/v7.1.5"
  7581. },
  7582. "funding": [
  7583. {
  7584. "url": "https://symfony.com/sponsor",
  7585. "type": "custom"
  7586. },
  7587. {
  7588. "url": "https://github.com/fabpot",
  7589. "type": "github"
  7590. },
  7591. {
  7592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7593. "type": "tidelift"
  7594. }
  7595. ],
  7596. "time": "2024-09-20T12:13:15+00:00"
  7597. },
  7598. {
  7599. "name": "symfony/service-contracts",
  7600. "version": "v3.5.0",
  7601. "source": {
  7602. "type": "git",
  7603. "url": "https://github.com/symfony/service-contracts.git",
  7604. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7605. },
  7606. "dist": {
  7607. "type": "zip",
  7608. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7609. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7610. "shasum": ""
  7611. },
  7612. "require": {
  7613. "php": ">=8.1",
  7614. "psr/container": "^1.1|^2.0",
  7615. "symfony/deprecation-contracts": "^2.5|^3"
  7616. },
  7617. "conflict": {
  7618. "ext-psr": "<1.1|>=2"
  7619. },
  7620. "type": "library",
  7621. "extra": {
  7622. "branch-alias": {
  7623. "dev-main": "3.5-dev"
  7624. },
  7625. "thanks": {
  7626. "name": "symfony/contracts",
  7627. "url": "https://github.com/symfony/contracts"
  7628. }
  7629. },
  7630. "autoload": {
  7631. "psr-4": {
  7632. "Symfony\\Contracts\\Service\\": ""
  7633. },
  7634. "exclude-from-classmap": [
  7635. "/Test/"
  7636. ]
  7637. },
  7638. "notification-url": "https://packagist.org/downloads/",
  7639. "license": [
  7640. "MIT"
  7641. ],
  7642. "authors": [
  7643. {
  7644. "name": "Nicolas Grekas",
  7645. "email": "p@tchwork.com"
  7646. },
  7647. {
  7648. "name": "Symfony Community",
  7649. "homepage": "https://symfony.com/contributors"
  7650. }
  7651. ],
  7652. "description": "Generic abstractions related to writing services",
  7653. "homepage": "https://symfony.com",
  7654. "keywords": [
  7655. "abstractions",
  7656. "contracts",
  7657. "decoupling",
  7658. "interfaces",
  7659. "interoperability",
  7660. "standards"
  7661. ],
  7662. "support": {
  7663. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7664. },
  7665. "funding": [
  7666. {
  7667. "url": "https://symfony.com/sponsor",
  7668. "type": "custom"
  7669. },
  7670. {
  7671. "url": "https://github.com/fabpot",
  7672. "type": "github"
  7673. },
  7674. {
  7675. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7676. "type": "tidelift"
  7677. }
  7678. ],
  7679. "time": "2024-04-18T09:32:20+00:00"
  7680. },
  7681. {
  7682. "name": "symfony/stimulus-bundle",
  7683. "version": "v2.21.0",
  7684. "source": {
  7685. "type": "git",
  7686. "url": "https://github.com/symfony/stimulus-bundle.git",
  7687. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48"
  7688. },
  7689. "dist": {
  7690. "type": "zip",
  7691. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/e5f7747b514865719e0990389ce35a9b71bebb48",
  7692. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48",
  7693. "shasum": ""
  7694. },
  7695. "require": {
  7696. "php": ">=8.1",
  7697. "symfony/config": "^5.4|^6.0|^7.0",
  7698. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7699. "symfony/deprecation-contracts": "^2.0|^3.0",
  7700. "symfony/finder": "^5.4|^6.0|^7.0",
  7701. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7702. "twig/twig": "^2.15.3|^3.8"
  7703. },
  7704. "require-dev": {
  7705. "symfony/asset-mapper": "^6.3|^7.0",
  7706. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7707. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7708. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7709. "zenstruck/browser": "^1.4"
  7710. },
  7711. "type": "symfony-bundle",
  7712. "autoload": {
  7713. "psr-4": {
  7714. "Symfony\\UX\\StimulusBundle\\": "src"
  7715. }
  7716. },
  7717. "notification-url": "https://packagist.org/downloads/",
  7718. "license": [
  7719. "MIT"
  7720. ],
  7721. "authors": [
  7722. {
  7723. "name": "Symfony Community",
  7724. "homepage": "https://symfony.com/contributors"
  7725. }
  7726. ],
  7727. "description": "Integration with your Symfony app & Stimulus!",
  7728. "keywords": [
  7729. "symfony-ux"
  7730. ],
  7731. "support": {
  7732. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.21.0"
  7733. },
  7734. "funding": [
  7735. {
  7736. "url": "https://symfony.com/sponsor",
  7737. "type": "custom"
  7738. },
  7739. {
  7740. "url": "https://github.com/fabpot",
  7741. "type": "github"
  7742. },
  7743. {
  7744. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7745. "type": "tidelift"
  7746. }
  7747. ],
  7748. "time": "2024-10-05T22:11:16+00:00"
  7749. },
  7750. {
  7751. "name": "symfony/stopwatch",
  7752. "version": "v7.1.1",
  7753. "source": {
  7754. "type": "git",
  7755. "url": "https://github.com/symfony/stopwatch.git",
  7756. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
  7757. },
  7758. "dist": {
  7759. "type": "zip",
  7760. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  7761. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  7762. "shasum": ""
  7763. },
  7764. "require": {
  7765. "php": ">=8.2",
  7766. "symfony/service-contracts": "^2.5|^3"
  7767. },
  7768. "type": "library",
  7769. "autoload": {
  7770. "psr-4": {
  7771. "Symfony\\Component\\Stopwatch\\": ""
  7772. },
  7773. "exclude-from-classmap": [
  7774. "/Tests/"
  7775. ]
  7776. },
  7777. "notification-url": "https://packagist.org/downloads/",
  7778. "license": [
  7779. "MIT"
  7780. ],
  7781. "authors": [
  7782. {
  7783. "name": "Fabien Potencier",
  7784. "email": "fabien@symfony.com"
  7785. },
  7786. {
  7787. "name": "Symfony Community",
  7788. "homepage": "https://symfony.com/contributors"
  7789. }
  7790. ],
  7791. "description": "Provides a way to profile code",
  7792. "homepage": "https://symfony.com",
  7793. "support": {
  7794. "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
  7795. },
  7796. "funding": [
  7797. {
  7798. "url": "https://symfony.com/sponsor",
  7799. "type": "custom"
  7800. },
  7801. {
  7802. "url": "https://github.com/fabpot",
  7803. "type": "github"
  7804. },
  7805. {
  7806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7807. "type": "tidelift"
  7808. }
  7809. ],
  7810. "time": "2024-05-31T14:57:53+00:00"
  7811. },
  7812. {
  7813. "name": "symfony/string",
  7814. "version": "v7.1.5",
  7815. "source": {
  7816. "type": "git",
  7817. "url": "https://github.com/symfony/string.git",
  7818. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306"
  7819. },
  7820. "dist": {
  7821. "type": "zip",
  7822. "url": "https://api.github.com/repos/symfony/string/zipball/d66f9c343fa894ec2037cc928381df90a7ad4306",
  7823. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306",
  7824. "shasum": ""
  7825. },
  7826. "require": {
  7827. "php": ">=8.2",
  7828. "symfony/polyfill-ctype": "~1.8",
  7829. "symfony/polyfill-intl-grapheme": "~1.0",
  7830. "symfony/polyfill-intl-normalizer": "~1.0",
  7831. "symfony/polyfill-mbstring": "~1.0"
  7832. },
  7833. "conflict": {
  7834. "symfony/translation-contracts": "<2.5"
  7835. },
  7836. "require-dev": {
  7837. "symfony/emoji": "^7.1",
  7838. "symfony/error-handler": "^6.4|^7.0",
  7839. "symfony/http-client": "^6.4|^7.0",
  7840. "symfony/intl": "^6.4|^7.0",
  7841. "symfony/translation-contracts": "^2.5|^3.0",
  7842. "symfony/var-exporter": "^6.4|^7.0"
  7843. },
  7844. "type": "library",
  7845. "autoload": {
  7846. "files": [
  7847. "Resources/functions.php"
  7848. ],
  7849. "psr-4": {
  7850. "Symfony\\Component\\String\\": ""
  7851. },
  7852. "exclude-from-classmap": [
  7853. "/Tests/"
  7854. ]
  7855. },
  7856. "notification-url": "https://packagist.org/downloads/",
  7857. "license": [
  7858. "MIT"
  7859. ],
  7860. "authors": [
  7861. {
  7862. "name": "Nicolas Grekas",
  7863. "email": "p@tchwork.com"
  7864. },
  7865. {
  7866. "name": "Symfony Community",
  7867. "homepage": "https://symfony.com/contributors"
  7868. }
  7869. ],
  7870. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7871. "homepage": "https://symfony.com",
  7872. "keywords": [
  7873. "grapheme",
  7874. "i18n",
  7875. "string",
  7876. "unicode",
  7877. "utf-8",
  7878. "utf8"
  7879. ],
  7880. "support": {
  7881. "source": "https://github.com/symfony/string/tree/v7.1.5"
  7882. },
  7883. "funding": [
  7884. {
  7885. "url": "https://symfony.com/sponsor",
  7886. "type": "custom"
  7887. },
  7888. {
  7889. "url": "https://github.com/fabpot",
  7890. "type": "github"
  7891. },
  7892. {
  7893. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7894. "type": "tidelift"
  7895. }
  7896. ],
  7897. "time": "2024-09-20T08:28:38+00:00"
  7898. },
  7899. {
  7900. "name": "symfony/translation",
  7901. "version": "v7.1.5",
  7902. "source": {
  7903. "type": "git",
  7904. "url": "https://github.com/symfony/translation.git",
  7905. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea"
  7906. },
  7907. "dist": {
  7908. "type": "zip",
  7909. "url": "https://api.github.com/repos/symfony/translation/zipball/235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  7910. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  7911. "shasum": ""
  7912. },
  7913. "require": {
  7914. "php": ">=8.2",
  7915. "symfony/polyfill-mbstring": "~1.0",
  7916. "symfony/translation-contracts": "^2.5|^3.0"
  7917. },
  7918. "conflict": {
  7919. "symfony/config": "<6.4",
  7920. "symfony/console": "<6.4",
  7921. "symfony/dependency-injection": "<6.4",
  7922. "symfony/http-client-contracts": "<2.5",
  7923. "symfony/http-kernel": "<6.4",
  7924. "symfony/service-contracts": "<2.5",
  7925. "symfony/twig-bundle": "<6.4",
  7926. "symfony/yaml": "<6.4"
  7927. },
  7928. "provide": {
  7929. "symfony/translation-implementation": "2.3|3.0"
  7930. },
  7931. "require-dev": {
  7932. "nikic/php-parser": "^4.18|^5.0",
  7933. "psr/log": "^1|^2|^3",
  7934. "symfony/config": "^6.4|^7.0",
  7935. "symfony/console": "^6.4|^7.0",
  7936. "symfony/dependency-injection": "^6.4|^7.0",
  7937. "symfony/finder": "^6.4|^7.0",
  7938. "symfony/http-client-contracts": "^2.5|^3.0",
  7939. "symfony/http-kernel": "^6.4|^7.0",
  7940. "symfony/intl": "^6.4|^7.0",
  7941. "symfony/polyfill-intl-icu": "^1.21",
  7942. "symfony/routing": "^6.4|^7.0",
  7943. "symfony/service-contracts": "^2.5|^3",
  7944. "symfony/yaml": "^6.4|^7.0"
  7945. },
  7946. "type": "library",
  7947. "autoload": {
  7948. "files": [
  7949. "Resources/functions.php"
  7950. ],
  7951. "psr-4": {
  7952. "Symfony\\Component\\Translation\\": ""
  7953. },
  7954. "exclude-from-classmap": [
  7955. "/Tests/"
  7956. ]
  7957. },
  7958. "notification-url": "https://packagist.org/downloads/",
  7959. "license": [
  7960. "MIT"
  7961. ],
  7962. "authors": [
  7963. {
  7964. "name": "Fabien Potencier",
  7965. "email": "fabien@symfony.com"
  7966. },
  7967. {
  7968. "name": "Symfony Community",
  7969. "homepage": "https://symfony.com/contributors"
  7970. }
  7971. ],
  7972. "description": "Provides tools to internationalize your application",
  7973. "homepage": "https://symfony.com",
  7974. "support": {
  7975. "source": "https://github.com/symfony/translation/tree/v7.1.5"
  7976. },
  7977. "funding": [
  7978. {
  7979. "url": "https://symfony.com/sponsor",
  7980. "type": "custom"
  7981. },
  7982. {
  7983. "url": "https://github.com/fabpot",
  7984. "type": "github"
  7985. },
  7986. {
  7987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7988. "type": "tidelift"
  7989. }
  7990. ],
  7991. "time": "2024-09-16T06:30:38+00:00"
  7992. },
  7993. {
  7994. "name": "symfony/translation-contracts",
  7995. "version": "v3.5.0",
  7996. "source": {
  7997. "type": "git",
  7998. "url": "https://github.com/symfony/translation-contracts.git",
  7999. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  8000. },
  8001. "dist": {
  8002. "type": "zip",
  8003. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  8004. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  8005. "shasum": ""
  8006. },
  8007. "require": {
  8008. "php": ">=8.1"
  8009. },
  8010. "type": "library",
  8011. "extra": {
  8012. "branch-alias": {
  8013. "dev-main": "3.5-dev"
  8014. },
  8015. "thanks": {
  8016. "name": "symfony/contracts",
  8017. "url": "https://github.com/symfony/contracts"
  8018. }
  8019. },
  8020. "autoload": {
  8021. "psr-4": {
  8022. "Symfony\\Contracts\\Translation\\": ""
  8023. },
  8024. "exclude-from-classmap": [
  8025. "/Test/"
  8026. ]
  8027. },
  8028. "notification-url": "https://packagist.org/downloads/",
  8029. "license": [
  8030. "MIT"
  8031. ],
  8032. "authors": [
  8033. {
  8034. "name": "Nicolas Grekas",
  8035. "email": "p@tchwork.com"
  8036. },
  8037. {
  8038. "name": "Symfony Community",
  8039. "homepage": "https://symfony.com/contributors"
  8040. }
  8041. ],
  8042. "description": "Generic abstractions related to translation",
  8043. "homepage": "https://symfony.com",
  8044. "keywords": [
  8045. "abstractions",
  8046. "contracts",
  8047. "decoupling",
  8048. "interfaces",
  8049. "interoperability",
  8050. "standards"
  8051. ],
  8052. "support": {
  8053. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  8054. },
  8055. "funding": [
  8056. {
  8057. "url": "https://symfony.com/sponsor",
  8058. "type": "custom"
  8059. },
  8060. {
  8061. "url": "https://github.com/fabpot",
  8062. "type": "github"
  8063. },
  8064. {
  8065. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8066. "type": "tidelift"
  8067. }
  8068. ],
  8069. "time": "2024-04-18T09:32:20+00:00"
  8070. },
  8071. {
  8072. "name": "symfony/twig-bridge",
  8073. "version": "v7.1.5",
  8074. "source": {
  8075. "type": "git",
  8076. "url": "https://github.com/symfony/twig-bridge.git",
  8077. "reference": "e997e5025b53c0f7b17632802daefdd6a04540ae"
  8078. },
  8079. "dist": {
  8080. "type": "zip",
  8081. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/e997e5025b53c0f7b17632802daefdd6a04540ae",
  8082. "reference": "e997e5025b53c0f7b17632802daefdd6a04540ae",
  8083. "shasum": ""
  8084. },
  8085. "require": {
  8086. "php": ">=8.2",
  8087. "symfony/translation-contracts": "^2.5|^3",
  8088. "twig/twig": "^3.9"
  8089. },
  8090. "conflict": {
  8091. "phpdocumentor/reflection-docblock": "<3.2.2",
  8092. "phpdocumentor/type-resolver": "<1.4.0",
  8093. "symfony/console": "<6.4",
  8094. "symfony/form": "<6.4",
  8095. "symfony/http-foundation": "<6.4",
  8096. "symfony/http-kernel": "<6.4",
  8097. "symfony/mime": "<6.4",
  8098. "symfony/serializer": "<6.4",
  8099. "symfony/translation": "<6.4",
  8100. "symfony/workflow": "<6.4"
  8101. },
  8102. "require-dev": {
  8103. "egulias/email-validator": "^2.1.10|^3|^4",
  8104. "league/html-to-markdown": "^5.0",
  8105. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8106. "symfony/asset": "^6.4|^7.0",
  8107. "symfony/asset-mapper": "^6.4|^7.0",
  8108. "symfony/console": "^6.4|^7.0",
  8109. "symfony/dependency-injection": "^6.4|^7.0",
  8110. "symfony/emoji": "^7.1",
  8111. "symfony/expression-language": "^6.4|^7.0",
  8112. "symfony/finder": "^6.4|^7.0",
  8113. "symfony/form": "^6.4|^7.0",
  8114. "symfony/html-sanitizer": "^6.4|^7.0",
  8115. "symfony/http-foundation": "^6.4|^7.0",
  8116. "symfony/http-kernel": "^6.4|^7.0",
  8117. "symfony/intl": "^6.4|^7.0",
  8118. "symfony/mime": "^6.4|^7.0",
  8119. "symfony/polyfill-intl-icu": "~1.0",
  8120. "symfony/property-info": "^6.4|^7.0",
  8121. "symfony/routing": "^6.4|^7.0",
  8122. "symfony/security-acl": "^2.8|^3.0",
  8123. "symfony/security-core": "^6.4|^7.0",
  8124. "symfony/security-csrf": "^6.4|^7.0",
  8125. "symfony/security-http": "^6.4|^7.0",
  8126. "symfony/serializer": "^6.4.3|^7.0.3",
  8127. "symfony/stopwatch": "^6.4|^7.0",
  8128. "symfony/translation": "^6.4|^7.0",
  8129. "symfony/web-link": "^6.4|^7.0",
  8130. "symfony/workflow": "^6.4|^7.0",
  8131. "symfony/yaml": "^6.4|^7.0",
  8132. "twig/cssinliner-extra": "^2.12|^3",
  8133. "twig/inky-extra": "^2.12|^3",
  8134. "twig/markdown-extra": "^2.12|^3"
  8135. },
  8136. "type": "symfony-bridge",
  8137. "autoload": {
  8138. "psr-4": {
  8139. "Symfony\\Bridge\\Twig\\": ""
  8140. },
  8141. "exclude-from-classmap": [
  8142. "/Tests/"
  8143. ]
  8144. },
  8145. "notification-url": "https://packagist.org/downloads/",
  8146. "license": [
  8147. "MIT"
  8148. ],
  8149. "authors": [
  8150. {
  8151. "name": "Fabien Potencier",
  8152. "email": "fabien@symfony.com"
  8153. },
  8154. {
  8155. "name": "Symfony Community",
  8156. "homepage": "https://symfony.com/contributors"
  8157. }
  8158. ],
  8159. "description": "Provides integration for Twig with various Symfony components",
  8160. "homepage": "https://symfony.com",
  8161. "support": {
  8162. "source": "https://github.com/symfony/twig-bridge/tree/v7.1.5"
  8163. },
  8164. "funding": [
  8165. {
  8166. "url": "https://symfony.com/sponsor",
  8167. "type": "custom"
  8168. },
  8169. {
  8170. "url": "https://github.com/fabpot",
  8171. "type": "github"
  8172. },
  8173. {
  8174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8175. "type": "tidelift"
  8176. }
  8177. ],
  8178. "time": "2024-09-15T06:48:17+00:00"
  8179. },
  8180. {
  8181. "name": "symfony/twig-bundle",
  8182. "version": "v7.1.5",
  8183. "source": {
  8184. "type": "git",
  8185. "url": "https://github.com/symfony/twig-bundle.git",
  8186. "reference": "4e6afd0dc8396f16861b682f3b854ff6e24bfb7e"
  8187. },
  8188. "dist": {
  8189. "type": "zip",
  8190. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/4e6afd0dc8396f16861b682f3b854ff6e24bfb7e",
  8191. "reference": "4e6afd0dc8396f16861b682f3b854ff6e24bfb7e",
  8192. "shasum": ""
  8193. },
  8194. "require": {
  8195. "composer-runtime-api": ">=2.1",
  8196. "php": ">=8.2",
  8197. "symfony/config": "^6.4|^7.0",
  8198. "symfony/dependency-injection": "^6.4|^7.0",
  8199. "symfony/http-foundation": "^6.4|^7.0",
  8200. "symfony/http-kernel": "^6.4|^7.0",
  8201. "symfony/twig-bridge": "^6.4|^7.0",
  8202. "twig/twig": "^3.0.4"
  8203. },
  8204. "conflict": {
  8205. "symfony/framework-bundle": "<6.4",
  8206. "symfony/translation": "<6.4"
  8207. },
  8208. "require-dev": {
  8209. "symfony/asset": "^6.4|^7.0",
  8210. "symfony/expression-language": "^6.4|^7.0",
  8211. "symfony/finder": "^6.4|^7.0",
  8212. "symfony/form": "^6.4|^7.0",
  8213. "symfony/framework-bundle": "^6.4|^7.0",
  8214. "symfony/routing": "^6.4|^7.0",
  8215. "symfony/stopwatch": "^6.4|^7.0",
  8216. "symfony/translation": "^6.4|^7.0",
  8217. "symfony/web-link": "^6.4|^7.0",
  8218. "symfony/yaml": "^6.4|^7.0"
  8219. },
  8220. "type": "symfony-bundle",
  8221. "autoload": {
  8222. "psr-4": {
  8223. "Symfony\\Bundle\\TwigBundle\\": ""
  8224. },
  8225. "exclude-from-classmap": [
  8226. "/Tests/"
  8227. ]
  8228. },
  8229. "notification-url": "https://packagist.org/downloads/",
  8230. "license": [
  8231. "MIT"
  8232. ],
  8233. "authors": [
  8234. {
  8235. "name": "Fabien Potencier",
  8236. "email": "fabien@symfony.com"
  8237. },
  8238. {
  8239. "name": "Symfony Community",
  8240. "homepage": "https://symfony.com/contributors"
  8241. }
  8242. ],
  8243. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  8244. "homepage": "https://symfony.com",
  8245. "support": {
  8246. "source": "https://github.com/symfony/twig-bundle/tree/v7.1.5"
  8247. },
  8248. "funding": [
  8249. {
  8250. "url": "https://symfony.com/sponsor",
  8251. "type": "custom"
  8252. },
  8253. {
  8254. "url": "https://github.com/fabpot",
  8255. "type": "github"
  8256. },
  8257. {
  8258. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8259. "type": "tidelift"
  8260. }
  8261. ],
  8262. "time": "2024-09-08T12:32:26+00:00"
  8263. },
  8264. {
  8265. "name": "symfony/type-info",
  8266. "version": "v7.1.5",
  8267. "source": {
  8268. "type": "git",
  8269. "url": "https://github.com/symfony/type-info.git",
  8270. "reference": "9f6094aa900d2c06bd61576a6f279d4ac441515f"
  8271. },
  8272. "dist": {
  8273. "type": "zip",
  8274. "url": "https://api.github.com/repos/symfony/type-info/zipball/9f6094aa900d2c06bd61576a6f279d4ac441515f",
  8275. "reference": "9f6094aa900d2c06bd61576a6f279d4ac441515f",
  8276. "shasum": ""
  8277. },
  8278. "require": {
  8279. "php": ">=8.2",
  8280. "psr/container": "^1.1|^2.0"
  8281. },
  8282. "conflict": {
  8283. "phpstan/phpdoc-parser": "<1.0",
  8284. "symfony/dependency-injection": "<6.4",
  8285. "symfony/property-info": "<6.4"
  8286. },
  8287. "require-dev": {
  8288. "phpstan/phpdoc-parser": "^1.0",
  8289. "symfony/dependency-injection": "^6.4|^7.0",
  8290. "symfony/property-info": "^6.4|^7.0"
  8291. },
  8292. "type": "library",
  8293. "autoload": {
  8294. "psr-4": {
  8295. "Symfony\\Component\\TypeInfo\\": ""
  8296. },
  8297. "exclude-from-classmap": [
  8298. "/Tests/"
  8299. ]
  8300. },
  8301. "notification-url": "https://packagist.org/downloads/",
  8302. "license": [
  8303. "MIT"
  8304. ],
  8305. "authors": [
  8306. {
  8307. "name": "Mathias Arlaud",
  8308. "email": "mathias.arlaud@gmail.com"
  8309. },
  8310. {
  8311. "name": "Baptiste LEDUC",
  8312. "email": "baptiste.leduc@gmail.com"
  8313. },
  8314. {
  8315. "name": "Symfony Community",
  8316. "homepage": "https://symfony.com/contributors"
  8317. }
  8318. ],
  8319. "description": "Extracts PHP types information.",
  8320. "homepage": "https://symfony.com",
  8321. "keywords": [
  8322. "PHPStan",
  8323. "phpdoc",
  8324. "symfony",
  8325. "type"
  8326. ],
  8327. "support": {
  8328. "source": "https://github.com/symfony/type-info/tree/v7.1.5"
  8329. },
  8330. "funding": [
  8331. {
  8332. "url": "https://symfony.com/sponsor",
  8333. "type": "custom"
  8334. },
  8335. {
  8336. "url": "https://github.com/fabpot",
  8337. "type": "github"
  8338. },
  8339. {
  8340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8341. "type": "tidelift"
  8342. }
  8343. ],
  8344. "time": "2024-09-19T21:48:23+00:00"
  8345. },
  8346. {
  8347. "name": "symfony/ux-turbo",
  8348. "version": "v2.21.0",
  8349. "source": {
  8350. "type": "git",
  8351. "url": "https://github.com/symfony/ux-turbo.git",
  8352. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c"
  8353. },
  8354. "dist": {
  8355. "type": "zip",
  8356. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  8357. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  8358. "shasum": ""
  8359. },
  8360. "require": {
  8361. "php": ">=8.1",
  8362. "symfony/stimulus-bundle": "^2.9.1"
  8363. },
  8364. "conflict": {
  8365. "symfony/flex": "<1.13"
  8366. },
  8367. "require-dev": {
  8368. "dbrekelmans/bdi": "dev-main",
  8369. "doctrine/doctrine-bundle": "^2.4.3",
  8370. "doctrine/orm": "^2.8 | 3.0",
  8371. "phpstan/phpstan": "^1.10",
  8372. "symfony/asset-mapper": "^6.4|^7.0",
  8373. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  8374. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8375. "symfony/form": "^5.4|^6.0|^7.0",
  8376. "symfony/framework-bundle": "^6.4|^7.0",
  8377. "symfony/mercure-bundle": "^0.3.7",
  8378. "symfony/messenger": "^5.4|^6.0|^7.0",
  8379. "symfony/panther": "^2.1",
  8380. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  8381. "symfony/process": "^5.4|6.3.*|^7.0",
  8382. "symfony/property-access": "^5.4|^6.0|^7.0",
  8383. "symfony/security-core": "^5.4|^6.0|^7.0",
  8384. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  8385. "symfony/twig-bundle": "^6.4|^7.0",
  8386. "symfony/ux-twig-component": "^2.21",
  8387. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  8388. },
  8389. "type": "symfony-bundle",
  8390. "extra": {
  8391. "thanks": {
  8392. "name": "symfony/ux",
  8393. "url": "https://github.com/symfony/ux"
  8394. }
  8395. },
  8396. "autoload": {
  8397. "psr-4": {
  8398. "Symfony\\UX\\Turbo\\": "src/"
  8399. }
  8400. },
  8401. "notification-url": "https://packagist.org/downloads/",
  8402. "license": [
  8403. "MIT"
  8404. ],
  8405. "authors": [
  8406. {
  8407. "name": "Kévin Dunglas",
  8408. "email": "kevin@dunglas.fr"
  8409. },
  8410. {
  8411. "name": "Symfony Community",
  8412. "homepage": "https://symfony.com/contributors"
  8413. }
  8414. ],
  8415. "description": "Hotwire Turbo integration for Symfony",
  8416. "homepage": "https://symfony.com",
  8417. "keywords": [
  8418. "hotwire",
  8419. "javascript",
  8420. "mercure",
  8421. "symfony-ux",
  8422. "turbo",
  8423. "turbo-stream"
  8424. ],
  8425. "support": {
  8426. "source": "https://github.com/symfony/ux-turbo/tree/v2.21.0"
  8427. },
  8428. "funding": [
  8429. {
  8430. "url": "https://symfony.com/sponsor",
  8431. "type": "custom"
  8432. },
  8433. {
  8434. "url": "https://github.com/fabpot",
  8435. "type": "github"
  8436. },
  8437. {
  8438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8439. "type": "tidelift"
  8440. }
  8441. ],
  8442. "time": "2024-10-21T19:07:02+00:00"
  8443. },
  8444. {
  8445. "name": "symfony/validator",
  8446. "version": "v7.1.5",
  8447. "source": {
  8448. "type": "git",
  8449. "url": "https://github.com/symfony/validator.git",
  8450. "reference": "e57592782dc2a86997477f28164c51af53512ad8"
  8451. },
  8452. "dist": {
  8453. "type": "zip",
  8454. "url": "https://api.github.com/repos/symfony/validator/zipball/e57592782dc2a86997477f28164c51af53512ad8",
  8455. "reference": "e57592782dc2a86997477f28164c51af53512ad8",
  8456. "shasum": ""
  8457. },
  8458. "require": {
  8459. "php": ">=8.2",
  8460. "symfony/deprecation-contracts": "^2.5|^3",
  8461. "symfony/polyfill-ctype": "~1.8",
  8462. "symfony/polyfill-mbstring": "~1.0",
  8463. "symfony/polyfill-php83": "^1.27",
  8464. "symfony/translation-contracts": "^2.5|^3"
  8465. },
  8466. "conflict": {
  8467. "doctrine/lexer": "<1.1",
  8468. "symfony/dependency-injection": "<6.4",
  8469. "symfony/doctrine-bridge": "<7.0",
  8470. "symfony/expression-language": "<6.4",
  8471. "symfony/http-kernel": "<6.4",
  8472. "symfony/intl": "<6.4",
  8473. "symfony/property-info": "<6.4",
  8474. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  8475. "symfony/yaml": "<6.4"
  8476. },
  8477. "require-dev": {
  8478. "egulias/email-validator": "^2.1.10|^3|^4",
  8479. "symfony/cache": "^6.4|^7.0",
  8480. "symfony/config": "^6.4|^7.0",
  8481. "symfony/console": "^6.4|^7.0",
  8482. "symfony/dependency-injection": "^6.4|^7.0",
  8483. "symfony/expression-language": "^6.4|^7.0",
  8484. "symfony/finder": "^6.4|^7.0",
  8485. "symfony/http-client": "^6.4|^7.0",
  8486. "symfony/http-foundation": "^6.4|^7.0",
  8487. "symfony/http-kernel": "^6.4|^7.0",
  8488. "symfony/intl": "^6.4|^7.0",
  8489. "symfony/mime": "^6.4|^7.0",
  8490. "symfony/property-access": "^6.4|^7.0",
  8491. "symfony/property-info": "^6.4|^7.0",
  8492. "symfony/translation": "^6.4.3|^7.0.3",
  8493. "symfony/type-info": "^7.1",
  8494. "symfony/yaml": "^6.4|^7.0"
  8495. },
  8496. "type": "library",
  8497. "autoload": {
  8498. "psr-4": {
  8499. "Symfony\\Component\\Validator\\": ""
  8500. },
  8501. "exclude-from-classmap": [
  8502. "/Tests/",
  8503. "/Resources/bin/"
  8504. ]
  8505. },
  8506. "notification-url": "https://packagist.org/downloads/",
  8507. "license": [
  8508. "MIT"
  8509. ],
  8510. "authors": [
  8511. {
  8512. "name": "Fabien Potencier",
  8513. "email": "fabien@symfony.com"
  8514. },
  8515. {
  8516. "name": "Symfony Community",
  8517. "homepage": "https://symfony.com/contributors"
  8518. }
  8519. ],
  8520. "description": "Provides tools to validate values",
  8521. "homepage": "https://symfony.com",
  8522. "support": {
  8523. "source": "https://github.com/symfony/validator/tree/v7.1.5"
  8524. },
  8525. "funding": [
  8526. {
  8527. "url": "https://symfony.com/sponsor",
  8528. "type": "custom"
  8529. },
  8530. {
  8531. "url": "https://github.com/fabpot",
  8532. "type": "github"
  8533. },
  8534. {
  8535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8536. "type": "tidelift"
  8537. }
  8538. ],
  8539. "time": "2024-09-20T08:28:38+00:00"
  8540. },
  8541. {
  8542. "name": "symfony/var-dumper",
  8543. "version": "v7.1.5",
  8544. "source": {
  8545. "type": "git",
  8546. "url": "https://github.com/symfony/var-dumper.git",
  8547. "reference": "e20e03889539fd4e4211e14d2179226c513c010d"
  8548. },
  8549. "dist": {
  8550. "type": "zip",
  8551. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e20e03889539fd4e4211e14d2179226c513c010d",
  8552. "reference": "e20e03889539fd4e4211e14d2179226c513c010d",
  8553. "shasum": ""
  8554. },
  8555. "require": {
  8556. "php": ">=8.2",
  8557. "symfony/polyfill-mbstring": "~1.0"
  8558. },
  8559. "conflict": {
  8560. "symfony/console": "<6.4"
  8561. },
  8562. "require-dev": {
  8563. "ext-iconv": "*",
  8564. "symfony/console": "^6.4|^7.0",
  8565. "symfony/http-kernel": "^6.4|^7.0",
  8566. "symfony/process": "^6.4|^7.0",
  8567. "symfony/uid": "^6.4|^7.0",
  8568. "twig/twig": "^3.0.4"
  8569. },
  8570. "bin": [
  8571. "Resources/bin/var-dump-server"
  8572. ],
  8573. "type": "library",
  8574. "autoload": {
  8575. "files": [
  8576. "Resources/functions/dump.php"
  8577. ],
  8578. "psr-4": {
  8579. "Symfony\\Component\\VarDumper\\": ""
  8580. },
  8581. "exclude-from-classmap": [
  8582. "/Tests/"
  8583. ]
  8584. },
  8585. "notification-url": "https://packagist.org/downloads/",
  8586. "license": [
  8587. "MIT"
  8588. ],
  8589. "authors": [
  8590. {
  8591. "name": "Nicolas Grekas",
  8592. "email": "p@tchwork.com"
  8593. },
  8594. {
  8595. "name": "Symfony Community",
  8596. "homepage": "https://symfony.com/contributors"
  8597. }
  8598. ],
  8599. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8600. "homepage": "https://symfony.com",
  8601. "keywords": [
  8602. "debug",
  8603. "dump"
  8604. ],
  8605. "support": {
  8606. "source": "https://github.com/symfony/var-dumper/tree/v7.1.5"
  8607. },
  8608. "funding": [
  8609. {
  8610. "url": "https://symfony.com/sponsor",
  8611. "type": "custom"
  8612. },
  8613. {
  8614. "url": "https://github.com/fabpot",
  8615. "type": "github"
  8616. },
  8617. {
  8618. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8619. "type": "tidelift"
  8620. }
  8621. ],
  8622. "time": "2024-09-16T10:07:02+00:00"
  8623. },
  8624. {
  8625. "name": "symfony/var-exporter",
  8626. "version": "v7.1.2",
  8627. "source": {
  8628. "type": "git",
  8629. "url": "https://github.com/symfony/var-exporter.git",
  8630. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c"
  8631. },
  8632. "dist": {
  8633. "type": "zip",
  8634. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b80a669a2264609f07f1667f891dbfca25eba44c",
  8635. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c",
  8636. "shasum": ""
  8637. },
  8638. "require": {
  8639. "php": ">=8.2"
  8640. },
  8641. "require-dev": {
  8642. "symfony/property-access": "^6.4|^7.0",
  8643. "symfony/serializer": "^6.4|^7.0",
  8644. "symfony/var-dumper": "^6.4|^7.0"
  8645. },
  8646. "type": "library",
  8647. "autoload": {
  8648. "psr-4": {
  8649. "Symfony\\Component\\VarExporter\\": ""
  8650. },
  8651. "exclude-from-classmap": [
  8652. "/Tests/"
  8653. ]
  8654. },
  8655. "notification-url": "https://packagist.org/downloads/",
  8656. "license": [
  8657. "MIT"
  8658. ],
  8659. "authors": [
  8660. {
  8661. "name": "Nicolas Grekas",
  8662. "email": "p@tchwork.com"
  8663. },
  8664. {
  8665. "name": "Symfony Community",
  8666. "homepage": "https://symfony.com/contributors"
  8667. }
  8668. ],
  8669. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8670. "homepage": "https://symfony.com",
  8671. "keywords": [
  8672. "clone",
  8673. "construct",
  8674. "export",
  8675. "hydrate",
  8676. "instantiate",
  8677. "lazy-loading",
  8678. "proxy",
  8679. "serialize"
  8680. ],
  8681. "support": {
  8682. "source": "https://github.com/symfony/var-exporter/tree/v7.1.2"
  8683. },
  8684. "funding": [
  8685. {
  8686. "url": "https://symfony.com/sponsor",
  8687. "type": "custom"
  8688. },
  8689. {
  8690. "url": "https://github.com/fabpot",
  8691. "type": "github"
  8692. },
  8693. {
  8694. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8695. "type": "tidelift"
  8696. }
  8697. ],
  8698. "time": "2024-06-28T08:00:31+00:00"
  8699. },
  8700. {
  8701. "name": "symfony/web-link",
  8702. "version": "v7.1.1",
  8703. "source": {
  8704. "type": "git",
  8705. "url": "https://github.com/symfony/web-link.git",
  8706. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f"
  8707. },
  8708. "dist": {
  8709. "type": "zip",
  8710. "url": "https://api.github.com/repos/symfony/web-link/zipball/63f90aa0054bfd9a091d2f5cf465958f1030638f",
  8711. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f",
  8712. "shasum": ""
  8713. },
  8714. "require": {
  8715. "php": ">=8.2",
  8716. "psr/link": "^1.1|^2.0"
  8717. },
  8718. "conflict": {
  8719. "symfony/http-kernel": "<6.4"
  8720. },
  8721. "provide": {
  8722. "psr/link-implementation": "1.0|2.0"
  8723. },
  8724. "require-dev": {
  8725. "symfony/http-kernel": "^6.4|^7.0"
  8726. },
  8727. "type": "library",
  8728. "autoload": {
  8729. "psr-4": {
  8730. "Symfony\\Component\\WebLink\\": ""
  8731. },
  8732. "exclude-from-classmap": [
  8733. "/Tests/"
  8734. ]
  8735. },
  8736. "notification-url": "https://packagist.org/downloads/",
  8737. "license": [
  8738. "MIT"
  8739. ],
  8740. "authors": [
  8741. {
  8742. "name": "Kévin Dunglas",
  8743. "email": "dunglas@gmail.com"
  8744. },
  8745. {
  8746. "name": "Symfony Community",
  8747. "homepage": "https://symfony.com/contributors"
  8748. }
  8749. ],
  8750. "description": "Manages links between resources",
  8751. "homepage": "https://symfony.com",
  8752. "keywords": [
  8753. "dns-prefetch",
  8754. "http",
  8755. "http2",
  8756. "link",
  8757. "performance",
  8758. "prefetch",
  8759. "preload",
  8760. "prerender",
  8761. "psr13",
  8762. "push"
  8763. ],
  8764. "support": {
  8765. "source": "https://github.com/symfony/web-link/tree/v7.1.1"
  8766. },
  8767. "funding": [
  8768. {
  8769. "url": "https://symfony.com/sponsor",
  8770. "type": "custom"
  8771. },
  8772. {
  8773. "url": "https://github.com/fabpot",
  8774. "type": "github"
  8775. },
  8776. {
  8777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8778. "type": "tidelift"
  8779. }
  8780. ],
  8781. "time": "2024-05-31T14:57:53+00:00"
  8782. },
  8783. {
  8784. "name": "symfony/workflow",
  8785. "version": "v7.1.1",
  8786. "source": {
  8787. "type": "git",
  8788. "url": "https://github.com/symfony/workflow.git",
  8789. "reference": "bc9a36fdd6a6fab9f630bd73b428aa06917e17e8"
  8790. },
  8791. "dist": {
  8792. "type": "zip",
  8793. "url": "https://api.github.com/repos/symfony/workflow/zipball/bc9a36fdd6a6fab9f630bd73b428aa06917e17e8",
  8794. "reference": "bc9a36fdd6a6fab9f630bd73b428aa06917e17e8",
  8795. "shasum": ""
  8796. },
  8797. "require": {
  8798. "php": ">=8.2"
  8799. },
  8800. "conflict": {
  8801. "symfony/event-dispatcher": "<6.4"
  8802. },
  8803. "require-dev": {
  8804. "psr/log": "^1|^2|^3",
  8805. "symfony/dependency-injection": "^6.4|^7.0",
  8806. "symfony/error-handler": "^6.4|^7.0",
  8807. "symfony/event-dispatcher": "^6.4|^7.0",
  8808. "symfony/expression-language": "^6.4|^7.0",
  8809. "symfony/http-kernel": "^6.4|^7.0",
  8810. "symfony/security-core": "^6.4|^7.0",
  8811. "symfony/stopwatch": "^6.4|^7.0",
  8812. "symfony/validator": "^6.4|^7.0"
  8813. },
  8814. "type": "library",
  8815. "autoload": {
  8816. "psr-4": {
  8817. "Symfony\\Component\\Workflow\\": ""
  8818. },
  8819. "exclude-from-classmap": [
  8820. "/Tests/"
  8821. ]
  8822. },
  8823. "notification-url": "https://packagist.org/downloads/",
  8824. "license": [
  8825. "MIT"
  8826. ],
  8827. "authors": [
  8828. {
  8829. "name": "Fabien Potencier",
  8830. "email": "fabien@symfony.com"
  8831. },
  8832. {
  8833. "name": "Grégoire Pineau",
  8834. "email": "lyrixx@lyrixx.info"
  8835. },
  8836. {
  8837. "name": "Symfony Community",
  8838. "homepage": "https://symfony.com/contributors"
  8839. }
  8840. ],
  8841. "description": "Provides tools for managing a workflow or finite state machine",
  8842. "homepage": "https://symfony.com",
  8843. "keywords": [
  8844. "petrinet",
  8845. "place",
  8846. "state",
  8847. "statemachine",
  8848. "transition",
  8849. "workflow"
  8850. ],
  8851. "support": {
  8852. "source": "https://github.com/symfony/workflow/tree/v7.1.1"
  8853. },
  8854. "funding": [
  8855. {
  8856. "url": "https://symfony.com/sponsor",
  8857. "type": "custom"
  8858. },
  8859. {
  8860. "url": "https://github.com/fabpot",
  8861. "type": "github"
  8862. },
  8863. {
  8864. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8865. "type": "tidelift"
  8866. }
  8867. ],
  8868. "time": "2024-05-31T14:57:53+00:00"
  8869. },
  8870. {
  8871. "name": "symfony/yaml",
  8872. "version": "v7.1.5",
  8873. "source": {
  8874. "type": "git",
  8875. "url": "https://github.com/symfony/yaml.git",
  8876. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4"
  8877. },
  8878. "dist": {
  8879. "type": "zip",
  8880. "url": "https://api.github.com/repos/symfony/yaml/zipball/4e561c316e135e053bd758bf3b3eb291d9919de4",
  8881. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4",
  8882. "shasum": ""
  8883. },
  8884. "require": {
  8885. "php": ">=8.2",
  8886. "symfony/polyfill-ctype": "^1.8"
  8887. },
  8888. "conflict": {
  8889. "symfony/console": "<6.4"
  8890. },
  8891. "require-dev": {
  8892. "symfony/console": "^6.4|^7.0"
  8893. },
  8894. "bin": [
  8895. "Resources/bin/yaml-lint"
  8896. ],
  8897. "type": "library",
  8898. "autoload": {
  8899. "psr-4": {
  8900. "Symfony\\Component\\Yaml\\": ""
  8901. },
  8902. "exclude-from-classmap": [
  8903. "/Tests/"
  8904. ]
  8905. },
  8906. "notification-url": "https://packagist.org/downloads/",
  8907. "license": [
  8908. "MIT"
  8909. ],
  8910. "authors": [
  8911. {
  8912. "name": "Fabien Potencier",
  8913. "email": "fabien@symfony.com"
  8914. },
  8915. {
  8916. "name": "Symfony Community",
  8917. "homepage": "https://symfony.com/contributors"
  8918. }
  8919. ],
  8920. "description": "Loads and dumps YAML files",
  8921. "homepage": "https://symfony.com",
  8922. "support": {
  8923. "source": "https://github.com/symfony/yaml/tree/v7.1.5"
  8924. },
  8925. "funding": [
  8926. {
  8927. "url": "https://symfony.com/sponsor",
  8928. "type": "custom"
  8929. },
  8930. {
  8931. "url": "https://github.com/fabpot",
  8932. "type": "github"
  8933. },
  8934. {
  8935. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8936. "type": "tidelift"
  8937. }
  8938. ],
  8939. "time": "2024-09-17T12:49:58+00:00"
  8940. },
  8941. {
  8942. "name": "twig/extra-bundle",
  8943. "version": "v3.13.0",
  8944. "source": {
  8945. "type": "git",
  8946. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8947. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5"
  8948. },
  8949. "dist": {
  8950. "type": "zip",
  8951. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  8952. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  8953. "shasum": ""
  8954. },
  8955. "require": {
  8956. "php": ">=8.0.2",
  8957. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  8958. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  8959. "twig/twig": "^3.0|^4.0"
  8960. },
  8961. "require-dev": {
  8962. "league/commonmark": "^1.0|^2.0",
  8963. "symfony/phpunit-bridge": "^6.4|^7.0",
  8964. "twig/cache-extra": "^3.0",
  8965. "twig/cssinliner-extra": "^3.0",
  8966. "twig/html-extra": "^3.0",
  8967. "twig/inky-extra": "^3.0",
  8968. "twig/intl-extra": "^3.0",
  8969. "twig/markdown-extra": "^3.0",
  8970. "twig/string-extra": "^3.0"
  8971. },
  8972. "type": "symfony-bundle",
  8973. "autoload": {
  8974. "psr-4": {
  8975. "Twig\\Extra\\TwigExtraBundle\\": ""
  8976. },
  8977. "exclude-from-classmap": [
  8978. "/Tests/"
  8979. ]
  8980. },
  8981. "notification-url": "https://packagist.org/downloads/",
  8982. "license": [
  8983. "MIT"
  8984. ],
  8985. "authors": [
  8986. {
  8987. "name": "Fabien Potencier",
  8988. "email": "fabien@symfony.com",
  8989. "homepage": "http://fabien.potencier.org",
  8990. "role": "Lead Developer"
  8991. }
  8992. ],
  8993. "description": "A Symfony bundle for extra Twig extensions",
  8994. "homepage": "https://twig.symfony.com",
  8995. "keywords": [
  8996. "bundle",
  8997. "extra",
  8998. "twig"
  8999. ],
  9000. "support": {
  9001. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.13.0"
  9002. },
  9003. "funding": [
  9004. {
  9005. "url": "https://github.com/fabpot",
  9006. "type": "github"
  9007. },
  9008. {
  9009. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9010. "type": "tidelift"
  9011. }
  9012. ],
  9013. "time": "2024-09-01T20:39:12+00:00"
  9014. },
  9015. {
  9016. "name": "twig/intl-extra",
  9017. "version": "v3.13.0",
  9018. "source": {
  9019. "type": "git",
  9020. "url": "https://github.com/twigphp/intl-extra.git",
  9021. "reference": "1b8d78c5db08bdc61015fd55009d2e84b3aa7e38"
  9022. },
  9023. "dist": {
  9024. "type": "zip",
  9025. "url": "https://api.github.com/repos/twigphp/intl-extra/zipball/1b8d78c5db08bdc61015fd55009d2e84b3aa7e38",
  9026. "reference": "1b8d78c5db08bdc61015fd55009d2e84b3aa7e38",
  9027. "shasum": ""
  9028. },
  9029. "require": {
  9030. "php": ">=8.0.2",
  9031. "symfony/intl": "^5.4|^6.4|^7.0",
  9032. "twig/twig": "^3.13|^4.0"
  9033. },
  9034. "require-dev": {
  9035. "symfony/phpunit-bridge": "^6.4|^7.0"
  9036. },
  9037. "type": "library",
  9038. "autoload": {
  9039. "psr-4": {
  9040. "Twig\\Extra\\Intl\\": ""
  9041. },
  9042. "exclude-from-classmap": [
  9043. "/Tests/"
  9044. ]
  9045. },
  9046. "notification-url": "https://packagist.org/downloads/",
  9047. "license": [
  9048. "MIT"
  9049. ],
  9050. "authors": [
  9051. {
  9052. "name": "Fabien Potencier",
  9053. "email": "fabien@symfony.com",
  9054. "homepage": "http://fabien.potencier.org",
  9055. "role": "Lead Developer"
  9056. }
  9057. ],
  9058. "description": "A Twig extension for Intl",
  9059. "homepage": "https://twig.symfony.com",
  9060. "keywords": [
  9061. "intl",
  9062. "twig"
  9063. ],
  9064. "support": {
  9065. "source": "https://github.com/twigphp/intl-extra/tree/v3.13.0"
  9066. },
  9067. "funding": [
  9068. {
  9069. "url": "https://github.com/fabpot",
  9070. "type": "github"
  9071. },
  9072. {
  9073. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9074. "type": "tidelift"
  9075. }
  9076. ],
  9077. "time": "2024-09-03T13:08:40+00:00"
  9078. },
  9079. {
  9080. "name": "twig/markdown-extra",
  9081. "version": "v3.13.0",
  9082. "source": {
  9083. "type": "git",
  9084. "url": "https://github.com/twigphp/markdown-extra.git",
  9085. "reference": "25f23c02936f8c7157a8413154c06a462c9c20d3"
  9086. },
  9087. "dist": {
  9088. "type": "zip",
  9089. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/25f23c02936f8c7157a8413154c06a462c9c20d3",
  9090. "reference": "25f23c02936f8c7157a8413154c06a462c9c20d3",
  9091. "shasum": ""
  9092. },
  9093. "require": {
  9094. "php": ">=8.0.2",
  9095. "symfony/deprecation-contracts": "^2.5|^3",
  9096. "twig/twig": "^3.13|^4.0"
  9097. },
  9098. "require-dev": {
  9099. "erusev/parsedown": "^1.7",
  9100. "league/commonmark": "^1.0|^2.0",
  9101. "league/html-to-markdown": "^4.8|^5.0",
  9102. "michelf/php-markdown": "^1.8|^2.0",
  9103. "symfony/phpunit-bridge": "^6.4|^7.0"
  9104. },
  9105. "type": "library",
  9106. "autoload": {
  9107. "files": [
  9108. "Resources/functions.php"
  9109. ],
  9110. "psr-4": {
  9111. "Twig\\Extra\\Markdown\\": ""
  9112. },
  9113. "exclude-from-classmap": [
  9114. "/Tests/"
  9115. ]
  9116. },
  9117. "notification-url": "https://packagist.org/downloads/",
  9118. "license": [
  9119. "MIT"
  9120. ],
  9121. "authors": [
  9122. {
  9123. "name": "Fabien Potencier",
  9124. "email": "fabien@symfony.com",
  9125. "homepage": "http://fabien.potencier.org",
  9126. "role": "Lead Developer"
  9127. }
  9128. ],
  9129. "description": "A Twig extension for Markdown",
  9130. "homepage": "https://twig.symfony.com",
  9131. "keywords": [
  9132. "html",
  9133. "markdown",
  9134. "twig"
  9135. ],
  9136. "support": {
  9137. "source": "https://github.com/twigphp/markdown-extra/tree/v3.13.0"
  9138. },
  9139. "funding": [
  9140. {
  9141. "url": "https://github.com/fabpot",
  9142. "type": "github"
  9143. },
  9144. {
  9145. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9146. "type": "tidelift"
  9147. }
  9148. ],
  9149. "time": "2024-09-03T20:17:35+00:00"
  9150. },
  9151. {
  9152. "name": "twig/twig",
  9153. "version": "v3.14.0",
  9154. "source": {
  9155. "type": "git",
  9156. "url": "https://github.com/twigphp/Twig.git",
  9157. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72"
  9158. },
  9159. "dist": {
  9160. "type": "zip",
  9161. "url": "https://api.github.com/repos/twigphp/Twig/zipball/126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  9162. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  9163. "shasum": ""
  9164. },
  9165. "require": {
  9166. "php": ">=8.0.2",
  9167. "symfony/deprecation-contracts": "^2.5|^3",
  9168. "symfony/polyfill-ctype": "^1.8",
  9169. "symfony/polyfill-mbstring": "^1.3",
  9170. "symfony/polyfill-php81": "^1.29"
  9171. },
  9172. "require-dev": {
  9173. "psr/container": "^1.0|^2.0",
  9174. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  9175. },
  9176. "type": "library",
  9177. "autoload": {
  9178. "files": [
  9179. "src/Resources/core.php",
  9180. "src/Resources/debug.php",
  9181. "src/Resources/escaper.php",
  9182. "src/Resources/string_loader.php"
  9183. ],
  9184. "psr-4": {
  9185. "Twig\\": "src/"
  9186. }
  9187. },
  9188. "notification-url": "https://packagist.org/downloads/",
  9189. "license": [
  9190. "BSD-3-Clause"
  9191. ],
  9192. "authors": [
  9193. {
  9194. "name": "Fabien Potencier",
  9195. "email": "fabien@symfony.com",
  9196. "homepage": "http://fabien.potencier.org",
  9197. "role": "Lead Developer"
  9198. },
  9199. {
  9200. "name": "Twig Team",
  9201. "role": "Contributors"
  9202. },
  9203. {
  9204. "name": "Armin Ronacher",
  9205. "email": "armin.ronacher@active-4.com",
  9206. "role": "Project Founder"
  9207. }
  9208. ],
  9209. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9210. "homepage": "https://twig.symfony.com",
  9211. "keywords": [
  9212. "templating"
  9213. ],
  9214. "support": {
  9215. "issues": "https://github.com/twigphp/Twig/issues",
  9216. "source": "https://github.com/twigphp/Twig/tree/v3.14.0"
  9217. },
  9218. "funding": [
  9219. {
  9220. "url": "https://github.com/fabpot",
  9221. "type": "github"
  9222. },
  9223. {
  9224. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  9225. "type": "tidelift"
  9226. }
  9227. ],
  9228. "time": "2024-09-09T17:55:12+00:00"
  9229. },
  9230. {
  9231. "name": "webmozart/assert",
  9232. "version": "1.11.0",
  9233. "source": {
  9234. "type": "git",
  9235. "url": "https://github.com/webmozarts/assert.git",
  9236. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9237. },
  9238. "dist": {
  9239. "type": "zip",
  9240. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9241. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9242. "shasum": ""
  9243. },
  9244. "require": {
  9245. "ext-ctype": "*",
  9246. "php": "^7.2 || ^8.0"
  9247. },
  9248. "conflict": {
  9249. "phpstan/phpstan": "<0.12.20",
  9250. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9251. },
  9252. "require-dev": {
  9253. "phpunit/phpunit": "^8.5.13"
  9254. },
  9255. "type": "library",
  9256. "extra": {
  9257. "branch-alias": {
  9258. "dev-master": "1.10-dev"
  9259. }
  9260. },
  9261. "autoload": {
  9262. "psr-4": {
  9263. "Webmozart\\Assert\\": "src/"
  9264. }
  9265. },
  9266. "notification-url": "https://packagist.org/downloads/",
  9267. "license": [
  9268. "MIT"
  9269. ],
  9270. "authors": [
  9271. {
  9272. "name": "Bernhard Schussek",
  9273. "email": "bschussek@gmail.com"
  9274. }
  9275. ],
  9276. "description": "Assertions to validate method input/output with nice error messages.",
  9277. "keywords": [
  9278. "assert",
  9279. "check",
  9280. "validate"
  9281. ],
  9282. "support": {
  9283. "issues": "https://github.com/webmozarts/assert/issues",
  9284. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9285. },
  9286. "time": "2022-06-03T18:03:27+00:00"
  9287. }
  9288. ],
  9289. "packages-dev": [
  9290. {
  9291. "name": "fakerphp/faker",
  9292. "version": "v1.23.1",
  9293. "source": {
  9294. "type": "git",
  9295. "url": "https://github.com/FakerPHP/Faker.git",
  9296. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  9297. },
  9298. "dist": {
  9299. "type": "zip",
  9300. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  9301. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  9302. "shasum": ""
  9303. },
  9304. "require": {
  9305. "php": "^7.4 || ^8.0",
  9306. "psr/container": "^1.0 || ^2.0",
  9307. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9308. },
  9309. "conflict": {
  9310. "fzaninotto/faker": "*"
  9311. },
  9312. "require-dev": {
  9313. "bamarni/composer-bin-plugin": "^1.4.1",
  9314. "doctrine/persistence": "^1.3 || ^2.0",
  9315. "ext-intl": "*",
  9316. "phpunit/phpunit": "^9.5.26",
  9317. "symfony/phpunit-bridge": "^5.4.16"
  9318. },
  9319. "suggest": {
  9320. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9321. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9322. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9323. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9324. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9325. },
  9326. "type": "library",
  9327. "autoload": {
  9328. "psr-4": {
  9329. "Faker\\": "src/Faker/"
  9330. }
  9331. },
  9332. "notification-url": "https://packagist.org/downloads/",
  9333. "license": [
  9334. "MIT"
  9335. ],
  9336. "authors": [
  9337. {
  9338. "name": "François Zaninotto"
  9339. }
  9340. ],
  9341. "description": "Faker is a PHP library that generates fake data for you.",
  9342. "keywords": [
  9343. "data",
  9344. "faker",
  9345. "fixtures"
  9346. ],
  9347. "support": {
  9348. "issues": "https://github.com/FakerPHP/Faker/issues",
  9349. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  9350. },
  9351. "time": "2024-01-02T13:46:09+00:00"
  9352. },
  9353. {
  9354. "name": "masterminds/html5",
  9355. "version": "2.9.0",
  9356. "source": {
  9357. "type": "git",
  9358. "url": "https://github.com/Masterminds/html5-php.git",
  9359. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  9360. },
  9361. "dist": {
  9362. "type": "zip",
  9363. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9364. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9365. "shasum": ""
  9366. },
  9367. "require": {
  9368. "ext-dom": "*",
  9369. "php": ">=5.3.0"
  9370. },
  9371. "require-dev": {
  9372. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  9373. },
  9374. "type": "library",
  9375. "extra": {
  9376. "branch-alias": {
  9377. "dev-master": "2.7-dev"
  9378. }
  9379. },
  9380. "autoload": {
  9381. "psr-4": {
  9382. "Masterminds\\": "src"
  9383. }
  9384. },
  9385. "notification-url": "https://packagist.org/downloads/",
  9386. "license": [
  9387. "MIT"
  9388. ],
  9389. "authors": [
  9390. {
  9391. "name": "Matt Butcher",
  9392. "email": "technosophos@gmail.com"
  9393. },
  9394. {
  9395. "name": "Matt Farina",
  9396. "email": "matt@mattfarina.com"
  9397. },
  9398. {
  9399. "name": "Asmir Mustafic",
  9400. "email": "goetas@gmail.com"
  9401. }
  9402. ],
  9403. "description": "An HTML5 parser and serializer.",
  9404. "homepage": "http://masterminds.github.io/html5-php",
  9405. "keywords": [
  9406. "HTML5",
  9407. "dom",
  9408. "html",
  9409. "parser",
  9410. "querypath",
  9411. "serializer",
  9412. "xml"
  9413. ],
  9414. "support": {
  9415. "issues": "https://github.com/Masterminds/html5-php/issues",
  9416. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  9417. },
  9418. "time": "2024-03-31T07:05:07+00:00"
  9419. },
  9420. {
  9421. "name": "myclabs/deep-copy",
  9422. "version": "1.12.0",
  9423. "source": {
  9424. "type": "git",
  9425. "url": "https://github.com/myclabs/DeepCopy.git",
  9426. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  9427. },
  9428. "dist": {
  9429. "type": "zip",
  9430. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  9431. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  9432. "shasum": ""
  9433. },
  9434. "require": {
  9435. "php": "^7.1 || ^8.0"
  9436. },
  9437. "conflict": {
  9438. "doctrine/collections": "<1.6.8",
  9439. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9440. },
  9441. "require-dev": {
  9442. "doctrine/collections": "^1.6.8",
  9443. "doctrine/common": "^2.13.3 || ^3.2.2",
  9444. "phpspec/prophecy": "^1.10",
  9445. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9446. },
  9447. "type": "library",
  9448. "autoload": {
  9449. "files": [
  9450. "src/DeepCopy/deep_copy.php"
  9451. ],
  9452. "psr-4": {
  9453. "DeepCopy\\": "src/DeepCopy/"
  9454. }
  9455. },
  9456. "notification-url": "https://packagist.org/downloads/",
  9457. "license": [
  9458. "MIT"
  9459. ],
  9460. "description": "Create deep copies (clones) of your objects",
  9461. "keywords": [
  9462. "clone",
  9463. "copy",
  9464. "duplicate",
  9465. "object",
  9466. "object graph"
  9467. ],
  9468. "support": {
  9469. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9470. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  9471. },
  9472. "funding": [
  9473. {
  9474. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9475. "type": "tidelift"
  9476. }
  9477. ],
  9478. "time": "2024-06-12T14:39:25+00:00"
  9479. },
  9480. {
  9481. "name": "nikic/php-parser",
  9482. "version": "v5.3.1",
  9483. "source": {
  9484. "type": "git",
  9485. "url": "https://github.com/nikic/PHP-Parser.git",
  9486. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  9487. },
  9488. "dist": {
  9489. "type": "zip",
  9490. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  9491. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  9492. "shasum": ""
  9493. },
  9494. "require": {
  9495. "ext-ctype": "*",
  9496. "ext-json": "*",
  9497. "ext-tokenizer": "*",
  9498. "php": ">=7.4"
  9499. },
  9500. "require-dev": {
  9501. "ircmaxell/php-yacc": "^0.0.7",
  9502. "phpunit/phpunit": "^9.0"
  9503. },
  9504. "bin": [
  9505. "bin/php-parse"
  9506. ],
  9507. "type": "library",
  9508. "extra": {
  9509. "branch-alias": {
  9510. "dev-master": "5.0-dev"
  9511. }
  9512. },
  9513. "autoload": {
  9514. "psr-4": {
  9515. "PhpParser\\": "lib/PhpParser"
  9516. }
  9517. },
  9518. "notification-url": "https://packagist.org/downloads/",
  9519. "license": [
  9520. "BSD-3-Clause"
  9521. ],
  9522. "authors": [
  9523. {
  9524. "name": "Nikita Popov"
  9525. }
  9526. ],
  9527. "description": "A PHP parser written in PHP",
  9528. "keywords": [
  9529. "parser",
  9530. "php"
  9531. ],
  9532. "support": {
  9533. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9534. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  9535. },
  9536. "time": "2024-10-08T18:51:32+00:00"
  9537. },
  9538. {
  9539. "name": "phar-io/manifest",
  9540. "version": "2.0.4",
  9541. "source": {
  9542. "type": "git",
  9543. "url": "https://github.com/phar-io/manifest.git",
  9544. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9545. },
  9546. "dist": {
  9547. "type": "zip",
  9548. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9549. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9550. "shasum": ""
  9551. },
  9552. "require": {
  9553. "ext-dom": "*",
  9554. "ext-libxml": "*",
  9555. "ext-phar": "*",
  9556. "ext-xmlwriter": "*",
  9557. "phar-io/version": "^3.0.1",
  9558. "php": "^7.2 || ^8.0"
  9559. },
  9560. "type": "library",
  9561. "extra": {
  9562. "branch-alias": {
  9563. "dev-master": "2.0.x-dev"
  9564. }
  9565. },
  9566. "autoload": {
  9567. "classmap": [
  9568. "src/"
  9569. ]
  9570. },
  9571. "notification-url": "https://packagist.org/downloads/",
  9572. "license": [
  9573. "BSD-3-Clause"
  9574. ],
  9575. "authors": [
  9576. {
  9577. "name": "Arne Blankerts",
  9578. "email": "arne@blankerts.de",
  9579. "role": "Developer"
  9580. },
  9581. {
  9582. "name": "Sebastian Heuer",
  9583. "email": "sebastian@phpeople.de",
  9584. "role": "Developer"
  9585. },
  9586. {
  9587. "name": "Sebastian Bergmann",
  9588. "email": "sebastian@phpunit.de",
  9589. "role": "Developer"
  9590. }
  9591. ],
  9592. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9593. "support": {
  9594. "issues": "https://github.com/phar-io/manifest/issues",
  9595. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9596. },
  9597. "funding": [
  9598. {
  9599. "url": "https://github.com/theseer",
  9600. "type": "github"
  9601. }
  9602. ],
  9603. "time": "2024-03-03T12:33:53+00:00"
  9604. },
  9605. {
  9606. "name": "phar-io/version",
  9607. "version": "3.2.1",
  9608. "source": {
  9609. "type": "git",
  9610. "url": "https://github.com/phar-io/version.git",
  9611. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9612. },
  9613. "dist": {
  9614. "type": "zip",
  9615. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9616. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9617. "shasum": ""
  9618. },
  9619. "require": {
  9620. "php": "^7.2 || ^8.0"
  9621. },
  9622. "type": "library",
  9623. "autoload": {
  9624. "classmap": [
  9625. "src/"
  9626. ]
  9627. },
  9628. "notification-url": "https://packagist.org/downloads/",
  9629. "license": [
  9630. "BSD-3-Clause"
  9631. ],
  9632. "authors": [
  9633. {
  9634. "name": "Arne Blankerts",
  9635. "email": "arne@blankerts.de",
  9636. "role": "Developer"
  9637. },
  9638. {
  9639. "name": "Sebastian Heuer",
  9640. "email": "sebastian@phpeople.de",
  9641. "role": "Developer"
  9642. },
  9643. {
  9644. "name": "Sebastian Bergmann",
  9645. "email": "sebastian@phpunit.de",
  9646. "role": "Developer"
  9647. }
  9648. ],
  9649. "description": "Library for handling version information and constraints",
  9650. "support": {
  9651. "issues": "https://github.com/phar-io/version/issues",
  9652. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9653. },
  9654. "time": "2022-02-21T01:04:05+00:00"
  9655. },
  9656. {
  9657. "name": "phpunit/php-code-coverage",
  9658. "version": "9.2.32",
  9659. "source": {
  9660. "type": "git",
  9661. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9662. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  9663. },
  9664. "dist": {
  9665. "type": "zip",
  9666. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9667. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9668. "shasum": ""
  9669. },
  9670. "require": {
  9671. "ext-dom": "*",
  9672. "ext-libxml": "*",
  9673. "ext-xmlwriter": "*",
  9674. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9675. "php": ">=7.3",
  9676. "phpunit/php-file-iterator": "^3.0.6",
  9677. "phpunit/php-text-template": "^2.0.4",
  9678. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  9679. "sebastian/complexity": "^2.0.3",
  9680. "sebastian/environment": "^5.1.5",
  9681. "sebastian/lines-of-code": "^1.0.4",
  9682. "sebastian/version": "^3.0.2",
  9683. "theseer/tokenizer": "^1.2.3"
  9684. },
  9685. "require-dev": {
  9686. "phpunit/phpunit": "^9.6"
  9687. },
  9688. "suggest": {
  9689. "ext-pcov": "PHP extension that provides line coverage",
  9690. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9691. },
  9692. "type": "library",
  9693. "extra": {
  9694. "branch-alias": {
  9695. "dev-main": "9.2.x-dev"
  9696. }
  9697. },
  9698. "autoload": {
  9699. "classmap": [
  9700. "src/"
  9701. ]
  9702. },
  9703. "notification-url": "https://packagist.org/downloads/",
  9704. "license": [
  9705. "BSD-3-Clause"
  9706. ],
  9707. "authors": [
  9708. {
  9709. "name": "Sebastian Bergmann",
  9710. "email": "sebastian@phpunit.de",
  9711. "role": "lead"
  9712. }
  9713. ],
  9714. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9715. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9716. "keywords": [
  9717. "coverage",
  9718. "testing",
  9719. "xunit"
  9720. ],
  9721. "support": {
  9722. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9723. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9724. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9725. },
  9726. "funding": [
  9727. {
  9728. "url": "https://github.com/sebastianbergmann",
  9729. "type": "github"
  9730. }
  9731. ],
  9732. "time": "2024-08-22T04:23:01+00:00"
  9733. },
  9734. {
  9735. "name": "phpunit/php-file-iterator",
  9736. "version": "3.0.6",
  9737. "source": {
  9738. "type": "git",
  9739. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9740. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9741. },
  9742. "dist": {
  9743. "type": "zip",
  9744. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9745. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9746. "shasum": ""
  9747. },
  9748. "require": {
  9749. "php": ">=7.3"
  9750. },
  9751. "require-dev": {
  9752. "phpunit/phpunit": "^9.3"
  9753. },
  9754. "type": "library",
  9755. "extra": {
  9756. "branch-alias": {
  9757. "dev-master": "3.0-dev"
  9758. }
  9759. },
  9760. "autoload": {
  9761. "classmap": [
  9762. "src/"
  9763. ]
  9764. },
  9765. "notification-url": "https://packagist.org/downloads/",
  9766. "license": [
  9767. "BSD-3-Clause"
  9768. ],
  9769. "authors": [
  9770. {
  9771. "name": "Sebastian Bergmann",
  9772. "email": "sebastian@phpunit.de",
  9773. "role": "lead"
  9774. }
  9775. ],
  9776. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9777. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9778. "keywords": [
  9779. "filesystem",
  9780. "iterator"
  9781. ],
  9782. "support": {
  9783. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9784. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9785. },
  9786. "funding": [
  9787. {
  9788. "url": "https://github.com/sebastianbergmann",
  9789. "type": "github"
  9790. }
  9791. ],
  9792. "time": "2021-12-02T12:48:52+00:00"
  9793. },
  9794. {
  9795. "name": "phpunit/php-invoker",
  9796. "version": "3.1.1",
  9797. "source": {
  9798. "type": "git",
  9799. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9800. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9801. },
  9802. "dist": {
  9803. "type": "zip",
  9804. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9805. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9806. "shasum": ""
  9807. },
  9808. "require": {
  9809. "php": ">=7.3"
  9810. },
  9811. "require-dev": {
  9812. "ext-pcntl": "*",
  9813. "phpunit/phpunit": "^9.3"
  9814. },
  9815. "suggest": {
  9816. "ext-pcntl": "*"
  9817. },
  9818. "type": "library",
  9819. "extra": {
  9820. "branch-alias": {
  9821. "dev-master": "3.1-dev"
  9822. }
  9823. },
  9824. "autoload": {
  9825. "classmap": [
  9826. "src/"
  9827. ]
  9828. },
  9829. "notification-url": "https://packagist.org/downloads/",
  9830. "license": [
  9831. "BSD-3-Clause"
  9832. ],
  9833. "authors": [
  9834. {
  9835. "name": "Sebastian Bergmann",
  9836. "email": "sebastian@phpunit.de",
  9837. "role": "lead"
  9838. }
  9839. ],
  9840. "description": "Invoke callables with a timeout",
  9841. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9842. "keywords": [
  9843. "process"
  9844. ],
  9845. "support": {
  9846. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9847. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9848. },
  9849. "funding": [
  9850. {
  9851. "url": "https://github.com/sebastianbergmann",
  9852. "type": "github"
  9853. }
  9854. ],
  9855. "time": "2020-09-28T05:58:55+00:00"
  9856. },
  9857. {
  9858. "name": "phpunit/php-text-template",
  9859. "version": "2.0.4",
  9860. "source": {
  9861. "type": "git",
  9862. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9863. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9864. },
  9865. "dist": {
  9866. "type": "zip",
  9867. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9868. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  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": "2.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. "role": "lead"
  9897. }
  9898. ],
  9899. "description": "Simple template engine.",
  9900. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9901. "keywords": [
  9902. "template"
  9903. ],
  9904. "support": {
  9905. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9906. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9907. },
  9908. "funding": [
  9909. {
  9910. "url": "https://github.com/sebastianbergmann",
  9911. "type": "github"
  9912. }
  9913. ],
  9914. "time": "2020-10-26T05:33:50+00:00"
  9915. },
  9916. {
  9917. "name": "phpunit/php-timer",
  9918. "version": "5.0.3",
  9919. "source": {
  9920. "type": "git",
  9921. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9922. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9923. },
  9924. "dist": {
  9925. "type": "zip",
  9926. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9927. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9928. "shasum": ""
  9929. },
  9930. "require": {
  9931. "php": ">=7.3"
  9932. },
  9933. "require-dev": {
  9934. "phpunit/phpunit": "^9.3"
  9935. },
  9936. "type": "library",
  9937. "extra": {
  9938. "branch-alias": {
  9939. "dev-master": "5.0-dev"
  9940. }
  9941. },
  9942. "autoload": {
  9943. "classmap": [
  9944. "src/"
  9945. ]
  9946. },
  9947. "notification-url": "https://packagist.org/downloads/",
  9948. "license": [
  9949. "BSD-3-Clause"
  9950. ],
  9951. "authors": [
  9952. {
  9953. "name": "Sebastian Bergmann",
  9954. "email": "sebastian@phpunit.de",
  9955. "role": "lead"
  9956. }
  9957. ],
  9958. "description": "Utility class for timing",
  9959. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9960. "keywords": [
  9961. "timer"
  9962. ],
  9963. "support": {
  9964. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9965. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9966. },
  9967. "funding": [
  9968. {
  9969. "url": "https://github.com/sebastianbergmann",
  9970. "type": "github"
  9971. }
  9972. ],
  9973. "time": "2020-10-26T13:16:10+00:00"
  9974. },
  9975. {
  9976. "name": "phpunit/phpunit",
  9977. "version": "9.6.21",
  9978. "source": {
  9979. "type": "git",
  9980. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9981. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa"
  9982. },
  9983. "dist": {
  9984. "type": "zip",
  9985. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  9986. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  9987. "shasum": ""
  9988. },
  9989. "require": {
  9990. "doctrine/instantiator": "^1.5.0 || ^2",
  9991. "ext-dom": "*",
  9992. "ext-json": "*",
  9993. "ext-libxml": "*",
  9994. "ext-mbstring": "*",
  9995. "ext-xml": "*",
  9996. "ext-xmlwriter": "*",
  9997. "myclabs/deep-copy": "^1.12.0",
  9998. "phar-io/manifest": "^2.0.4",
  9999. "phar-io/version": "^3.2.1",
  10000. "php": ">=7.3",
  10001. "phpunit/php-code-coverage": "^9.2.32",
  10002. "phpunit/php-file-iterator": "^3.0.6",
  10003. "phpunit/php-invoker": "^3.1.1",
  10004. "phpunit/php-text-template": "^2.0.4",
  10005. "phpunit/php-timer": "^5.0.3",
  10006. "sebastian/cli-parser": "^1.0.2",
  10007. "sebastian/code-unit": "^1.0.8",
  10008. "sebastian/comparator": "^4.0.8",
  10009. "sebastian/diff": "^4.0.6",
  10010. "sebastian/environment": "^5.1.5",
  10011. "sebastian/exporter": "^4.0.6",
  10012. "sebastian/global-state": "^5.0.7",
  10013. "sebastian/object-enumerator": "^4.0.4",
  10014. "sebastian/resource-operations": "^3.0.4",
  10015. "sebastian/type": "^3.2.1",
  10016. "sebastian/version": "^3.0.2"
  10017. },
  10018. "suggest": {
  10019. "ext-soap": "To be able to generate mocks based on WSDL files",
  10020. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10021. },
  10022. "bin": [
  10023. "phpunit"
  10024. ],
  10025. "type": "library",
  10026. "extra": {
  10027. "branch-alias": {
  10028. "dev-master": "9.6-dev"
  10029. }
  10030. },
  10031. "autoload": {
  10032. "files": [
  10033. "src/Framework/Assert/Functions.php"
  10034. ],
  10035. "classmap": [
  10036. "src/"
  10037. ]
  10038. },
  10039. "notification-url": "https://packagist.org/downloads/",
  10040. "license": [
  10041. "BSD-3-Clause"
  10042. ],
  10043. "authors": [
  10044. {
  10045. "name": "Sebastian Bergmann",
  10046. "email": "sebastian@phpunit.de",
  10047. "role": "lead"
  10048. }
  10049. ],
  10050. "description": "The PHP Unit Testing framework.",
  10051. "homepage": "https://phpunit.de/",
  10052. "keywords": [
  10053. "phpunit",
  10054. "testing",
  10055. "xunit"
  10056. ],
  10057. "support": {
  10058. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10059. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10060. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.21"
  10061. },
  10062. "funding": [
  10063. {
  10064. "url": "https://phpunit.de/sponsors.html",
  10065. "type": "custom"
  10066. },
  10067. {
  10068. "url": "https://github.com/sebastianbergmann",
  10069. "type": "github"
  10070. },
  10071. {
  10072. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10073. "type": "tidelift"
  10074. }
  10075. ],
  10076. "time": "2024-09-19T10:50:18+00:00"
  10077. },
  10078. {
  10079. "name": "sebastian/cli-parser",
  10080. "version": "1.0.2",
  10081. "source": {
  10082. "type": "git",
  10083. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10084. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  10085. },
  10086. "dist": {
  10087. "type": "zip",
  10088. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  10089. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  10090. "shasum": ""
  10091. },
  10092. "require": {
  10093. "php": ">=7.3"
  10094. },
  10095. "require-dev": {
  10096. "phpunit/phpunit": "^9.3"
  10097. },
  10098. "type": "library",
  10099. "extra": {
  10100. "branch-alias": {
  10101. "dev-master": "1.0-dev"
  10102. }
  10103. },
  10104. "autoload": {
  10105. "classmap": [
  10106. "src/"
  10107. ]
  10108. },
  10109. "notification-url": "https://packagist.org/downloads/",
  10110. "license": [
  10111. "BSD-3-Clause"
  10112. ],
  10113. "authors": [
  10114. {
  10115. "name": "Sebastian Bergmann",
  10116. "email": "sebastian@phpunit.de",
  10117. "role": "lead"
  10118. }
  10119. ],
  10120. "description": "Library for parsing CLI options",
  10121. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10122. "support": {
  10123. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10124. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  10125. },
  10126. "funding": [
  10127. {
  10128. "url": "https://github.com/sebastianbergmann",
  10129. "type": "github"
  10130. }
  10131. ],
  10132. "time": "2024-03-02T06:27:43+00:00"
  10133. },
  10134. {
  10135. "name": "sebastian/code-unit",
  10136. "version": "1.0.8",
  10137. "source": {
  10138. "type": "git",
  10139. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10140. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10141. },
  10142. "dist": {
  10143. "type": "zip",
  10144. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10145. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10146. "shasum": ""
  10147. },
  10148. "require": {
  10149. "php": ">=7.3"
  10150. },
  10151. "require-dev": {
  10152. "phpunit/phpunit": "^9.3"
  10153. },
  10154. "type": "library",
  10155. "extra": {
  10156. "branch-alias": {
  10157. "dev-master": "1.0-dev"
  10158. }
  10159. },
  10160. "autoload": {
  10161. "classmap": [
  10162. "src/"
  10163. ]
  10164. },
  10165. "notification-url": "https://packagist.org/downloads/",
  10166. "license": [
  10167. "BSD-3-Clause"
  10168. ],
  10169. "authors": [
  10170. {
  10171. "name": "Sebastian Bergmann",
  10172. "email": "sebastian@phpunit.de",
  10173. "role": "lead"
  10174. }
  10175. ],
  10176. "description": "Collection of value objects that represent the PHP code units",
  10177. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10178. "support": {
  10179. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10180. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10181. },
  10182. "funding": [
  10183. {
  10184. "url": "https://github.com/sebastianbergmann",
  10185. "type": "github"
  10186. }
  10187. ],
  10188. "time": "2020-10-26T13:08:54+00:00"
  10189. },
  10190. {
  10191. "name": "sebastian/code-unit-reverse-lookup",
  10192. "version": "2.0.3",
  10193. "source": {
  10194. "type": "git",
  10195. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10196. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10197. },
  10198. "dist": {
  10199. "type": "zip",
  10200. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10201. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10202. "shasum": ""
  10203. },
  10204. "require": {
  10205. "php": ">=7.3"
  10206. },
  10207. "require-dev": {
  10208. "phpunit/phpunit": "^9.3"
  10209. },
  10210. "type": "library",
  10211. "extra": {
  10212. "branch-alias": {
  10213. "dev-master": "2.0-dev"
  10214. }
  10215. },
  10216. "autoload": {
  10217. "classmap": [
  10218. "src/"
  10219. ]
  10220. },
  10221. "notification-url": "https://packagist.org/downloads/",
  10222. "license": [
  10223. "BSD-3-Clause"
  10224. ],
  10225. "authors": [
  10226. {
  10227. "name": "Sebastian Bergmann",
  10228. "email": "sebastian@phpunit.de"
  10229. }
  10230. ],
  10231. "description": "Looks up which function or method a line of code belongs to",
  10232. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10233. "support": {
  10234. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10235. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10236. },
  10237. "funding": [
  10238. {
  10239. "url": "https://github.com/sebastianbergmann",
  10240. "type": "github"
  10241. }
  10242. ],
  10243. "time": "2020-09-28T05:30:19+00:00"
  10244. },
  10245. {
  10246. "name": "sebastian/comparator",
  10247. "version": "4.0.8",
  10248. "source": {
  10249. "type": "git",
  10250. "url": "https://github.com/sebastianbergmann/comparator.git",
  10251. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  10252. },
  10253. "dist": {
  10254. "type": "zip",
  10255. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  10256. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  10257. "shasum": ""
  10258. },
  10259. "require": {
  10260. "php": ">=7.3",
  10261. "sebastian/diff": "^4.0",
  10262. "sebastian/exporter": "^4.0"
  10263. },
  10264. "require-dev": {
  10265. "phpunit/phpunit": "^9.3"
  10266. },
  10267. "type": "library",
  10268. "extra": {
  10269. "branch-alias": {
  10270. "dev-master": "4.0-dev"
  10271. }
  10272. },
  10273. "autoload": {
  10274. "classmap": [
  10275. "src/"
  10276. ]
  10277. },
  10278. "notification-url": "https://packagist.org/downloads/",
  10279. "license": [
  10280. "BSD-3-Clause"
  10281. ],
  10282. "authors": [
  10283. {
  10284. "name": "Sebastian Bergmann",
  10285. "email": "sebastian@phpunit.de"
  10286. },
  10287. {
  10288. "name": "Jeff Welch",
  10289. "email": "whatthejeff@gmail.com"
  10290. },
  10291. {
  10292. "name": "Volker Dusch",
  10293. "email": "github@wallbash.com"
  10294. },
  10295. {
  10296. "name": "Bernhard Schussek",
  10297. "email": "bschussek@2bepublished.at"
  10298. }
  10299. ],
  10300. "description": "Provides the functionality to compare PHP values for equality",
  10301. "homepage": "https://github.com/sebastianbergmann/comparator",
  10302. "keywords": [
  10303. "comparator",
  10304. "compare",
  10305. "equality"
  10306. ],
  10307. "support": {
  10308. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10309. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  10310. },
  10311. "funding": [
  10312. {
  10313. "url": "https://github.com/sebastianbergmann",
  10314. "type": "github"
  10315. }
  10316. ],
  10317. "time": "2022-09-14T12:41:17+00:00"
  10318. },
  10319. {
  10320. "name": "sebastian/complexity",
  10321. "version": "2.0.3",
  10322. "source": {
  10323. "type": "git",
  10324. "url": "https://github.com/sebastianbergmann/complexity.git",
  10325. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  10326. },
  10327. "dist": {
  10328. "type": "zip",
  10329. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  10330. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  10331. "shasum": ""
  10332. },
  10333. "require": {
  10334. "nikic/php-parser": "^4.18 || ^5.0",
  10335. "php": ">=7.3"
  10336. },
  10337. "require-dev": {
  10338. "phpunit/phpunit": "^9.3"
  10339. },
  10340. "type": "library",
  10341. "extra": {
  10342. "branch-alias": {
  10343. "dev-master": "2.0-dev"
  10344. }
  10345. },
  10346. "autoload": {
  10347. "classmap": [
  10348. "src/"
  10349. ]
  10350. },
  10351. "notification-url": "https://packagist.org/downloads/",
  10352. "license": [
  10353. "BSD-3-Clause"
  10354. ],
  10355. "authors": [
  10356. {
  10357. "name": "Sebastian Bergmann",
  10358. "email": "sebastian@phpunit.de",
  10359. "role": "lead"
  10360. }
  10361. ],
  10362. "description": "Library for calculating the complexity of PHP code units",
  10363. "homepage": "https://github.com/sebastianbergmann/complexity",
  10364. "support": {
  10365. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10366. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  10367. },
  10368. "funding": [
  10369. {
  10370. "url": "https://github.com/sebastianbergmann",
  10371. "type": "github"
  10372. }
  10373. ],
  10374. "time": "2023-12-22T06:19:30+00:00"
  10375. },
  10376. {
  10377. "name": "sebastian/diff",
  10378. "version": "4.0.6",
  10379. "source": {
  10380. "type": "git",
  10381. "url": "https://github.com/sebastianbergmann/diff.git",
  10382. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10383. },
  10384. "dist": {
  10385. "type": "zip",
  10386. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10387. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10388. "shasum": ""
  10389. },
  10390. "require": {
  10391. "php": ">=7.3"
  10392. },
  10393. "require-dev": {
  10394. "phpunit/phpunit": "^9.3",
  10395. "symfony/process": "^4.2 || ^5"
  10396. },
  10397. "type": "library",
  10398. "extra": {
  10399. "branch-alias": {
  10400. "dev-master": "4.0-dev"
  10401. }
  10402. },
  10403. "autoload": {
  10404. "classmap": [
  10405. "src/"
  10406. ]
  10407. },
  10408. "notification-url": "https://packagist.org/downloads/",
  10409. "license": [
  10410. "BSD-3-Clause"
  10411. ],
  10412. "authors": [
  10413. {
  10414. "name": "Sebastian Bergmann",
  10415. "email": "sebastian@phpunit.de"
  10416. },
  10417. {
  10418. "name": "Kore Nordmann",
  10419. "email": "mail@kore-nordmann.de"
  10420. }
  10421. ],
  10422. "description": "Diff implementation",
  10423. "homepage": "https://github.com/sebastianbergmann/diff",
  10424. "keywords": [
  10425. "diff",
  10426. "udiff",
  10427. "unidiff",
  10428. "unified diff"
  10429. ],
  10430. "support": {
  10431. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10432. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10433. },
  10434. "funding": [
  10435. {
  10436. "url": "https://github.com/sebastianbergmann",
  10437. "type": "github"
  10438. }
  10439. ],
  10440. "time": "2024-03-02T06:30:58+00:00"
  10441. },
  10442. {
  10443. "name": "sebastian/environment",
  10444. "version": "5.1.5",
  10445. "source": {
  10446. "type": "git",
  10447. "url": "https://github.com/sebastianbergmann/environment.git",
  10448. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10449. },
  10450. "dist": {
  10451. "type": "zip",
  10452. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10453. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10454. "shasum": ""
  10455. },
  10456. "require": {
  10457. "php": ">=7.3"
  10458. },
  10459. "require-dev": {
  10460. "phpunit/phpunit": "^9.3"
  10461. },
  10462. "suggest": {
  10463. "ext-posix": "*"
  10464. },
  10465. "type": "library",
  10466. "extra": {
  10467. "branch-alias": {
  10468. "dev-master": "5.1-dev"
  10469. }
  10470. },
  10471. "autoload": {
  10472. "classmap": [
  10473. "src/"
  10474. ]
  10475. },
  10476. "notification-url": "https://packagist.org/downloads/",
  10477. "license": [
  10478. "BSD-3-Clause"
  10479. ],
  10480. "authors": [
  10481. {
  10482. "name": "Sebastian Bergmann",
  10483. "email": "sebastian@phpunit.de"
  10484. }
  10485. ],
  10486. "description": "Provides functionality to handle HHVM/PHP environments",
  10487. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10488. "keywords": [
  10489. "Xdebug",
  10490. "environment",
  10491. "hhvm"
  10492. ],
  10493. "support": {
  10494. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10495. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10496. },
  10497. "funding": [
  10498. {
  10499. "url": "https://github.com/sebastianbergmann",
  10500. "type": "github"
  10501. }
  10502. ],
  10503. "time": "2023-02-03T06:03:51+00:00"
  10504. },
  10505. {
  10506. "name": "sebastian/exporter",
  10507. "version": "4.0.6",
  10508. "source": {
  10509. "type": "git",
  10510. "url": "https://github.com/sebastianbergmann/exporter.git",
  10511. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  10512. },
  10513. "dist": {
  10514. "type": "zip",
  10515. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  10516. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  10517. "shasum": ""
  10518. },
  10519. "require": {
  10520. "php": ">=7.3",
  10521. "sebastian/recursion-context": "^4.0"
  10522. },
  10523. "require-dev": {
  10524. "ext-mbstring": "*",
  10525. "phpunit/phpunit": "^9.3"
  10526. },
  10527. "type": "library",
  10528. "extra": {
  10529. "branch-alias": {
  10530. "dev-master": "4.0-dev"
  10531. }
  10532. },
  10533. "autoload": {
  10534. "classmap": [
  10535. "src/"
  10536. ]
  10537. },
  10538. "notification-url": "https://packagist.org/downloads/",
  10539. "license": [
  10540. "BSD-3-Clause"
  10541. ],
  10542. "authors": [
  10543. {
  10544. "name": "Sebastian Bergmann",
  10545. "email": "sebastian@phpunit.de"
  10546. },
  10547. {
  10548. "name": "Jeff Welch",
  10549. "email": "whatthejeff@gmail.com"
  10550. },
  10551. {
  10552. "name": "Volker Dusch",
  10553. "email": "github@wallbash.com"
  10554. },
  10555. {
  10556. "name": "Adam Harvey",
  10557. "email": "aharvey@php.net"
  10558. },
  10559. {
  10560. "name": "Bernhard Schussek",
  10561. "email": "bschussek@gmail.com"
  10562. }
  10563. ],
  10564. "description": "Provides the functionality to export PHP variables for visualization",
  10565. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10566. "keywords": [
  10567. "export",
  10568. "exporter"
  10569. ],
  10570. "support": {
  10571. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10572. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  10573. },
  10574. "funding": [
  10575. {
  10576. "url": "https://github.com/sebastianbergmann",
  10577. "type": "github"
  10578. }
  10579. ],
  10580. "time": "2024-03-02T06:33:00+00:00"
  10581. },
  10582. {
  10583. "name": "sebastian/global-state",
  10584. "version": "5.0.7",
  10585. "source": {
  10586. "type": "git",
  10587. "url": "https://github.com/sebastianbergmann/global-state.git",
  10588. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  10589. },
  10590. "dist": {
  10591. "type": "zip",
  10592. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10593. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10594. "shasum": ""
  10595. },
  10596. "require": {
  10597. "php": ">=7.3",
  10598. "sebastian/object-reflector": "^2.0",
  10599. "sebastian/recursion-context": "^4.0"
  10600. },
  10601. "require-dev": {
  10602. "ext-dom": "*",
  10603. "phpunit/phpunit": "^9.3"
  10604. },
  10605. "suggest": {
  10606. "ext-uopz": "*"
  10607. },
  10608. "type": "library",
  10609. "extra": {
  10610. "branch-alias": {
  10611. "dev-master": "5.0-dev"
  10612. }
  10613. },
  10614. "autoload": {
  10615. "classmap": [
  10616. "src/"
  10617. ]
  10618. },
  10619. "notification-url": "https://packagist.org/downloads/",
  10620. "license": [
  10621. "BSD-3-Clause"
  10622. ],
  10623. "authors": [
  10624. {
  10625. "name": "Sebastian Bergmann",
  10626. "email": "sebastian@phpunit.de"
  10627. }
  10628. ],
  10629. "description": "Snapshotting of global state",
  10630. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10631. "keywords": [
  10632. "global state"
  10633. ],
  10634. "support": {
  10635. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10636. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  10637. },
  10638. "funding": [
  10639. {
  10640. "url": "https://github.com/sebastianbergmann",
  10641. "type": "github"
  10642. }
  10643. ],
  10644. "time": "2024-03-02T06:35:11+00:00"
  10645. },
  10646. {
  10647. "name": "sebastian/lines-of-code",
  10648. "version": "1.0.4",
  10649. "source": {
  10650. "type": "git",
  10651. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10652. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10653. },
  10654. "dist": {
  10655. "type": "zip",
  10656. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10657. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10658. "shasum": ""
  10659. },
  10660. "require": {
  10661. "nikic/php-parser": "^4.18 || ^5.0",
  10662. "php": ">=7.3"
  10663. },
  10664. "require-dev": {
  10665. "phpunit/phpunit": "^9.3"
  10666. },
  10667. "type": "library",
  10668. "extra": {
  10669. "branch-alias": {
  10670. "dev-master": "1.0-dev"
  10671. }
  10672. },
  10673. "autoload": {
  10674. "classmap": [
  10675. "src/"
  10676. ]
  10677. },
  10678. "notification-url": "https://packagist.org/downloads/",
  10679. "license": [
  10680. "BSD-3-Clause"
  10681. ],
  10682. "authors": [
  10683. {
  10684. "name": "Sebastian Bergmann",
  10685. "email": "sebastian@phpunit.de",
  10686. "role": "lead"
  10687. }
  10688. ],
  10689. "description": "Library for counting the lines of code in PHP source code",
  10690. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10691. "support": {
  10692. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10693. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10694. },
  10695. "funding": [
  10696. {
  10697. "url": "https://github.com/sebastianbergmann",
  10698. "type": "github"
  10699. }
  10700. ],
  10701. "time": "2023-12-22T06:20:34+00:00"
  10702. },
  10703. {
  10704. "name": "sebastian/object-enumerator",
  10705. "version": "4.0.4",
  10706. "source": {
  10707. "type": "git",
  10708. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10709. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10710. },
  10711. "dist": {
  10712. "type": "zip",
  10713. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10714. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10715. "shasum": ""
  10716. },
  10717. "require": {
  10718. "php": ">=7.3",
  10719. "sebastian/object-reflector": "^2.0",
  10720. "sebastian/recursion-context": "^4.0"
  10721. },
  10722. "require-dev": {
  10723. "phpunit/phpunit": "^9.3"
  10724. },
  10725. "type": "library",
  10726. "extra": {
  10727. "branch-alias": {
  10728. "dev-master": "4.0-dev"
  10729. }
  10730. },
  10731. "autoload": {
  10732. "classmap": [
  10733. "src/"
  10734. ]
  10735. },
  10736. "notification-url": "https://packagist.org/downloads/",
  10737. "license": [
  10738. "BSD-3-Clause"
  10739. ],
  10740. "authors": [
  10741. {
  10742. "name": "Sebastian Bergmann",
  10743. "email": "sebastian@phpunit.de"
  10744. }
  10745. ],
  10746. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10747. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10748. "support": {
  10749. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10750. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10751. },
  10752. "funding": [
  10753. {
  10754. "url": "https://github.com/sebastianbergmann",
  10755. "type": "github"
  10756. }
  10757. ],
  10758. "time": "2020-10-26T13:12:34+00:00"
  10759. },
  10760. {
  10761. "name": "sebastian/object-reflector",
  10762. "version": "2.0.4",
  10763. "source": {
  10764. "type": "git",
  10765. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10766. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10767. },
  10768. "dist": {
  10769. "type": "zip",
  10770. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10771. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10772. "shasum": ""
  10773. },
  10774. "require": {
  10775. "php": ">=7.3"
  10776. },
  10777. "require-dev": {
  10778. "phpunit/phpunit": "^9.3"
  10779. },
  10780. "type": "library",
  10781. "extra": {
  10782. "branch-alias": {
  10783. "dev-master": "2.0-dev"
  10784. }
  10785. },
  10786. "autoload": {
  10787. "classmap": [
  10788. "src/"
  10789. ]
  10790. },
  10791. "notification-url": "https://packagist.org/downloads/",
  10792. "license": [
  10793. "BSD-3-Clause"
  10794. ],
  10795. "authors": [
  10796. {
  10797. "name": "Sebastian Bergmann",
  10798. "email": "sebastian@phpunit.de"
  10799. }
  10800. ],
  10801. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10802. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10803. "support": {
  10804. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10805. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10806. },
  10807. "funding": [
  10808. {
  10809. "url": "https://github.com/sebastianbergmann",
  10810. "type": "github"
  10811. }
  10812. ],
  10813. "time": "2020-10-26T13:14:26+00:00"
  10814. },
  10815. {
  10816. "name": "sebastian/recursion-context",
  10817. "version": "4.0.5",
  10818. "source": {
  10819. "type": "git",
  10820. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10821. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10822. },
  10823. "dist": {
  10824. "type": "zip",
  10825. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10826. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10827. "shasum": ""
  10828. },
  10829. "require": {
  10830. "php": ">=7.3"
  10831. },
  10832. "require-dev": {
  10833. "phpunit/phpunit": "^9.3"
  10834. },
  10835. "type": "library",
  10836. "extra": {
  10837. "branch-alias": {
  10838. "dev-master": "4.0-dev"
  10839. }
  10840. },
  10841. "autoload": {
  10842. "classmap": [
  10843. "src/"
  10844. ]
  10845. },
  10846. "notification-url": "https://packagist.org/downloads/",
  10847. "license": [
  10848. "BSD-3-Clause"
  10849. ],
  10850. "authors": [
  10851. {
  10852. "name": "Sebastian Bergmann",
  10853. "email": "sebastian@phpunit.de"
  10854. },
  10855. {
  10856. "name": "Jeff Welch",
  10857. "email": "whatthejeff@gmail.com"
  10858. },
  10859. {
  10860. "name": "Adam Harvey",
  10861. "email": "aharvey@php.net"
  10862. }
  10863. ],
  10864. "description": "Provides functionality to recursively process PHP variables",
  10865. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10866. "support": {
  10867. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10868. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10869. },
  10870. "funding": [
  10871. {
  10872. "url": "https://github.com/sebastianbergmann",
  10873. "type": "github"
  10874. }
  10875. ],
  10876. "time": "2023-02-03T06:07:39+00:00"
  10877. },
  10878. {
  10879. "name": "sebastian/resource-operations",
  10880. "version": "3.0.4",
  10881. "source": {
  10882. "type": "git",
  10883. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10884. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10885. },
  10886. "dist": {
  10887. "type": "zip",
  10888. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10889. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10890. "shasum": ""
  10891. },
  10892. "require": {
  10893. "php": ">=7.3"
  10894. },
  10895. "require-dev": {
  10896. "phpunit/phpunit": "^9.0"
  10897. },
  10898. "type": "library",
  10899. "extra": {
  10900. "branch-alias": {
  10901. "dev-main": "3.0-dev"
  10902. }
  10903. },
  10904. "autoload": {
  10905. "classmap": [
  10906. "src/"
  10907. ]
  10908. },
  10909. "notification-url": "https://packagist.org/downloads/",
  10910. "license": [
  10911. "BSD-3-Clause"
  10912. ],
  10913. "authors": [
  10914. {
  10915. "name": "Sebastian Bergmann",
  10916. "email": "sebastian@phpunit.de"
  10917. }
  10918. ],
  10919. "description": "Provides a list of PHP built-in functions that operate on resources",
  10920. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10921. "support": {
  10922. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10923. },
  10924. "funding": [
  10925. {
  10926. "url": "https://github.com/sebastianbergmann",
  10927. "type": "github"
  10928. }
  10929. ],
  10930. "time": "2024-03-14T16:00:52+00:00"
  10931. },
  10932. {
  10933. "name": "sebastian/type",
  10934. "version": "3.2.1",
  10935. "source": {
  10936. "type": "git",
  10937. "url": "https://github.com/sebastianbergmann/type.git",
  10938. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10939. },
  10940. "dist": {
  10941. "type": "zip",
  10942. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10943. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10944. "shasum": ""
  10945. },
  10946. "require": {
  10947. "php": ">=7.3"
  10948. },
  10949. "require-dev": {
  10950. "phpunit/phpunit": "^9.5"
  10951. },
  10952. "type": "library",
  10953. "extra": {
  10954. "branch-alias": {
  10955. "dev-master": "3.2-dev"
  10956. }
  10957. },
  10958. "autoload": {
  10959. "classmap": [
  10960. "src/"
  10961. ]
  10962. },
  10963. "notification-url": "https://packagist.org/downloads/",
  10964. "license": [
  10965. "BSD-3-Clause"
  10966. ],
  10967. "authors": [
  10968. {
  10969. "name": "Sebastian Bergmann",
  10970. "email": "sebastian@phpunit.de",
  10971. "role": "lead"
  10972. }
  10973. ],
  10974. "description": "Collection of value objects that represent the types of the PHP type system",
  10975. "homepage": "https://github.com/sebastianbergmann/type",
  10976. "support": {
  10977. "issues": "https://github.com/sebastianbergmann/type/issues",
  10978. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10979. },
  10980. "funding": [
  10981. {
  10982. "url": "https://github.com/sebastianbergmann",
  10983. "type": "github"
  10984. }
  10985. ],
  10986. "time": "2023-02-03T06:13:03+00:00"
  10987. },
  10988. {
  10989. "name": "sebastian/version",
  10990. "version": "3.0.2",
  10991. "source": {
  10992. "type": "git",
  10993. "url": "https://github.com/sebastianbergmann/version.git",
  10994. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10995. },
  10996. "dist": {
  10997. "type": "zip",
  10998. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10999. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11000. "shasum": ""
  11001. },
  11002. "require": {
  11003. "php": ">=7.3"
  11004. },
  11005. "type": "library",
  11006. "extra": {
  11007. "branch-alias": {
  11008. "dev-master": "3.0-dev"
  11009. }
  11010. },
  11011. "autoload": {
  11012. "classmap": [
  11013. "src/"
  11014. ]
  11015. },
  11016. "notification-url": "https://packagist.org/downloads/",
  11017. "license": [
  11018. "BSD-3-Clause"
  11019. ],
  11020. "authors": [
  11021. {
  11022. "name": "Sebastian Bergmann",
  11023. "email": "sebastian@phpunit.de",
  11024. "role": "lead"
  11025. }
  11026. ],
  11027. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11028. "homepage": "https://github.com/sebastianbergmann/version",
  11029. "support": {
  11030. "issues": "https://github.com/sebastianbergmann/version/issues",
  11031. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11032. },
  11033. "funding": [
  11034. {
  11035. "url": "https://github.com/sebastianbergmann",
  11036. "type": "github"
  11037. }
  11038. ],
  11039. "time": "2020-09-28T06:39:44+00:00"
  11040. },
  11041. {
  11042. "name": "symfony/browser-kit",
  11043. "version": "v7.1.1",
  11044. "source": {
  11045. "type": "git",
  11046. "url": "https://github.com/symfony/browser-kit.git",
  11047. "reference": "9c13742e3175b5815e272b981876ae329bec2040"
  11048. },
  11049. "dist": {
  11050. "type": "zip",
  11051. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9c13742e3175b5815e272b981876ae329bec2040",
  11052. "reference": "9c13742e3175b5815e272b981876ae329bec2040",
  11053. "shasum": ""
  11054. },
  11055. "require": {
  11056. "php": ">=8.2",
  11057. "symfony/dom-crawler": "^6.4|^7.0"
  11058. },
  11059. "require-dev": {
  11060. "symfony/css-selector": "^6.4|^7.0",
  11061. "symfony/http-client": "^6.4|^7.0",
  11062. "symfony/mime": "^6.4|^7.0",
  11063. "symfony/process": "^6.4|^7.0"
  11064. },
  11065. "type": "library",
  11066. "autoload": {
  11067. "psr-4": {
  11068. "Symfony\\Component\\BrowserKit\\": ""
  11069. },
  11070. "exclude-from-classmap": [
  11071. "/Tests/"
  11072. ]
  11073. },
  11074. "notification-url": "https://packagist.org/downloads/",
  11075. "license": [
  11076. "MIT"
  11077. ],
  11078. "authors": [
  11079. {
  11080. "name": "Fabien Potencier",
  11081. "email": "fabien@symfony.com"
  11082. },
  11083. {
  11084. "name": "Symfony Community",
  11085. "homepage": "https://symfony.com/contributors"
  11086. }
  11087. ],
  11088. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  11089. "homepage": "https://symfony.com",
  11090. "support": {
  11091. "source": "https://github.com/symfony/browser-kit/tree/v7.1.1"
  11092. },
  11093. "funding": [
  11094. {
  11095. "url": "https://symfony.com/sponsor",
  11096. "type": "custom"
  11097. },
  11098. {
  11099. "url": "https://github.com/fabpot",
  11100. "type": "github"
  11101. },
  11102. {
  11103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11104. "type": "tidelift"
  11105. }
  11106. ],
  11107. "time": "2024-05-31T14:57:53+00:00"
  11108. },
  11109. {
  11110. "name": "symfony/css-selector",
  11111. "version": "v7.1.1",
  11112. "source": {
  11113. "type": "git",
  11114. "url": "https://github.com/symfony/css-selector.git",
  11115. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  11116. },
  11117. "dist": {
  11118. "type": "zip",
  11119. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  11120. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  11121. "shasum": ""
  11122. },
  11123. "require": {
  11124. "php": ">=8.2"
  11125. },
  11126. "type": "library",
  11127. "autoload": {
  11128. "psr-4": {
  11129. "Symfony\\Component\\CssSelector\\": ""
  11130. },
  11131. "exclude-from-classmap": [
  11132. "/Tests/"
  11133. ]
  11134. },
  11135. "notification-url": "https://packagist.org/downloads/",
  11136. "license": [
  11137. "MIT"
  11138. ],
  11139. "authors": [
  11140. {
  11141. "name": "Fabien Potencier",
  11142. "email": "fabien@symfony.com"
  11143. },
  11144. {
  11145. "name": "Jean-François Simon",
  11146. "email": "jeanfrancois.simon@sensiolabs.com"
  11147. },
  11148. {
  11149. "name": "Symfony Community",
  11150. "homepage": "https://symfony.com/contributors"
  11151. }
  11152. ],
  11153. "description": "Converts CSS selectors to XPath expressions",
  11154. "homepage": "https://symfony.com",
  11155. "support": {
  11156. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  11157. },
  11158. "funding": [
  11159. {
  11160. "url": "https://symfony.com/sponsor",
  11161. "type": "custom"
  11162. },
  11163. {
  11164. "url": "https://github.com/fabpot",
  11165. "type": "github"
  11166. },
  11167. {
  11168. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11169. "type": "tidelift"
  11170. }
  11171. ],
  11172. "time": "2024-05-31T14:57:53+00:00"
  11173. },
  11174. {
  11175. "name": "symfony/debug-bundle",
  11176. "version": "v7.1.1",
  11177. "source": {
  11178. "type": "git",
  11179. "url": "https://github.com/symfony/debug-bundle.git",
  11180. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f"
  11181. },
  11182. "dist": {
  11183. "type": "zip",
  11184. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/aa024d28ce7ce0c6a16ee57c066838bece92893f",
  11185. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f",
  11186. "shasum": ""
  11187. },
  11188. "require": {
  11189. "ext-xml": "*",
  11190. "php": ">=8.2",
  11191. "symfony/dependency-injection": "^6.4|^7.0",
  11192. "symfony/http-kernel": "^6.4|^7.0",
  11193. "symfony/twig-bridge": "^6.4|^7.0",
  11194. "symfony/var-dumper": "^6.4|^7.0"
  11195. },
  11196. "conflict": {
  11197. "symfony/config": "<6.4",
  11198. "symfony/dependency-injection": "<6.4"
  11199. },
  11200. "require-dev": {
  11201. "symfony/config": "^6.4|^7.0",
  11202. "symfony/web-profiler-bundle": "^6.4|^7.0"
  11203. },
  11204. "type": "symfony-bundle",
  11205. "autoload": {
  11206. "psr-4": {
  11207. "Symfony\\Bundle\\DebugBundle\\": ""
  11208. },
  11209. "exclude-from-classmap": [
  11210. "/Tests/"
  11211. ]
  11212. },
  11213. "notification-url": "https://packagist.org/downloads/",
  11214. "license": [
  11215. "MIT"
  11216. ],
  11217. "authors": [
  11218. {
  11219. "name": "Fabien Potencier",
  11220. "email": "fabien@symfony.com"
  11221. },
  11222. {
  11223. "name": "Symfony Community",
  11224. "homepage": "https://symfony.com/contributors"
  11225. }
  11226. ],
  11227. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  11228. "homepage": "https://symfony.com",
  11229. "support": {
  11230. "source": "https://github.com/symfony/debug-bundle/tree/v7.1.1"
  11231. },
  11232. "funding": [
  11233. {
  11234. "url": "https://symfony.com/sponsor",
  11235. "type": "custom"
  11236. },
  11237. {
  11238. "url": "https://github.com/fabpot",
  11239. "type": "github"
  11240. },
  11241. {
  11242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11243. "type": "tidelift"
  11244. }
  11245. ],
  11246. "time": "2024-05-31T14:55:39+00:00"
  11247. },
  11248. {
  11249. "name": "symfony/dom-crawler",
  11250. "version": "v7.1.5",
  11251. "source": {
  11252. "type": "git",
  11253. "url": "https://github.com/symfony/dom-crawler.git",
  11254. "reference": "b92af238457a7cdd2738f941cd525d76313e8283"
  11255. },
  11256. "dist": {
  11257. "type": "zip",
  11258. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b92af238457a7cdd2738f941cd525d76313e8283",
  11259. "reference": "b92af238457a7cdd2738f941cd525d76313e8283",
  11260. "shasum": ""
  11261. },
  11262. "require": {
  11263. "masterminds/html5": "^2.6",
  11264. "php": ">=8.2",
  11265. "symfony/polyfill-ctype": "~1.8",
  11266. "symfony/polyfill-mbstring": "~1.0"
  11267. },
  11268. "require-dev": {
  11269. "symfony/css-selector": "^6.4|^7.0"
  11270. },
  11271. "type": "library",
  11272. "autoload": {
  11273. "psr-4": {
  11274. "Symfony\\Component\\DomCrawler\\": ""
  11275. },
  11276. "exclude-from-classmap": [
  11277. "/Tests/"
  11278. ]
  11279. },
  11280. "notification-url": "https://packagist.org/downloads/",
  11281. "license": [
  11282. "MIT"
  11283. ],
  11284. "authors": [
  11285. {
  11286. "name": "Fabien Potencier",
  11287. "email": "fabien@symfony.com"
  11288. },
  11289. {
  11290. "name": "Symfony Community",
  11291. "homepage": "https://symfony.com/contributors"
  11292. }
  11293. ],
  11294. "description": "Eases DOM navigation for HTML and XML documents",
  11295. "homepage": "https://symfony.com",
  11296. "support": {
  11297. "source": "https://github.com/symfony/dom-crawler/tree/v7.1.5"
  11298. },
  11299. "funding": [
  11300. {
  11301. "url": "https://symfony.com/sponsor",
  11302. "type": "custom"
  11303. },
  11304. {
  11305. "url": "https://github.com/fabpot",
  11306. "type": "github"
  11307. },
  11308. {
  11309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11310. "type": "tidelift"
  11311. }
  11312. ],
  11313. "time": "2024-09-15T06:48:17+00:00"
  11314. },
  11315. {
  11316. "name": "symfony/maker-bundle",
  11317. "version": "v1.61.0",
  11318. "source": {
  11319. "type": "git",
  11320. "url": "https://github.com/symfony/maker-bundle.git",
  11321. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18"
  11322. },
  11323. "dist": {
  11324. "type": "zip",
  11325. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  11326. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  11327. "shasum": ""
  11328. },
  11329. "require": {
  11330. "doctrine/inflector": "^2.0",
  11331. "nikic/php-parser": "^4.18|^5.0",
  11332. "php": ">=8.1",
  11333. "symfony/config": "^6.4|^7.0",
  11334. "symfony/console": "^6.4|^7.0",
  11335. "symfony/dependency-injection": "^6.4|^7.0",
  11336. "symfony/deprecation-contracts": "^2.2|^3",
  11337. "symfony/filesystem": "^6.4|^7.0",
  11338. "symfony/finder": "^6.4|^7.0",
  11339. "symfony/framework-bundle": "^6.4|^7.0",
  11340. "symfony/http-kernel": "^6.4|^7.0",
  11341. "symfony/process": "^6.4|^7.0"
  11342. },
  11343. "conflict": {
  11344. "doctrine/doctrine-bundle": "<2.10",
  11345. "doctrine/orm": "<2.15"
  11346. },
  11347. "require-dev": {
  11348. "composer/semver": "^3.0",
  11349. "doctrine/doctrine-bundle": "^2.5.0",
  11350. "doctrine/orm": "^2.15|^3",
  11351. "symfony/http-client": "^6.4|^7.0",
  11352. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  11353. "symfony/security-core": "^6.4|^7.0",
  11354. "symfony/yaml": "^6.4|^7.0",
  11355. "twig/twig": "^3.0|^4.x-dev"
  11356. },
  11357. "type": "symfony-bundle",
  11358. "extra": {
  11359. "branch-alias": {
  11360. "dev-main": "1.x-dev"
  11361. }
  11362. },
  11363. "autoload": {
  11364. "psr-4": {
  11365. "Symfony\\Bundle\\MakerBundle\\": "src/"
  11366. }
  11367. },
  11368. "notification-url": "https://packagist.org/downloads/",
  11369. "license": [
  11370. "MIT"
  11371. ],
  11372. "authors": [
  11373. {
  11374. "name": "Symfony Community",
  11375. "homepage": "https://symfony.com/contributors"
  11376. }
  11377. ],
  11378. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  11379. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  11380. "keywords": [
  11381. "code generator",
  11382. "dev",
  11383. "generator",
  11384. "scaffold",
  11385. "scaffolding"
  11386. ],
  11387. "support": {
  11388. "issues": "https://github.com/symfony/maker-bundle/issues",
  11389. "source": "https://github.com/symfony/maker-bundle/tree/v1.61.0"
  11390. },
  11391. "funding": [
  11392. {
  11393. "url": "https://symfony.com/sponsor",
  11394. "type": "custom"
  11395. },
  11396. {
  11397. "url": "https://github.com/fabpot",
  11398. "type": "github"
  11399. },
  11400. {
  11401. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11402. "type": "tidelift"
  11403. }
  11404. ],
  11405. "time": "2024-08-29T22:50:23+00:00"
  11406. },
  11407. {
  11408. "name": "symfony/phpunit-bridge",
  11409. "version": "v7.1.4",
  11410. "source": {
  11411. "type": "git",
  11412. "url": "https://github.com/symfony/phpunit-bridge.git",
  11413. "reference": "e876eb90e32a8fc4c4911d458e09f88d65877d1c"
  11414. },
  11415. "dist": {
  11416. "type": "zip",
  11417. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/e876eb90e32a8fc4c4911d458e09f88d65877d1c",
  11418. "reference": "e876eb90e32a8fc4c4911d458e09f88d65877d1c",
  11419. "shasum": ""
  11420. },
  11421. "require": {
  11422. "php": ">=7.2.5"
  11423. },
  11424. "conflict": {
  11425. "phpunit/phpunit": "<7.5|9.1.2"
  11426. },
  11427. "require-dev": {
  11428. "symfony/deprecation-contracts": "^2.5|^3.0",
  11429. "symfony/error-handler": "^5.4|^6.4|^7.0",
  11430. "symfony/polyfill-php81": "^1.27"
  11431. },
  11432. "bin": [
  11433. "bin/simple-phpunit"
  11434. ],
  11435. "type": "symfony-bridge",
  11436. "extra": {
  11437. "thanks": {
  11438. "name": "phpunit/phpunit",
  11439. "url": "https://github.com/sebastianbergmann/phpunit"
  11440. }
  11441. },
  11442. "autoload": {
  11443. "files": [
  11444. "bootstrap.php"
  11445. ],
  11446. "psr-4": {
  11447. "Symfony\\Bridge\\PhpUnit\\": ""
  11448. },
  11449. "exclude-from-classmap": [
  11450. "/Tests/",
  11451. "/bin/"
  11452. ]
  11453. },
  11454. "notification-url": "https://packagist.org/downloads/",
  11455. "license": [
  11456. "MIT"
  11457. ],
  11458. "authors": [
  11459. {
  11460. "name": "Nicolas Grekas",
  11461. "email": "p@tchwork.com"
  11462. },
  11463. {
  11464. "name": "Symfony Community",
  11465. "homepage": "https://symfony.com/contributors"
  11466. }
  11467. ],
  11468. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  11469. "homepage": "https://symfony.com",
  11470. "support": {
  11471. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.1.4"
  11472. },
  11473. "funding": [
  11474. {
  11475. "url": "https://symfony.com/sponsor",
  11476. "type": "custom"
  11477. },
  11478. {
  11479. "url": "https://github.com/fabpot",
  11480. "type": "github"
  11481. },
  11482. {
  11483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11484. "type": "tidelift"
  11485. }
  11486. ],
  11487. "time": "2024-08-13T14:28:19+00:00"
  11488. },
  11489. {
  11490. "name": "symfony/web-profiler-bundle",
  11491. "version": "v7.1.4",
  11492. "source": {
  11493. "type": "git",
  11494. "url": "https://github.com/symfony/web-profiler-bundle.git",
  11495. "reference": "3cfc775277a8f2dacdd0f72d196bc87b272a763f"
  11496. },
  11497. "dist": {
  11498. "type": "zip",
  11499. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/3cfc775277a8f2dacdd0f72d196bc87b272a763f",
  11500. "reference": "3cfc775277a8f2dacdd0f72d196bc87b272a763f",
  11501. "shasum": ""
  11502. },
  11503. "require": {
  11504. "php": ">=8.2",
  11505. "symfony/config": "^6.4|^7.0",
  11506. "symfony/framework-bundle": "^6.4|^7.0",
  11507. "symfony/http-kernel": "^6.4|^7.0",
  11508. "symfony/routing": "^6.4|^7.0",
  11509. "symfony/twig-bundle": "^6.4|^7.0",
  11510. "twig/twig": "^3.10"
  11511. },
  11512. "conflict": {
  11513. "symfony/form": "<6.4",
  11514. "symfony/mailer": "<6.4",
  11515. "symfony/messenger": "<6.4"
  11516. },
  11517. "require-dev": {
  11518. "symfony/browser-kit": "^6.4|^7.0",
  11519. "symfony/console": "^6.4|^7.0",
  11520. "symfony/css-selector": "^6.4|^7.0",
  11521. "symfony/stopwatch": "^6.4|^7.0"
  11522. },
  11523. "type": "symfony-bundle",
  11524. "autoload": {
  11525. "psr-4": {
  11526. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  11527. },
  11528. "exclude-from-classmap": [
  11529. "/Tests/"
  11530. ]
  11531. },
  11532. "notification-url": "https://packagist.org/downloads/",
  11533. "license": [
  11534. "MIT"
  11535. ],
  11536. "authors": [
  11537. {
  11538. "name": "Fabien Potencier",
  11539. "email": "fabien@symfony.com"
  11540. },
  11541. {
  11542. "name": "Symfony Community",
  11543. "homepage": "https://symfony.com/contributors"
  11544. }
  11545. ],
  11546. "description": "Provides a development tool that gives detailed information about the execution of any request",
  11547. "homepage": "https://symfony.com",
  11548. "keywords": [
  11549. "dev"
  11550. ],
  11551. "support": {
  11552. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.1.4"
  11553. },
  11554. "funding": [
  11555. {
  11556. "url": "https://symfony.com/sponsor",
  11557. "type": "custom"
  11558. },
  11559. {
  11560. "url": "https://github.com/fabpot",
  11561. "type": "github"
  11562. },
  11563. {
  11564. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11565. "type": "tidelift"
  11566. }
  11567. ],
  11568. "time": "2024-08-12T09:59:40+00:00"
  11569. },
  11570. {
  11571. "name": "theseer/tokenizer",
  11572. "version": "1.2.3",
  11573. "source": {
  11574. "type": "git",
  11575. "url": "https://github.com/theseer/tokenizer.git",
  11576. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11577. },
  11578. "dist": {
  11579. "type": "zip",
  11580. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11581. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11582. "shasum": ""
  11583. },
  11584. "require": {
  11585. "ext-dom": "*",
  11586. "ext-tokenizer": "*",
  11587. "ext-xmlwriter": "*",
  11588. "php": "^7.2 || ^8.0"
  11589. },
  11590. "type": "library",
  11591. "autoload": {
  11592. "classmap": [
  11593. "src/"
  11594. ]
  11595. },
  11596. "notification-url": "https://packagist.org/downloads/",
  11597. "license": [
  11598. "BSD-3-Clause"
  11599. ],
  11600. "authors": [
  11601. {
  11602. "name": "Arne Blankerts",
  11603. "email": "arne@blankerts.de",
  11604. "role": "Developer"
  11605. }
  11606. ],
  11607. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11608. "support": {
  11609. "issues": "https://github.com/theseer/tokenizer/issues",
  11610. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11611. },
  11612. "funding": [
  11613. {
  11614. "url": "https://github.com/theseer",
  11615. "type": "github"
  11616. }
  11617. ],
  11618. "time": "2024-03-03T12:36:25+00:00"
  11619. }
  11620. ],
  11621. "aliases": [],
  11622. "minimum-stability": "stable",
  11623. "stability-flags": {},
  11624. "prefer-stable": true,
  11625. "prefer-lowest": false,
  11626. "platform": {
  11627. "php": ">=8.2",
  11628. "ext-ctype": "*",
  11629. "ext-iconv": "*"
  11630. },
  11631. "platform-dev": {},
  11632. "plugin-api-version": "2.6.0"
  11633. }