composer.lock 401 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141
  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": "b2e1b9020b00ca5fe63ab065502c4d2e",
  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": "dflydev/dot-access-data",
  168. "version": "v3.0.3",
  169. "source": {
  170. "type": "git",
  171. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  172. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  173. },
  174. "dist": {
  175. "type": "zip",
  176. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  177. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  178. "shasum": ""
  179. },
  180. "require": {
  181. "php": "^7.1 || ^8.0"
  182. },
  183. "require-dev": {
  184. "phpstan/phpstan": "^0.12.42",
  185. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  186. "scrutinizer/ocular": "1.6.0",
  187. "squizlabs/php_codesniffer": "^3.5",
  188. "vimeo/psalm": "^4.0.0"
  189. },
  190. "type": "library",
  191. "extra": {
  192. "branch-alias": {
  193. "dev-main": "3.x-dev"
  194. }
  195. },
  196. "autoload": {
  197. "psr-4": {
  198. "Dflydev\\DotAccessData\\": "src/"
  199. }
  200. },
  201. "notification-url": "https://packagist.org/downloads/",
  202. "license": [
  203. "MIT"
  204. ],
  205. "authors": [
  206. {
  207. "name": "Dragonfly Development Inc.",
  208. "email": "info@dflydev.com",
  209. "homepage": "http://dflydev.com"
  210. },
  211. {
  212. "name": "Beau Simensen",
  213. "email": "beau@dflydev.com",
  214. "homepage": "http://beausimensen.com"
  215. },
  216. {
  217. "name": "Carlos Frutos",
  218. "email": "carlos@kiwing.it",
  219. "homepage": "https://github.com/cfrutos"
  220. },
  221. {
  222. "name": "Colin O'Dell",
  223. "email": "colinodell@gmail.com",
  224. "homepage": "https://www.colinodell.com"
  225. }
  226. ],
  227. "description": "Given a deep data structure, access data by dot notation.",
  228. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  229. "keywords": [
  230. "access",
  231. "data",
  232. "dot",
  233. "notation"
  234. ],
  235. "support": {
  236. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  237. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  238. },
  239. "time": "2024-07-08T12:26:09+00:00"
  240. },
  241. {
  242. "name": "doctrine/cache",
  243. "version": "2.2.0",
  244. "source": {
  245. "type": "git",
  246. "url": "https://github.com/doctrine/cache.git",
  247. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  248. },
  249. "dist": {
  250. "type": "zip",
  251. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  252. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  253. "shasum": ""
  254. },
  255. "require": {
  256. "php": "~7.1 || ^8.0"
  257. },
  258. "conflict": {
  259. "doctrine/common": ">2.2,<2.4"
  260. },
  261. "require-dev": {
  262. "cache/integration-tests": "dev-master",
  263. "doctrine/coding-standard": "^9",
  264. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  265. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  266. "symfony/cache": "^4.4 || ^5.4 || ^6",
  267. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  268. },
  269. "type": "library",
  270. "autoload": {
  271. "psr-4": {
  272. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Guilherme Blanco",
  282. "email": "guilhermeblanco@gmail.com"
  283. },
  284. {
  285. "name": "Roman Borschel",
  286. "email": "roman@code-factory.org"
  287. },
  288. {
  289. "name": "Benjamin Eberlei",
  290. "email": "kontakt@beberlei.de"
  291. },
  292. {
  293. "name": "Jonathan Wage",
  294. "email": "jonwage@gmail.com"
  295. },
  296. {
  297. "name": "Johannes Schmitt",
  298. "email": "schmittjoh@gmail.com"
  299. }
  300. ],
  301. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  302. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  303. "keywords": [
  304. "abstraction",
  305. "apcu",
  306. "cache",
  307. "caching",
  308. "couchdb",
  309. "memcached",
  310. "php",
  311. "redis",
  312. "xcache"
  313. ],
  314. "support": {
  315. "issues": "https://github.com/doctrine/cache/issues",
  316. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  317. },
  318. "funding": [
  319. {
  320. "url": "https://www.doctrine-project.org/sponsorship.html",
  321. "type": "custom"
  322. },
  323. {
  324. "url": "https://www.patreon.com/phpdoctrine",
  325. "type": "patreon"
  326. },
  327. {
  328. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  329. "type": "tidelift"
  330. }
  331. ],
  332. "time": "2022-05-20T20:07:39+00:00"
  333. },
  334. {
  335. "name": "doctrine/collections",
  336. "version": "2.2.2",
  337. "source": {
  338. "type": "git",
  339. "url": "https://github.com/doctrine/collections.git",
  340. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59"
  341. },
  342. "dist": {
  343. "type": "zip",
  344. "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59",
  345. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  346. "shasum": ""
  347. },
  348. "require": {
  349. "doctrine/deprecations": "^1",
  350. "php": "^8.1"
  351. },
  352. "require-dev": {
  353. "doctrine/coding-standard": "^12",
  354. "ext-json": "*",
  355. "phpstan/phpstan": "^1.8",
  356. "phpstan/phpstan-phpunit": "^1.0",
  357. "phpunit/phpunit": "^10.5",
  358. "vimeo/psalm": "^5.11"
  359. },
  360. "type": "library",
  361. "autoload": {
  362. "psr-4": {
  363. "Doctrine\\Common\\Collections\\": "src"
  364. }
  365. },
  366. "notification-url": "https://packagist.org/downloads/",
  367. "license": [
  368. "MIT"
  369. ],
  370. "authors": [
  371. {
  372. "name": "Guilherme Blanco",
  373. "email": "guilhermeblanco@gmail.com"
  374. },
  375. {
  376. "name": "Roman Borschel",
  377. "email": "roman@code-factory.org"
  378. },
  379. {
  380. "name": "Benjamin Eberlei",
  381. "email": "kontakt@beberlei.de"
  382. },
  383. {
  384. "name": "Jonathan Wage",
  385. "email": "jonwage@gmail.com"
  386. },
  387. {
  388. "name": "Johannes Schmitt",
  389. "email": "schmittjoh@gmail.com"
  390. }
  391. ],
  392. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  393. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  394. "keywords": [
  395. "array",
  396. "collections",
  397. "iterators",
  398. "php"
  399. ],
  400. "support": {
  401. "issues": "https://github.com/doctrine/collections/issues",
  402. "source": "https://github.com/doctrine/collections/tree/2.2.2"
  403. },
  404. "funding": [
  405. {
  406. "url": "https://www.doctrine-project.org/sponsorship.html",
  407. "type": "custom"
  408. },
  409. {
  410. "url": "https://www.patreon.com/phpdoctrine",
  411. "type": "patreon"
  412. },
  413. {
  414. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  415. "type": "tidelift"
  416. }
  417. ],
  418. "time": "2024-04-18T06:56:21+00:00"
  419. },
  420. {
  421. "name": "doctrine/dbal",
  422. "version": "3.9.3",
  423. "source": {
  424. "type": "git",
  425. "url": "https://github.com/doctrine/dbal.git",
  426. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba"
  427. },
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://api.github.com/repos/doctrine/dbal/zipball/61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  431. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  432. "shasum": ""
  433. },
  434. "require": {
  435. "composer-runtime-api": "^2",
  436. "doctrine/cache": "^1.11|^2.0",
  437. "doctrine/deprecations": "^0.5.3|^1",
  438. "doctrine/event-manager": "^1|^2",
  439. "php": "^7.4 || ^8.0",
  440. "psr/cache": "^1|^2|^3",
  441. "psr/log": "^1|^2|^3"
  442. },
  443. "require-dev": {
  444. "doctrine/coding-standard": "12.0.0",
  445. "fig/log-test": "^1",
  446. "jetbrains/phpstorm-stubs": "2023.1",
  447. "phpstan/phpstan": "1.12.6",
  448. "phpstan/phpstan-strict-rules": "^1.6",
  449. "phpunit/phpunit": "9.6.20",
  450. "psalm/plugin-phpunit": "0.18.4",
  451. "slevomat/coding-standard": "8.13.1",
  452. "squizlabs/php_codesniffer": "3.10.2",
  453. "symfony/cache": "^5.4|^6.0|^7.0",
  454. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  455. "vimeo/psalm": "4.30.0"
  456. },
  457. "suggest": {
  458. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  459. },
  460. "bin": [
  461. "bin/doctrine-dbal"
  462. ],
  463. "type": "library",
  464. "autoload": {
  465. "psr-4": {
  466. "Doctrine\\DBAL\\": "src"
  467. }
  468. },
  469. "notification-url": "https://packagist.org/downloads/",
  470. "license": [
  471. "MIT"
  472. ],
  473. "authors": [
  474. {
  475. "name": "Guilherme Blanco",
  476. "email": "guilhermeblanco@gmail.com"
  477. },
  478. {
  479. "name": "Roman Borschel",
  480. "email": "roman@code-factory.org"
  481. },
  482. {
  483. "name": "Benjamin Eberlei",
  484. "email": "kontakt@beberlei.de"
  485. },
  486. {
  487. "name": "Jonathan Wage",
  488. "email": "jonwage@gmail.com"
  489. }
  490. ],
  491. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  492. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  493. "keywords": [
  494. "abstraction",
  495. "database",
  496. "db2",
  497. "dbal",
  498. "mariadb",
  499. "mssql",
  500. "mysql",
  501. "oci8",
  502. "oracle",
  503. "pdo",
  504. "pgsql",
  505. "postgresql",
  506. "queryobject",
  507. "sasql",
  508. "sql",
  509. "sqlite",
  510. "sqlserver",
  511. "sqlsrv"
  512. ],
  513. "support": {
  514. "issues": "https://github.com/doctrine/dbal/issues",
  515. "source": "https://github.com/doctrine/dbal/tree/3.9.3"
  516. },
  517. "funding": [
  518. {
  519. "url": "https://www.doctrine-project.org/sponsorship.html",
  520. "type": "custom"
  521. },
  522. {
  523. "url": "https://www.patreon.com/phpdoctrine",
  524. "type": "patreon"
  525. },
  526. {
  527. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  528. "type": "tidelift"
  529. }
  530. ],
  531. "time": "2024-10-10T17:56:43+00:00"
  532. },
  533. {
  534. "name": "doctrine/deprecations",
  535. "version": "1.1.3",
  536. "source": {
  537. "type": "git",
  538. "url": "https://github.com/doctrine/deprecations.git",
  539. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  540. },
  541. "dist": {
  542. "type": "zip",
  543. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  544. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  545. "shasum": ""
  546. },
  547. "require": {
  548. "php": "^7.1 || ^8.0"
  549. },
  550. "require-dev": {
  551. "doctrine/coding-standard": "^9",
  552. "phpstan/phpstan": "1.4.10 || 1.10.15",
  553. "phpstan/phpstan-phpunit": "^1.0",
  554. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  555. "psalm/plugin-phpunit": "0.18.4",
  556. "psr/log": "^1 || ^2 || ^3",
  557. "vimeo/psalm": "4.30.0 || 5.12.0"
  558. },
  559. "suggest": {
  560. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  561. },
  562. "type": "library",
  563. "autoload": {
  564. "psr-4": {
  565. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  566. }
  567. },
  568. "notification-url": "https://packagist.org/downloads/",
  569. "license": [
  570. "MIT"
  571. ],
  572. "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.",
  573. "homepage": "https://www.doctrine-project.org/",
  574. "support": {
  575. "issues": "https://github.com/doctrine/deprecations/issues",
  576. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  577. },
  578. "time": "2024-01-30T19:34:25+00:00"
  579. },
  580. {
  581. "name": "doctrine/doctrine-bundle",
  582. "version": "2.13.0",
  583. "source": {
  584. "type": "git",
  585. "url": "https://github.com/doctrine/DoctrineBundle.git",
  586. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563"
  587. },
  588. "dist": {
  589. "type": "zip",
  590. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563",
  591. "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563",
  592. "shasum": ""
  593. },
  594. "require": {
  595. "doctrine/cache": "^1.11 || ^2.0",
  596. "doctrine/dbal": "^3.7.0 || ^4.0",
  597. "doctrine/persistence": "^2.2 || ^3",
  598. "doctrine/sql-formatter": "^1.0.1",
  599. "php": "^7.4 || ^8.0",
  600. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  601. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  602. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  603. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  604. "symfony/deprecation-contracts": "^2.1 || ^3",
  605. "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
  606. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  607. "symfony/polyfill-php80": "^1.15",
  608. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  609. },
  610. "conflict": {
  611. "doctrine/annotations": ">=3.0",
  612. "doctrine/orm": "<2.17 || >=4.0",
  613. "twig/twig": "<1.34 || >=2.0 <2.4"
  614. },
  615. "require-dev": {
  616. "doctrine/annotations": "^1 || ^2",
  617. "doctrine/coding-standard": "^12",
  618. "doctrine/deprecations": "^1.0",
  619. "doctrine/orm": "^2.17 || ^3.0",
  620. "friendsofphp/proxy-manager-lts": "^1.0",
  621. "phpunit/phpunit": "^9.5.26",
  622. "psalm/plugin-phpunit": "^0.18.4",
  623. "psalm/plugin-symfony": "^5",
  624. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  625. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  626. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  627. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  628. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  629. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  630. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  631. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  632. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  633. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  634. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  635. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  636. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  637. "vimeo/psalm": "^5.15"
  638. },
  639. "suggest": {
  640. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  641. "ext-pdo": "*",
  642. "symfony/web-profiler-bundle": "To use the data collector."
  643. },
  644. "type": "symfony-bundle",
  645. "autoload": {
  646. "psr-4": {
  647. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  648. }
  649. },
  650. "notification-url": "https://packagist.org/downloads/",
  651. "license": [
  652. "MIT"
  653. ],
  654. "authors": [
  655. {
  656. "name": "Fabien Potencier",
  657. "email": "fabien@symfony.com"
  658. },
  659. {
  660. "name": "Benjamin Eberlei",
  661. "email": "kontakt@beberlei.de"
  662. },
  663. {
  664. "name": "Symfony Community",
  665. "homepage": "https://symfony.com/contributors"
  666. },
  667. {
  668. "name": "Doctrine Project",
  669. "homepage": "https://www.doctrine-project.org/"
  670. }
  671. ],
  672. "description": "Symfony DoctrineBundle",
  673. "homepage": "https://www.doctrine-project.org",
  674. "keywords": [
  675. "database",
  676. "dbal",
  677. "orm",
  678. "persistence"
  679. ],
  680. "support": {
  681. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  682. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0"
  683. },
  684. "funding": [
  685. {
  686. "url": "https://www.doctrine-project.org/sponsorship.html",
  687. "type": "custom"
  688. },
  689. {
  690. "url": "https://www.patreon.com/phpdoctrine",
  691. "type": "patreon"
  692. },
  693. {
  694. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  695. "type": "tidelift"
  696. }
  697. ],
  698. "time": "2024-09-01T09:46:40+00:00"
  699. },
  700. {
  701. "name": "doctrine/doctrine-migrations-bundle",
  702. "version": "3.3.1",
  703. "source": {
  704. "type": "git",
  705. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  706. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
  707. },
  708. "dist": {
  709. "type": "zip",
  710. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  711. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  712. "shasum": ""
  713. },
  714. "require": {
  715. "doctrine/doctrine-bundle": "^2.4",
  716. "doctrine/migrations": "^3.2",
  717. "php": "^7.2|^8.0",
  718. "symfony/deprecation-contracts": "^2.1 || ^3",
  719. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  720. },
  721. "require-dev": {
  722. "composer/semver": "^3.0",
  723. "doctrine/coding-standard": "^12",
  724. "doctrine/orm": "^2.6 || ^3",
  725. "doctrine/persistence": "^2.0 || ^3 ",
  726. "phpstan/phpstan": "^1.4",
  727. "phpstan/phpstan-deprecation-rules": "^1",
  728. "phpstan/phpstan-phpunit": "^1",
  729. "phpstan/phpstan-strict-rules": "^1.1",
  730. "phpstan/phpstan-symfony": "^1.3",
  731. "phpunit/phpunit": "^8.5|^9.5",
  732. "psalm/plugin-phpunit": "^0.18.4",
  733. "psalm/plugin-symfony": "^3 || ^5",
  734. "symfony/phpunit-bridge": "^6.3 || ^7",
  735. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  736. "vimeo/psalm": "^4.30 || ^5.15"
  737. },
  738. "type": "symfony-bundle",
  739. "autoload": {
  740. "psr-4": {
  741. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  742. },
  743. "exclude-from-classmap": [
  744. "/Tests/"
  745. ]
  746. },
  747. "notification-url": "https://packagist.org/downloads/",
  748. "license": [
  749. "MIT"
  750. ],
  751. "authors": [
  752. {
  753. "name": "Fabien Potencier",
  754. "email": "fabien@symfony.com"
  755. },
  756. {
  757. "name": "Doctrine Project",
  758. "homepage": "https://www.doctrine-project.org"
  759. },
  760. {
  761. "name": "Symfony Community",
  762. "homepage": "https://symfony.com/contributors"
  763. }
  764. ],
  765. "description": "Symfony DoctrineMigrationsBundle",
  766. "homepage": "https://www.doctrine-project.org",
  767. "keywords": [
  768. "dbal",
  769. "migrations",
  770. "schema"
  771. ],
  772. "support": {
  773. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  774. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
  775. },
  776. "funding": [
  777. {
  778. "url": "https://www.doctrine-project.org/sponsorship.html",
  779. "type": "custom"
  780. },
  781. {
  782. "url": "https://www.patreon.com/phpdoctrine",
  783. "type": "patreon"
  784. },
  785. {
  786. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  787. "type": "tidelift"
  788. }
  789. ],
  790. "time": "2024-05-14T20:32:18+00:00"
  791. },
  792. {
  793. "name": "doctrine/event-manager",
  794. "version": "2.0.1",
  795. "source": {
  796. "type": "git",
  797. "url": "https://github.com/doctrine/event-manager.git",
  798. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  799. },
  800. "dist": {
  801. "type": "zip",
  802. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  803. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  804. "shasum": ""
  805. },
  806. "require": {
  807. "php": "^8.1"
  808. },
  809. "conflict": {
  810. "doctrine/common": "<2.9"
  811. },
  812. "require-dev": {
  813. "doctrine/coding-standard": "^12",
  814. "phpstan/phpstan": "^1.8.8",
  815. "phpunit/phpunit": "^10.5",
  816. "vimeo/psalm": "^5.24"
  817. },
  818. "type": "library",
  819. "autoload": {
  820. "psr-4": {
  821. "Doctrine\\Common\\": "src"
  822. }
  823. },
  824. "notification-url": "https://packagist.org/downloads/",
  825. "license": [
  826. "MIT"
  827. ],
  828. "authors": [
  829. {
  830. "name": "Guilherme Blanco",
  831. "email": "guilhermeblanco@gmail.com"
  832. },
  833. {
  834. "name": "Roman Borschel",
  835. "email": "roman@code-factory.org"
  836. },
  837. {
  838. "name": "Benjamin Eberlei",
  839. "email": "kontakt@beberlei.de"
  840. },
  841. {
  842. "name": "Jonathan Wage",
  843. "email": "jonwage@gmail.com"
  844. },
  845. {
  846. "name": "Johannes Schmitt",
  847. "email": "schmittjoh@gmail.com"
  848. },
  849. {
  850. "name": "Marco Pivetta",
  851. "email": "ocramius@gmail.com"
  852. }
  853. ],
  854. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  855. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  856. "keywords": [
  857. "event",
  858. "event dispatcher",
  859. "event manager",
  860. "event system",
  861. "events"
  862. ],
  863. "support": {
  864. "issues": "https://github.com/doctrine/event-manager/issues",
  865. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  866. },
  867. "funding": [
  868. {
  869. "url": "https://www.doctrine-project.org/sponsorship.html",
  870. "type": "custom"
  871. },
  872. {
  873. "url": "https://www.patreon.com/phpdoctrine",
  874. "type": "patreon"
  875. },
  876. {
  877. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  878. "type": "tidelift"
  879. }
  880. ],
  881. "time": "2024-05-22T20:47:39+00:00"
  882. },
  883. {
  884. "name": "doctrine/inflector",
  885. "version": "2.0.10",
  886. "source": {
  887. "type": "git",
  888. "url": "https://github.com/doctrine/inflector.git",
  889. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  890. },
  891. "dist": {
  892. "type": "zip",
  893. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  894. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  895. "shasum": ""
  896. },
  897. "require": {
  898. "php": "^7.2 || ^8.0"
  899. },
  900. "require-dev": {
  901. "doctrine/coding-standard": "^11.0",
  902. "phpstan/phpstan": "^1.8",
  903. "phpstan/phpstan-phpunit": "^1.1",
  904. "phpstan/phpstan-strict-rules": "^1.3",
  905. "phpunit/phpunit": "^8.5 || ^9.5",
  906. "vimeo/psalm": "^4.25 || ^5.4"
  907. },
  908. "type": "library",
  909. "autoload": {
  910. "psr-4": {
  911. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  912. }
  913. },
  914. "notification-url": "https://packagist.org/downloads/",
  915. "license": [
  916. "MIT"
  917. ],
  918. "authors": [
  919. {
  920. "name": "Guilherme Blanco",
  921. "email": "guilhermeblanco@gmail.com"
  922. },
  923. {
  924. "name": "Roman Borschel",
  925. "email": "roman@code-factory.org"
  926. },
  927. {
  928. "name": "Benjamin Eberlei",
  929. "email": "kontakt@beberlei.de"
  930. },
  931. {
  932. "name": "Jonathan Wage",
  933. "email": "jonwage@gmail.com"
  934. },
  935. {
  936. "name": "Johannes Schmitt",
  937. "email": "schmittjoh@gmail.com"
  938. }
  939. ],
  940. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  941. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  942. "keywords": [
  943. "inflection",
  944. "inflector",
  945. "lowercase",
  946. "manipulation",
  947. "php",
  948. "plural",
  949. "singular",
  950. "strings",
  951. "uppercase",
  952. "words"
  953. ],
  954. "support": {
  955. "issues": "https://github.com/doctrine/inflector/issues",
  956. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  957. },
  958. "funding": [
  959. {
  960. "url": "https://www.doctrine-project.org/sponsorship.html",
  961. "type": "custom"
  962. },
  963. {
  964. "url": "https://www.patreon.com/phpdoctrine",
  965. "type": "patreon"
  966. },
  967. {
  968. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  969. "type": "tidelift"
  970. }
  971. ],
  972. "time": "2024-02-18T20:23:39+00:00"
  973. },
  974. {
  975. "name": "doctrine/instantiator",
  976. "version": "2.0.0",
  977. "source": {
  978. "type": "git",
  979. "url": "https://github.com/doctrine/instantiator.git",
  980. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  981. },
  982. "dist": {
  983. "type": "zip",
  984. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  985. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  986. "shasum": ""
  987. },
  988. "require": {
  989. "php": "^8.1"
  990. },
  991. "require-dev": {
  992. "doctrine/coding-standard": "^11",
  993. "ext-pdo": "*",
  994. "ext-phar": "*",
  995. "phpbench/phpbench": "^1.2",
  996. "phpstan/phpstan": "^1.9.4",
  997. "phpstan/phpstan-phpunit": "^1.3",
  998. "phpunit/phpunit": "^9.5.27",
  999. "vimeo/psalm": "^5.4"
  1000. },
  1001. "type": "library",
  1002. "autoload": {
  1003. "psr-4": {
  1004. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1005. }
  1006. },
  1007. "notification-url": "https://packagist.org/downloads/",
  1008. "license": [
  1009. "MIT"
  1010. ],
  1011. "authors": [
  1012. {
  1013. "name": "Marco Pivetta",
  1014. "email": "ocramius@gmail.com",
  1015. "homepage": "https://ocramius.github.io/"
  1016. }
  1017. ],
  1018. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1019. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1020. "keywords": [
  1021. "constructor",
  1022. "instantiate"
  1023. ],
  1024. "support": {
  1025. "issues": "https://github.com/doctrine/instantiator/issues",
  1026. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  1027. },
  1028. "funding": [
  1029. {
  1030. "url": "https://www.doctrine-project.org/sponsorship.html",
  1031. "type": "custom"
  1032. },
  1033. {
  1034. "url": "https://www.patreon.com/phpdoctrine",
  1035. "type": "patreon"
  1036. },
  1037. {
  1038. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1039. "type": "tidelift"
  1040. }
  1041. ],
  1042. "time": "2022-12-30T00:23:10+00:00"
  1043. },
  1044. {
  1045. "name": "doctrine/lexer",
  1046. "version": "3.0.1",
  1047. "source": {
  1048. "type": "git",
  1049. "url": "https://github.com/doctrine/lexer.git",
  1050. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1051. },
  1052. "dist": {
  1053. "type": "zip",
  1054. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1055. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1056. "shasum": ""
  1057. },
  1058. "require": {
  1059. "php": "^8.1"
  1060. },
  1061. "require-dev": {
  1062. "doctrine/coding-standard": "^12",
  1063. "phpstan/phpstan": "^1.10",
  1064. "phpunit/phpunit": "^10.5",
  1065. "psalm/plugin-phpunit": "^0.18.3",
  1066. "vimeo/psalm": "^5.21"
  1067. },
  1068. "type": "library",
  1069. "autoload": {
  1070. "psr-4": {
  1071. "Doctrine\\Common\\Lexer\\": "src"
  1072. }
  1073. },
  1074. "notification-url": "https://packagist.org/downloads/",
  1075. "license": [
  1076. "MIT"
  1077. ],
  1078. "authors": [
  1079. {
  1080. "name": "Guilherme Blanco",
  1081. "email": "guilhermeblanco@gmail.com"
  1082. },
  1083. {
  1084. "name": "Roman Borschel",
  1085. "email": "roman@code-factory.org"
  1086. },
  1087. {
  1088. "name": "Johannes Schmitt",
  1089. "email": "schmittjoh@gmail.com"
  1090. }
  1091. ],
  1092. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1093. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1094. "keywords": [
  1095. "annotations",
  1096. "docblock",
  1097. "lexer",
  1098. "parser",
  1099. "php"
  1100. ],
  1101. "support": {
  1102. "issues": "https://github.com/doctrine/lexer/issues",
  1103. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1104. },
  1105. "funding": [
  1106. {
  1107. "url": "https://www.doctrine-project.org/sponsorship.html",
  1108. "type": "custom"
  1109. },
  1110. {
  1111. "url": "https://www.patreon.com/phpdoctrine",
  1112. "type": "patreon"
  1113. },
  1114. {
  1115. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1116. "type": "tidelift"
  1117. }
  1118. ],
  1119. "time": "2024-02-05T11:56:58+00:00"
  1120. },
  1121. {
  1122. "name": "doctrine/migrations",
  1123. "version": "3.8.2",
  1124. "source": {
  1125. "type": "git",
  1126. "url": "https://github.com/doctrine/migrations.git",
  1127. "reference": "5007eb1168691225ac305fe16856755c20860842"
  1128. },
  1129. "dist": {
  1130. "type": "zip",
  1131. "url": "https://api.github.com/repos/doctrine/migrations/zipball/5007eb1168691225ac305fe16856755c20860842",
  1132. "reference": "5007eb1168691225ac305fe16856755c20860842",
  1133. "shasum": ""
  1134. },
  1135. "require": {
  1136. "composer-runtime-api": "^2",
  1137. "doctrine/dbal": "^3.6 || ^4",
  1138. "doctrine/deprecations": "^0.5.3 || ^1",
  1139. "doctrine/event-manager": "^1.2 || ^2.0",
  1140. "php": "^8.1",
  1141. "psr/log": "^1.1.3 || ^2 || ^3",
  1142. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1143. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  1144. "symfony/var-exporter": "^6.2 || ^7.0"
  1145. },
  1146. "conflict": {
  1147. "doctrine/orm": "<2.12 || >=4"
  1148. },
  1149. "require-dev": {
  1150. "doctrine/coding-standard": "^12",
  1151. "doctrine/orm": "^2.13 || ^3",
  1152. "doctrine/persistence": "^2 || ^3",
  1153. "doctrine/sql-formatter": "^1.0",
  1154. "ext-pdo_sqlite": "*",
  1155. "fig/log-test": "^1",
  1156. "phpstan/phpstan": "^1.10",
  1157. "phpstan/phpstan-deprecation-rules": "^1.1",
  1158. "phpstan/phpstan-phpunit": "^1.3",
  1159. "phpstan/phpstan-strict-rules": "^1.4",
  1160. "phpstan/phpstan-symfony": "^1.3",
  1161. "phpunit/phpunit": "^10.3",
  1162. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  1163. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  1164. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  1165. },
  1166. "suggest": {
  1167. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1168. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1169. },
  1170. "bin": [
  1171. "bin/doctrine-migrations"
  1172. ],
  1173. "type": "library",
  1174. "autoload": {
  1175. "psr-4": {
  1176. "Doctrine\\Migrations\\": "src"
  1177. }
  1178. },
  1179. "notification-url": "https://packagist.org/downloads/",
  1180. "license": [
  1181. "MIT"
  1182. ],
  1183. "authors": [
  1184. {
  1185. "name": "Benjamin Eberlei",
  1186. "email": "kontakt@beberlei.de"
  1187. },
  1188. {
  1189. "name": "Jonathan Wage",
  1190. "email": "jonwage@gmail.com"
  1191. },
  1192. {
  1193. "name": "Michael Simonson",
  1194. "email": "contact@mikesimonson.com"
  1195. }
  1196. ],
  1197. "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.",
  1198. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1199. "keywords": [
  1200. "database",
  1201. "dbal",
  1202. "migrations"
  1203. ],
  1204. "support": {
  1205. "issues": "https://github.com/doctrine/migrations/issues",
  1206. "source": "https://github.com/doctrine/migrations/tree/3.8.2"
  1207. },
  1208. "funding": [
  1209. {
  1210. "url": "https://www.doctrine-project.org/sponsorship.html",
  1211. "type": "custom"
  1212. },
  1213. {
  1214. "url": "https://www.patreon.com/phpdoctrine",
  1215. "type": "patreon"
  1216. },
  1217. {
  1218. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1219. "type": "tidelift"
  1220. }
  1221. ],
  1222. "time": "2024-10-10T21:35:27+00:00"
  1223. },
  1224. {
  1225. "name": "doctrine/orm",
  1226. "version": "3.3.0",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/doctrine/orm.git",
  1230. "reference": "69958152e661aa9c14e80d1ee4962863485aa60b"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/doctrine/orm/zipball/69958152e661aa9c14e80d1ee4962863485aa60b",
  1235. "reference": "69958152e661aa9c14e80d1ee4962863485aa60b",
  1236. "shasum": ""
  1237. },
  1238. "require": {
  1239. "composer-runtime-api": "^2",
  1240. "doctrine/collections": "^2.2",
  1241. "doctrine/dbal": "^3.8.2 || ^4",
  1242. "doctrine/deprecations": "^0.5.3 || ^1",
  1243. "doctrine/event-manager": "^1.2 || ^2",
  1244. "doctrine/inflector": "^1.4 || ^2.0",
  1245. "doctrine/instantiator": "^1.3 || ^2",
  1246. "doctrine/lexer": "^3",
  1247. "doctrine/persistence": "^3.3.1",
  1248. "ext-ctype": "*",
  1249. "php": "^8.1",
  1250. "psr/cache": "^1 || ^2 || ^3",
  1251. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1252. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1253. },
  1254. "require-dev": {
  1255. "doctrine/coding-standard": "^12.0",
  1256. "phpbench/phpbench": "^1.0",
  1257. "phpdocumentor/guides-cli": "^1.4",
  1258. "phpstan/extension-installer": "^1.4",
  1259. "phpstan/phpstan": "1.12.6",
  1260. "phpstan/phpstan-deprecation-rules": "^1.2",
  1261. "phpunit/phpunit": "^10.4.0",
  1262. "psr/log": "^1 || ^2 || ^3",
  1263. "squizlabs/php_codesniffer": "3.7.2",
  1264. "symfony/cache": "^5.4 || ^6.2 || ^7.0",
  1265. "vimeo/psalm": "5.24.0"
  1266. },
  1267. "suggest": {
  1268. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1269. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1270. },
  1271. "type": "library",
  1272. "autoload": {
  1273. "psr-4": {
  1274. "Doctrine\\ORM\\": "src"
  1275. }
  1276. },
  1277. "notification-url": "https://packagist.org/downloads/",
  1278. "license": [
  1279. "MIT"
  1280. ],
  1281. "authors": [
  1282. {
  1283. "name": "Guilherme Blanco",
  1284. "email": "guilhermeblanco@gmail.com"
  1285. },
  1286. {
  1287. "name": "Roman Borschel",
  1288. "email": "roman@code-factory.org"
  1289. },
  1290. {
  1291. "name": "Benjamin Eberlei",
  1292. "email": "kontakt@beberlei.de"
  1293. },
  1294. {
  1295. "name": "Jonathan Wage",
  1296. "email": "jonwage@gmail.com"
  1297. },
  1298. {
  1299. "name": "Marco Pivetta",
  1300. "email": "ocramius@gmail.com"
  1301. }
  1302. ],
  1303. "description": "Object-Relational-Mapper for PHP",
  1304. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1305. "keywords": [
  1306. "database",
  1307. "orm"
  1308. ],
  1309. "support": {
  1310. "issues": "https://github.com/doctrine/orm/issues",
  1311. "source": "https://github.com/doctrine/orm/tree/3.3.0"
  1312. },
  1313. "time": "2024-10-12T20:07:18+00:00"
  1314. },
  1315. {
  1316. "name": "doctrine/persistence",
  1317. "version": "3.3.3",
  1318. "source": {
  1319. "type": "git",
  1320. "url": "https://github.com/doctrine/persistence.git",
  1321. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1322. },
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1326. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1327. "shasum": ""
  1328. },
  1329. "require": {
  1330. "doctrine/event-manager": "^1 || ^2",
  1331. "php": "^7.2 || ^8.0",
  1332. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1333. },
  1334. "conflict": {
  1335. "doctrine/common": "<2.10"
  1336. },
  1337. "require-dev": {
  1338. "doctrine/coding-standard": "^12",
  1339. "doctrine/common": "^3.0",
  1340. "phpstan/phpstan": "1.11.1",
  1341. "phpstan/phpstan-phpunit": "^1",
  1342. "phpstan/phpstan-strict-rules": "^1.1",
  1343. "phpunit/phpunit": "^8.5 || ^9.5",
  1344. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1345. "vimeo/psalm": "4.30.0 || 5.24.0"
  1346. },
  1347. "type": "library",
  1348. "autoload": {
  1349. "psr-4": {
  1350. "Doctrine\\Persistence\\": "src/Persistence"
  1351. }
  1352. },
  1353. "notification-url": "https://packagist.org/downloads/",
  1354. "license": [
  1355. "MIT"
  1356. ],
  1357. "authors": [
  1358. {
  1359. "name": "Guilherme Blanco",
  1360. "email": "guilhermeblanco@gmail.com"
  1361. },
  1362. {
  1363. "name": "Roman Borschel",
  1364. "email": "roman@code-factory.org"
  1365. },
  1366. {
  1367. "name": "Benjamin Eberlei",
  1368. "email": "kontakt@beberlei.de"
  1369. },
  1370. {
  1371. "name": "Jonathan Wage",
  1372. "email": "jonwage@gmail.com"
  1373. },
  1374. {
  1375. "name": "Johannes Schmitt",
  1376. "email": "schmittjoh@gmail.com"
  1377. },
  1378. {
  1379. "name": "Marco Pivetta",
  1380. "email": "ocramius@gmail.com"
  1381. }
  1382. ],
  1383. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1384. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1385. "keywords": [
  1386. "mapper",
  1387. "object",
  1388. "odm",
  1389. "orm",
  1390. "persistence"
  1391. ],
  1392. "support": {
  1393. "issues": "https://github.com/doctrine/persistence/issues",
  1394. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1395. },
  1396. "funding": [
  1397. {
  1398. "url": "https://www.doctrine-project.org/sponsorship.html",
  1399. "type": "custom"
  1400. },
  1401. {
  1402. "url": "https://www.patreon.com/phpdoctrine",
  1403. "type": "patreon"
  1404. },
  1405. {
  1406. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1407. "type": "tidelift"
  1408. }
  1409. ],
  1410. "time": "2024-06-20T10:14:30+00:00"
  1411. },
  1412. {
  1413. "name": "doctrine/sql-formatter",
  1414. "version": "1.5.1",
  1415. "source": {
  1416. "type": "git",
  1417. "url": "https://github.com/doctrine/sql-formatter.git",
  1418. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86"
  1419. },
  1420. "dist": {
  1421. "type": "zip",
  1422. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/b784cbde727cf806721451dde40eff4fec3bbe86",
  1423. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86",
  1424. "shasum": ""
  1425. },
  1426. "require": {
  1427. "php": "^8.1"
  1428. },
  1429. "require-dev": {
  1430. "doctrine/coding-standard": "^12",
  1431. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1432. "phpstan/phpstan": "^1.10",
  1433. "phpunit/phpunit": "^10.5",
  1434. "vimeo/psalm": "^5.24"
  1435. },
  1436. "bin": [
  1437. "bin/sql-formatter"
  1438. ],
  1439. "type": "library",
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Doctrine\\SqlFormatter\\": "src"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "Jeremy Dorn",
  1452. "email": "jeremy@jeremydorn.com",
  1453. "homepage": "https://jeremydorn.com/"
  1454. }
  1455. ],
  1456. "description": "a PHP SQL highlighting library",
  1457. "homepage": "https://github.com/doctrine/sql-formatter/",
  1458. "keywords": [
  1459. "highlight",
  1460. "sql"
  1461. ],
  1462. "support": {
  1463. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1464. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.1"
  1465. },
  1466. "time": "2024-10-21T18:21:57+00:00"
  1467. },
  1468. {
  1469. "name": "egulias/email-validator",
  1470. "version": "4.0.2",
  1471. "source": {
  1472. "type": "git",
  1473. "url": "https://github.com/egulias/EmailValidator.git",
  1474. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1475. },
  1476. "dist": {
  1477. "type": "zip",
  1478. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1479. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1480. "shasum": ""
  1481. },
  1482. "require": {
  1483. "doctrine/lexer": "^2.0 || ^3.0",
  1484. "php": ">=8.1",
  1485. "symfony/polyfill-intl-idn": "^1.26"
  1486. },
  1487. "require-dev": {
  1488. "phpunit/phpunit": "^10.2",
  1489. "vimeo/psalm": "^5.12"
  1490. },
  1491. "suggest": {
  1492. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1493. },
  1494. "type": "library",
  1495. "extra": {
  1496. "branch-alias": {
  1497. "dev-master": "4.0.x-dev"
  1498. }
  1499. },
  1500. "autoload": {
  1501. "psr-4": {
  1502. "Egulias\\EmailValidator\\": "src"
  1503. }
  1504. },
  1505. "notification-url": "https://packagist.org/downloads/",
  1506. "license": [
  1507. "MIT"
  1508. ],
  1509. "authors": [
  1510. {
  1511. "name": "Eduardo Gulias Davis"
  1512. }
  1513. ],
  1514. "description": "A library for validating emails against several RFCs",
  1515. "homepage": "https://github.com/egulias/EmailValidator",
  1516. "keywords": [
  1517. "email",
  1518. "emailvalidation",
  1519. "emailvalidator",
  1520. "validation",
  1521. "validator"
  1522. ],
  1523. "support": {
  1524. "issues": "https://github.com/egulias/EmailValidator/issues",
  1525. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1526. },
  1527. "funding": [
  1528. {
  1529. "url": "https://github.com/egulias",
  1530. "type": "github"
  1531. }
  1532. ],
  1533. "time": "2023-10-06T06:47:41+00:00"
  1534. },
  1535. {
  1536. "name": "embed/embed",
  1537. "version": "v4.4.12",
  1538. "source": {
  1539. "type": "git",
  1540. "url": "https://github.com/oscarotero/Embed.git",
  1541. "reference": "b0e1c0496e3707794e96d4eef53ffffd538b850a"
  1542. },
  1543. "dist": {
  1544. "type": "zip",
  1545. "url": "https://api.github.com/repos/oscarotero/Embed/zipball/b0e1c0496e3707794e96d4eef53ffffd538b850a",
  1546. "reference": "b0e1c0496e3707794e96d4eef53ffffd538b850a",
  1547. "shasum": ""
  1548. },
  1549. "require": {
  1550. "composer/ca-bundle": "^1.0",
  1551. "ext-curl": "*",
  1552. "ext-dom": "*",
  1553. "ext-json": "*",
  1554. "ext-mbstring": "*",
  1555. "ml/json-ld": "^1.1",
  1556. "oscarotero/html-parser": "^0.1.4",
  1557. "php": "^7.4|^8",
  1558. "psr/http-client": "^1.0",
  1559. "psr/http-factory": "^1.0",
  1560. "psr/http-message": "^1.0|^2.0"
  1561. },
  1562. "require-dev": {
  1563. "brick/varexporter": "^0.3.1",
  1564. "friendsofphp/php-cs-fixer": "^2.0",
  1565. "nyholm/psr7": "^1.2",
  1566. "oscarotero/php-cs-fixer-config": "^1.0",
  1567. "phpunit/phpunit": "^9.0",
  1568. "symfony/css-selector": "^5.0"
  1569. },
  1570. "suggest": {
  1571. "symfony/css-selector": "If you want to get elements using css selectors"
  1572. },
  1573. "type": "library",
  1574. "autoload": {
  1575. "files": [
  1576. "src/functions.php"
  1577. ],
  1578. "psr-4": {
  1579. "Embed\\": "src"
  1580. }
  1581. },
  1582. "notification-url": "https://packagist.org/downloads/",
  1583. "license": [
  1584. "MIT"
  1585. ],
  1586. "authors": [
  1587. {
  1588. "name": "Oscar Otero",
  1589. "email": "oom@oscarotero.com",
  1590. "homepage": "http://oscarotero.com",
  1591. "role": "Developer"
  1592. }
  1593. ],
  1594. "description": "PHP library to retrieve page info using oembed, opengraph, etc",
  1595. "homepage": "https://github.com/oscarotero/Embed",
  1596. "keywords": [
  1597. "embed",
  1598. "embedly",
  1599. "oembed",
  1600. "opengraph",
  1601. "twitter cards"
  1602. ],
  1603. "support": {
  1604. "email": "oom@oscarotero.com",
  1605. "issues": "https://github.com/oscarotero/Embed/issues",
  1606. "source": "https://github.com/oscarotero/Embed/tree/v4.4.12"
  1607. },
  1608. "funding": [
  1609. {
  1610. "url": "https://paypal.me/oscarotero",
  1611. "type": "custom"
  1612. },
  1613. {
  1614. "url": "https://github.com/oscarotero",
  1615. "type": "github"
  1616. },
  1617. {
  1618. "url": "https://www.patreon.com/misteroom",
  1619. "type": "patreon"
  1620. }
  1621. ],
  1622. "time": "2024-07-24T14:08:11+00:00"
  1623. },
  1624. {
  1625. "name": "laminas/laminas-diactoros",
  1626. "version": "3.5.0",
  1627. "source": {
  1628. "type": "git",
  1629. "url": "https://github.com/laminas/laminas-diactoros.git",
  1630. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2"
  1631. },
  1632. "dist": {
  1633. "type": "zip",
  1634. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/143a16306602ce56b8b092a7914fef03c37f9ed2",
  1635. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2",
  1636. "shasum": ""
  1637. },
  1638. "require": {
  1639. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
  1640. "psr/http-factory": "^1.1",
  1641. "psr/http-message": "^1.1 || ^2.0"
  1642. },
  1643. "conflict": {
  1644. "amphp/amp": "<2.6.4"
  1645. },
  1646. "provide": {
  1647. "psr/http-factory-implementation": "^1.0",
  1648. "psr/http-message-implementation": "^1.1 || ^2.0"
  1649. },
  1650. "require-dev": {
  1651. "ext-curl": "*",
  1652. "ext-dom": "*",
  1653. "ext-gd": "*",
  1654. "ext-libxml": "*",
  1655. "http-interop/http-factory-tests": "^2.2.0",
  1656. "laminas/laminas-coding-standard": "~2.5.0",
  1657. "php-http/psr7-integration-tests": "^1.4.0",
  1658. "phpunit/phpunit": "^10.5.36",
  1659. "psalm/plugin-phpunit": "^0.19.0",
  1660. "vimeo/psalm": "^5.26.1"
  1661. },
  1662. "type": "library",
  1663. "extra": {
  1664. "laminas": {
  1665. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  1666. "module": "Laminas\\Diactoros"
  1667. }
  1668. },
  1669. "autoload": {
  1670. "files": [
  1671. "src/functions/create_uploaded_file.php",
  1672. "src/functions/marshal_headers_from_sapi.php",
  1673. "src/functions/marshal_method_from_sapi.php",
  1674. "src/functions/marshal_protocol_version_from_sapi.php",
  1675. "src/functions/normalize_server.php",
  1676. "src/functions/normalize_uploaded_files.php",
  1677. "src/functions/parse_cookie_header.php"
  1678. ],
  1679. "psr-4": {
  1680. "Laminas\\Diactoros\\": "src/"
  1681. }
  1682. },
  1683. "notification-url": "https://packagist.org/downloads/",
  1684. "license": [
  1685. "BSD-3-Clause"
  1686. ],
  1687. "description": "PSR HTTP Message implementations",
  1688. "homepage": "https://laminas.dev",
  1689. "keywords": [
  1690. "http",
  1691. "laminas",
  1692. "psr",
  1693. "psr-17",
  1694. "psr-7"
  1695. ],
  1696. "support": {
  1697. "chat": "https://laminas.dev/chat",
  1698. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  1699. "forum": "https://discourse.laminas.dev",
  1700. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  1701. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  1702. "source": "https://github.com/laminas/laminas-diactoros"
  1703. },
  1704. "funding": [
  1705. {
  1706. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1707. "type": "community_bridge"
  1708. }
  1709. ],
  1710. "time": "2024-10-14T11:59:49+00:00"
  1711. },
  1712. {
  1713. "name": "league/commonmark",
  1714. "version": "2.5.3",
  1715. "source": {
  1716. "type": "git",
  1717. "url": "https://github.com/thephpleague/commonmark.git",
  1718. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  1719. },
  1720. "dist": {
  1721. "type": "zip",
  1722. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  1723. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  1724. "shasum": ""
  1725. },
  1726. "require": {
  1727. "ext-mbstring": "*",
  1728. "league/config": "^1.1.1",
  1729. "php": "^7.4 || ^8.0",
  1730. "psr/event-dispatcher": "^1.0",
  1731. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1732. "symfony/polyfill-php80": "^1.16"
  1733. },
  1734. "require-dev": {
  1735. "cebe/markdown": "^1.0",
  1736. "commonmark/cmark": "0.31.1",
  1737. "commonmark/commonmark.js": "0.31.1",
  1738. "composer/package-versions-deprecated": "^1.8",
  1739. "embed/embed": "^4.4",
  1740. "erusev/parsedown": "^1.0",
  1741. "ext-json": "*",
  1742. "github/gfm": "0.29.0",
  1743. "michelf/php-markdown": "^1.4 || ^2.0",
  1744. "nyholm/psr7": "^1.5",
  1745. "phpstan/phpstan": "^1.8.2",
  1746. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1747. "scrutinizer/ocular": "^1.8.1",
  1748. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  1749. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  1750. "unleashedtech/php-coding-standard": "^3.1.1",
  1751. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1752. },
  1753. "suggest": {
  1754. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1755. },
  1756. "type": "library",
  1757. "extra": {
  1758. "branch-alias": {
  1759. "dev-main": "2.6-dev"
  1760. }
  1761. },
  1762. "autoload": {
  1763. "psr-4": {
  1764. "League\\CommonMark\\": "src"
  1765. }
  1766. },
  1767. "notification-url": "https://packagist.org/downloads/",
  1768. "license": [
  1769. "BSD-3-Clause"
  1770. ],
  1771. "authors": [
  1772. {
  1773. "name": "Colin O'Dell",
  1774. "email": "colinodell@gmail.com",
  1775. "homepage": "https://www.colinodell.com",
  1776. "role": "Lead Developer"
  1777. }
  1778. ],
  1779. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1780. "homepage": "https://commonmark.thephpleague.com",
  1781. "keywords": [
  1782. "commonmark",
  1783. "flavored",
  1784. "gfm",
  1785. "github",
  1786. "github-flavored",
  1787. "markdown",
  1788. "md",
  1789. "parser"
  1790. ],
  1791. "support": {
  1792. "docs": "https://commonmark.thephpleague.com/",
  1793. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1794. "issues": "https://github.com/thephpleague/commonmark/issues",
  1795. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1796. "source": "https://github.com/thephpleague/commonmark"
  1797. },
  1798. "funding": [
  1799. {
  1800. "url": "https://www.colinodell.com/sponsor",
  1801. "type": "custom"
  1802. },
  1803. {
  1804. "url": "https://www.paypal.me/colinpodell/10.00",
  1805. "type": "custom"
  1806. },
  1807. {
  1808. "url": "https://github.com/colinodell",
  1809. "type": "github"
  1810. },
  1811. {
  1812. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1813. "type": "tidelift"
  1814. }
  1815. ],
  1816. "time": "2024-08-16T11:46:16+00:00"
  1817. },
  1818. {
  1819. "name": "league/config",
  1820. "version": "v1.2.0",
  1821. "source": {
  1822. "type": "git",
  1823. "url": "https://github.com/thephpleague/config.git",
  1824. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1825. },
  1826. "dist": {
  1827. "type": "zip",
  1828. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1829. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1830. "shasum": ""
  1831. },
  1832. "require": {
  1833. "dflydev/dot-access-data": "^3.0.1",
  1834. "nette/schema": "^1.2",
  1835. "php": "^7.4 || ^8.0"
  1836. },
  1837. "require-dev": {
  1838. "phpstan/phpstan": "^1.8.2",
  1839. "phpunit/phpunit": "^9.5.5",
  1840. "scrutinizer/ocular": "^1.8.1",
  1841. "unleashedtech/php-coding-standard": "^3.1",
  1842. "vimeo/psalm": "^4.7.3"
  1843. },
  1844. "type": "library",
  1845. "extra": {
  1846. "branch-alias": {
  1847. "dev-main": "1.2-dev"
  1848. }
  1849. },
  1850. "autoload": {
  1851. "psr-4": {
  1852. "League\\Config\\": "src"
  1853. }
  1854. },
  1855. "notification-url": "https://packagist.org/downloads/",
  1856. "license": [
  1857. "BSD-3-Clause"
  1858. ],
  1859. "authors": [
  1860. {
  1861. "name": "Colin O'Dell",
  1862. "email": "colinodell@gmail.com",
  1863. "homepage": "https://www.colinodell.com",
  1864. "role": "Lead Developer"
  1865. }
  1866. ],
  1867. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1868. "homepage": "https://config.thephpleague.com",
  1869. "keywords": [
  1870. "array",
  1871. "config",
  1872. "configuration",
  1873. "dot",
  1874. "dot-access",
  1875. "nested",
  1876. "schema"
  1877. ],
  1878. "support": {
  1879. "docs": "https://config.thephpleague.com/",
  1880. "issues": "https://github.com/thephpleague/config/issues",
  1881. "rss": "https://github.com/thephpleague/config/releases.atom",
  1882. "source": "https://github.com/thephpleague/config"
  1883. },
  1884. "funding": [
  1885. {
  1886. "url": "https://www.colinodell.com/sponsor",
  1887. "type": "custom"
  1888. },
  1889. {
  1890. "url": "https://www.paypal.me/colinpodell/10.00",
  1891. "type": "custom"
  1892. },
  1893. {
  1894. "url": "https://github.com/colinodell",
  1895. "type": "github"
  1896. }
  1897. ],
  1898. "time": "2022-12-11T20:36:23+00:00"
  1899. },
  1900. {
  1901. "name": "ml/iri",
  1902. "version": "1.1.4",
  1903. "target-dir": "ML/IRI",
  1904. "source": {
  1905. "type": "git",
  1906. "url": "https://github.com/lanthaler/IRI.git",
  1907. "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341"
  1908. },
  1909. "dist": {
  1910. "type": "zip",
  1911. "url": "https://api.github.com/repos/lanthaler/IRI/zipball/cbd44fa913e00ea624241b38cefaa99da8d71341",
  1912. "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341",
  1913. "shasum": ""
  1914. },
  1915. "require": {
  1916. "lib-pcre": ">=4.0",
  1917. "php": ">=5.3.0"
  1918. },
  1919. "type": "library",
  1920. "autoload": {
  1921. "psr-0": {
  1922. "ML\\IRI": ""
  1923. }
  1924. },
  1925. "notification-url": "https://packagist.org/downloads/",
  1926. "license": [
  1927. "MIT"
  1928. ],
  1929. "authors": [
  1930. {
  1931. "name": "Markus Lanthaler",
  1932. "email": "mail@markus-lanthaler.com",
  1933. "homepage": "http://www.markus-lanthaler.com",
  1934. "role": "Developer"
  1935. }
  1936. ],
  1937. "description": "IRI handling for PHP",
  1938. "homepage": "http://www.markus-lanthaler.com",
  1939. "keywords": [
  1940. "URN",
  1941. "iri",
  1942. "uri",
  1943. "url"
  1944. ],
  1945. "support": {
  1946. "issues": "https://github.com/lanthaler/IRI/issues",
  1947. "source": "https://github.com/lanthaler/IRI/tree/master"
  1948. },
  1949. "time": "2014-01-21T13:43:39+00:00"
  1950. },
  1951. {
  1952. "name": "ml/json-ld",
  1953. "version": "1.2.1",
  1954. "source": {
  1955. "type": "git",
  1956. "url": "https://github.com/lanthaler/JsonLD.git",
  1957. "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8"
  1958. },
  1959. "dist": {
  1960. "type": "zip",
  1961. "url": "https://api.github.com/repos/lanthaler/JsonLD/zipball/537e68e87a6bce23e57c575cd5dcac1f67ce25d8",
  1962. "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8",
  1963. "shasum": ""
  1964. },
  1965. "require": {
  1966. "ext-json": "*",
  1967. "ml/iri": "^1.1.1",
  1968. "php": ">=5.3.0"
  1969. },
  1970. "require-dev": {
  1971. "json-ld/tests": "1.0",
  1972. "phpunit/phpunit": "^4"
  1973. },
  1974. "type": "library",
  1975. "autoload": {
  1976. "psr-4": {
  1977. "ML\\JsonLD\\": ""
  1978. }
  1979. },
  1980. "notification-url": "https://packagist.org/downloads/",
  1981. "license": [
  1982. "MIT"
  1983. ],
  1984. "authors": [
  1985. {
  1986. "name": "Markus Lanthaler",
  1987. "email": "mail@markus-lanthaler.com",
  1988. "homepage": "http://www.markus-lanthaler.com",
  1989. "role": "Developer"
  1990. }
  1991. ],
  1992. "description": "JSON-LD Processor for PHP",
  1993. "homepage": "http://www.markus-lanthaler.com",
  1994. "keywords": [
  1995. "JSON-LD",
  1996. "jsonld"
  1997. ],
  1998. "support": {
  1999. "issues": "https://github.com/lanthaler/JsonLD/issues",
  2000. "source": "https://github.com/lanthaler/JsonLD/tree/1.2.1"
  2001. },
  2002. "time": "2022-09-29T08:45:17+00:00"
  2003. },
  2004. {
  2005. "name": "monolog/monolog",
  2006. "version": "3.7.0",
  2007. "source": {
  2008. "type": "git",
  2009. "url": "https://github.com/Seldaek/monolog.git",
  2010. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  2011. },
  2012. "dist": {
  2013. "type": "zip",
  2014. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  2015. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  2016. "shasum": ""
  2017. },
  2018. "require": {
  2019. "php": ">=8.1",
  2020. "psr/log": "^2.0 || ^3.0"
  2021. },
  2022. "provide": {
  2023. "psr/log-implementation": "3.0.0"
  2024. },
  2025. "require-dev": {
  2026. "aws/aws-sdk-php": "^3.0",
  2027. "doctrine/couchdb": "~1.0@dev",
  2028. "elasticsearch/elasticsearch": "^7 || ^8",
  2029. "ext-json": "*",
  2030. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2031. "guzzlehttp/guzzle": "^7.4.5",
  2032. "guzzlehttp/psr7": "^2.2",
  2033. "mongodb/mongodb": "^1.8",
  2034. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2035. "phpstan/phpstan": "^1.9",
  2036. "phpstan/phpstan-deprecation-rules": "^1.0",
  2037. "phpstan/phpstan-strict-rules": "^1.4",
  2038. "phpunit/phpunit": "^10.5.17",
  2039. "predis/predis": "^1.1 || ^2",
  2040. "ruflin/elastica": "^7",
  2041. "symfony/mailer": "^5.4 || ^6",
  2042. "symfony/mime": "^5.4 || ^6"
  2043. },
  2044. "suggest": {
  2045. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2046. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2047. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2048. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2049. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2050. "ext-mbstring": "Allow to work properly with unicode symbols",
  2051. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2052. "ext-openssl": "Required to send log messages using SSL",
  2053. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2054. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2055. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2056. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2057. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2058. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2059. },
  2060. "type": "library",
  2061. "extra": {
  2062. "branch-alias": {
  2063. "dev-main": "3.x-dev"
  2064. }
  2065. },
  2066. "autoload": {
  2067. "psr-4": {
  2068. "Monolog\\": "src/Monolog"
  2069. }
  2070. },
  2071. "notification-url": "https://packagist.org/downloads/",
  2072. "license": [
  2073. "MIT"
  2074. ],
  2075. "authors": [
  2076. {
  2077. "name": "Jordi Boggiano",
  2078. "email": "j.boggiano@seld.be",
  2079. "homepage": "https://seld.be"
  2080. }
  2081. ],
  2082. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2083. "homepage": "https://github.com/Seldaek/monolog",
  2084. "keywords": [
  2085. "log",
  2086. "logging",
  2087. "psr-3"
  2088. ],
  2089. "support": {
  2090. "issues": "https://github.com/Seldaek/monolog/issues",
  2091. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  2092. },
  2093. "funding": [
  2094. {
  2095. "url": "https://github.com/Seldaek",
  2096. "type": "github"
  2097. },
  2098. {
  2099. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2100. "type": "tidelift"
  2101. }
  2102. ],
  2103. "time": "2024-06-28T09:40:51+00:00"
  2104. },
  2105. {
  2106. "name": "nette/schema",
  2107. "version": "v1.3.2",
  2108. "source": {
  2109. "type": "git",
  2110. "url": "https://github.com/nette/schema.git",
  2111. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  2112. },
  2113. "dist": {
  2114. "type": "zip",
  2115. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  2116. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  2117. "shasum": ""
  2118. },
  2119. "require": {
  2120. "nette/utils": "^4.0",
  2121. "php": "8.1 - 8.4"
  2122. },
  2123. "require-dev": {
  2124. "nette/tester": "^2.5.2",
  2125. "phpstan/phpstan-nette": "^1.0",
  2126. "tracy/tracy": "^2.8"
  2127. },
  2128. "type": "library",
  2129. "extra": {
  2130. "branch-alias": {
  2131. "dev-master": "1.3-dev"
  2132. }
  2133. },
  2134. "autoload": {
  2135. "classmap": [
  2136. "src/"
  2137. ]
  2138. },
  2139. "notification-url": "https://packagist.org/downloads/",
  2140. "license": [
  2141. "BSD-3-Clause",
  2142. "GPL-2.0-only",
  2143. "GPL-3.0-only"
  2144. ],
  2145. "authors": [
  2146. {
  2147. "name": "David Grudl",
  2148. "homepage": "https://davidgrudl.com"
  2149. },
  2150. {
  2151. "name": "Nette Community",
  2152. "homepage": "https://nette.org/contributors"
  2153. }
  2154. ],
  2155. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2156. "homepage": "https://nette.org",
  2157. "keywords": [
  2158. "config",
  2159. "nette"
  2160. ],
  2161. "support": {
  2162. "issues": "https://github.com/nette/schema/issues",
  2163. "source": "https://github.com/nette/schema/tree/v1.3.2"
  2164. },
  2165. "time": "2024-10-06T23:10:23+00:00"
  2166. },
  2167. {
  2168. "name": "nette/utils",
  2169. "version": "v4.0.5",
  2170. "source": {
  2171. "type": "git",
  2172. "url": "https://github.com/nette/utils.git",
  2173. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  2174. },
  2175. "dist": {
  2176. "type": "zip",
  2177. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2178. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2179. "shasum": ""
  2180. },
  2181. "require": {
  2182. "php": "8.0 - 8.4"
  2183. },
  2184. "conflict": {
  2185. "nette/finder": "<3",
  2186. "nette/schema": "<1.2.2"
  2187. },
  2188. "require-dev": {
  2189. "jetbrains/phpstorm-attributes": "dev-master",
  2190. "nette/tester": "^2.5",
  2191. "phpstan/phpstan": "^1.0",
  2192. "tracy/tracy": "^2.9"
  2193. },
  2194. "suggest": {
  2195. "ext-gd": "to use Image",
  2196. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2197. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2198. "ext-json": "to use Nette\\Utils\\Json",
  2199. "ext-mbstring": "to use Strings::lower() etc...",
  2200. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2201. },
  2202. "type": "library",
  2203. "extra": {
  2204. "branch-alias": {
  2205. "dev-master": "4.0-dev"
  2206. }
  2207. },
  2208. "autoload": {
  2209. "classmap": [
  2210. "src/"
  2211. ]
  2212. },
  2213. "notification-url": "https://packagist.org/downloads/",
  2214. "license": [
  2215. "BSD-3-Clause",
  2216. "GPL-2.0-only",
  2217. "GPL-3.0-only"
  2218. ],
  2219. "authors": [
  2220. {
  2221. "name": "David Grudl",
  2222. "homepage": "https://davidgrudl.com"
  2223. },
  2224. {
  2225. "name": "Nette Community",
  2226. "homepage": "https://nette.org/contributors"
  2227. }
  2228. ],
  2229. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2230. "homepage": "https://nette.org",
  2231. "keywords": [
  2232. "array",
  2233. "core",
  2234. "datetime",
  2235. "images",
  2236. "json",
  2237. "nette",
  2238. "paginator",
  2239. "password",
  2240. "slugify",
  2241. "string",
  2242. "unicode",
  2243. "utf-8",
  2244. "utility",
  2245. "validation"
  2246. ],
  2247. "support": {
  2248. "issues": "https://github.com/nette/utils/issues",
  2249. "source": "https://github.com/nette/utils/tree/v4.0.5"
  2250. },
  2251. "time": "2024-08-07T15:39:19+00:00"
  2252. },
  2253. {
  2254. "name": "oscarotero/html-parser",
  2255. "version": "v0.1.8",
  2256. "source": {
  2257. "type": "git",
  2258. "url": "https://github.com/oscarotero/html-parser.git",
  2259. "reference": "10f3219267a365d9433f2f7d1694209c9d436c8d"
  2260. },
  2261. "dist": {
  2262. "type": "zip",
  2263. "url": "https://api.github.com/repos/oscarotero/html-parser/zipball/10f3219267a365d9433f2f7d1694209c9d436c8d",
  2264. "reference": "10f3219267a365d9433f2f7d1694209c9d436c8d",
  2265. "shasum": ""
  2266. },
  2267. "require": {
  2268. "php": "^7.2 || ^8"
  2269. },
  2270. "require-dev": {
  2271. "friendsofphp/php-cs-fixer": "^2.11",
  2272. "phpunit/phpunit": "^8.0"
  2273. },
  2274. "type": "library",
  2275. "autoload": {
  2276. "psr-4": {
  2277. "HtmlParser\\": "src"
  2278. }
  2279. },
  2280. "notification-url": "https://packagist.org/downloads/",
  2281. "license": [
  2282. "MIT"
  2283. ],
  2284. "authors": [
  2285. {
  2286. "name": "Oscar Otero",
  2287. "email": "oom@oscarotero.com",
  2288. "homepage": "http://oscarotero.com",
  2289. "role": "Developer"
  2290. }
  2291. ],
  2292. "description": "Parse html strings to DOMDocument",
  2293. "homepage": "https://github.com/oscarotero/html-parser",
  2294. "keywords": [
  2295. "dom",
  2296. "html",
  2297. "parser"
  2298. ],
  2299. "support": {
  2300. "email": "oom@oscarotero.com",
  2301. "issues": "https://github.com/oscarotero/html-parser/issues",
  2302. "source": "https://github.com/oscarotero/html-parser/tree/v0.1.8"
  2303. },
  2304. "time": "2023-11-29T20:28:41+00:00"
  2305. },
  2306. {
  2307. "name": "phpdocumentor/reflection-common",
  2308. "version": "2.2.0",
  2309. "source": {
  2310. "type": "git",
  2311. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2312. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2313. },
  2314. "dist": {
  2315. "type": "zip",
  2316. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2317. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2318. "shasum": ""
  2319. },
  2320. "require": {
  2321. "php": "^7.2 || ^8.0"
  2322. },
  2323. "type": "library",
  2324. "extra": {
  2325. "branch-alias": {
  2326. "dev-2.x": "2.x-dev"
  2327. }
  2328. },
  2329. "autoload": {
  2330. "psr-4": {
  2331. "phpDocumentor\\Reflection\\": "src/"
  2332. }
  2333. },
  2334. "notification-url": "https://packagist.org/downloads/",
  2335. "license": [
  2336. "MIT"
  2337. ],
  2338. "authors": [
  2339. {
  2340. "name": "Jaap van Otterdijk",
  2341. "email": "opensource@ijaap.nl"
  2342. }
  2343. ],
  2344. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2345. "homepage": "http://www.phpdoc.org",
  2346. "keywords": [
  2347. "FQSEN",
  2348. "phpDocumentor",
  2349. "phpdoc",
  2350. "reflection",
  2351. "static analysis"
  2352. ],
  2353. "support": {
  2354. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2355. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2356. },
  2357. "time": "2020-06-27T09:03:43+00:00"
  2358. },
  2359. {
  2360. "name": "phpdocumentor/reflection-docblock",
  2361. "version": "5.4.1",
  2362. "source": {
  2363. "type": "git",
  2364. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2365. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
  2366. },
  2367. "dist": {
  2368. "type": "zip",
  2369. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2370. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  2371. "shasum": ""
  2372. },
  2373. "require": {
  2374. "doctrine/deprecations": "^1.1",
  2375. "ext-filter": "*",
  2376. "php": "^7.4 || ^8.0",
  2377. "phpdocumentor/reflection-common": "^2.2",
  2378. "phpdocumentor/type-resolver": "^1.7",
  2379. "phpstan/phpdoc-parser": "^1.7",
  2380. "webmozart/assert": "^1.9.1"
  2381. },
  2382. "require-dev": {
  2383. "mockery/mockery": "~1.3.5",
  2384. "phpstan/extension-installer": "^1.1",
  2385. "phpstan/phpstan": "^1.8",
  2386. "phpstan/phpstan-mockery": "^1.1",
  2387. "phpstan/phpstan-webmozart-assert": "^1.2",
  2388. "phpunit/phpunit": "^9.5",
  2389. "vimeo/psalm": "^5.13"
  2390. },
  2391. "type": "library",
  2392. "extra": {
  2393. "branch-alias": {
  2394. "dev-master": "5.x-dev"
  2395. }
  2396. },
  2397. "autoload": {
  2398. "psr-4": {
  2399. "phpDocumentor\\Reflection\\": "src"
  2400. }
  2401. },
  2402. "notification-url": "https://packagist.org/downloads/",
  2403. "license": [
  2404. "MIT"
  2405. ],
  2406. "authors": [
  2407. {
  2408. "name": "Mike van Riel",
  2409. "email": "me@mikevanriel.com"
  2410. },
  2411. {
  2412. "name": "Jaap van Otterdijk",
  2413. "email": "opensource@ijaap.nl"
  2414. }
  2415. ],
  2416. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2417. "support": {
  2418. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2419. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
  2420. },
  2421. "time": "2024-05-21T05:55:05+00:00"
  2422. },
  2423. {
  2424. "name": "phpdocumentor/type-resolver",
  2425. "version": "1.8.2",
  2426. "source": {
  2427. "type": "git",
  2428. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2429. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  2430. },
  2431. "dist": {
  2432. "type": "zip",
  2433. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  2434. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  2435. "shasum": ""
  2436. },
  2437. "require": {
  2438. "doctrine/deprecations": "^1.0",
  2439. "php": "^7.3 || ^8.0",
  2440. "phpdocumentor/reflection-common": "^2.0",
  2441. "phpstan/phpdoc-parser": "^1.13"
  2442. },
  2443. "require-dev": {
  2444. "ext-tokenizer": "*",
  2445. "phpbench/phpbench": "^1.2",
  2446. "phpstan/extension-installer": "^1.1",
  2447. "phpstan/phpstan": "^1.8",
  2448. "phpstan/phpstan-phpunit": "^1.1",
  2449. "phpunit/phpunit": "^9.5",
  2450. "rector/rector": "^0.13.9",
  2451. "vimeo/psalm": "^4.25"
  2452. },
  2453. "type": "library",
  2454. "extra": {
  2455. "branch-alias": {
  2456. "dev-1.x": "1.x-dev"
  2457. }
  2458. },
  2459. "autoload": {
  2460. "psr-4": {
  2461. "phpDocumentor\\Reflection\\": "src"
  2462. }
  2463. },
  2464. "notification-url": "https://packagist.org/downloads/",
  2465. "license": [
  2466. "MIT"
  2467. ],
  2468. "authors": [
  2469. {
  2470. "name": "Mike van Riel",
  2471. "email": "me@mikevanriel.com"
  2472. }
  2473. ],
  2474. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2475. "support": {
  2476. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2477. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  2478. },
  2479. "time": "2024-02-23T11:10:43+00:00"
  2480. },
  2481. {
  2482. "name": "phpstan/phpdoc-parser",
  2483. "version": "1.33.0",
  2484. "source": {
  2485. "type": "git",
  2486. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2487. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140"
  2488. },
  2489. "dist": {
  2490. "type": "zip",
  2491. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2492. "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140",
  2493. "shasum": ""
  2494. },
  2495. "require": {
  2496. "php": "^7.2 || ^8.0"
  2497. },
  2498. "require-dev": {
  2499. "doctrine/annotations": "^2.0",
  2500. "nikic/php-parser": "^4.15",
  2501. "php-parallel-lint/php-parallel-lint": "^1.2",
  2502. "phpstan/extension-installer": "^1.0",
  2503. "phpstan/phpstan": "^1.5",
  2504. "phpstan/phpstan-phpunit": "^1.1",
  2505. "phpstan/phpstan-strict-rules": "^1.0",
  2506. "phpunit/phpunit": "^9.5",
  2507. "symfony/process": "^5.2"
  2508. },
  2509. "type": "library",
  2510. "autoload": {
  2511. "psr-4": {
  2512. "PHPStan\\PhpDocParser\\": [
  2513. "src/"
  2514. ]
  2515. }
  2516. },
  2517. "notification-url": "https://packagist.org/downloads/",
  2518. "license": [
  2519. "MIT"
  2520. ],
  2521. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2522. "support": {
  2523. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  2524. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.33.0"
  2525. },
  2526. "time": "2024-10-13T11:25:22+00:00"
  2527. },
  2528. {
  2529. "name": "psr/cache",
  2530. "version": "3.0.0",
  2531. "source": {
  2532. "type": "git",
  2533. "url": "https://github.com/php-fig/cache.git",
  2534. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2535. },
  2536. "dist": {
  2537. "type": "zip",
  2538. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2539. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2540. "shasum": ""
  2541. },
  2542. "require": {
  2543. "php": ">=8.0.0"
  2544. },
  2545. "type": "library",
  2546. "extra": {
  2547. "branch-alias": {
  2548. "dev-master": "1.0.x-dev"
  2549. }
  2550. },
  2551. "autoload": {
  2552. "psr-4": {
  2553. "Psr\\Cache\\": "src/"
  2554. }
  2555. },
  2556. "notification-url": "https://packagist.org/downloads/",
  2557. "license": [
  2558. "MIT"
  2559. ],
  2560. "authors": [
  2561. {
  2562. "name": "PHP-FIG",
  2563. "homepage": "https://www.php-fig.org/"
  2564. }
  2565. ],
  2566. "description": "Common interface for caching libraries",
  2567. "keywords": [
  2568. "cache",
  2569. "psr",
  2570. "psr-6"
  2571. ],
  2572. "support": {
  2573. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2574. },
  2575. "time": "2021-02-03T23:26:27+00:00"
  2576. },
  2577. {
  2578. "name": "psr/clock",
  2579. "version": "1.0.0",
  2580. "source": {
  2581. "type": "git",
  2582. "url": "https://github.com/php-fig/clock.git",
  2583. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2584. },
  2585. "dist": {
  2586. "type": "zip",
  2587. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2588. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2589. "shasum": ""
  2590. },
  2591. "require": {
  2592. "php": "^7.0 || ^8.0"
  2593. },
  2594. "type": "library",
  2595. "autoload": {
  2596. "psr-4": {
  2597. "Psr\\Clock\\": "src/"
  2598. }
  2599. },
  2600. "notification-url": "https://packagist.org/downloads/",
  2601. "license": [
  2602. "MIT"
  2603. ],
  2604. "authors": [
  2605. {
  2606. "name": "PHP-FIG",
  2607. "homepage": "https://www.php-fig.org/"
  2608. }
  2609. ],
  2610. "description": "Common interface for reading the clock.",
  2611. "homepage": "https://github.com/php-fig/clock",
  2612. "keywords": [
  2613. "clock",
  2614. "now",
  2615. "psr",
  2616. "psr-20",
  2617. "time"
  2618. ],
  2619. "support": {
  2620. "issues": "https://github.com/php-fig/clock/issues",
  2621. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2622. },
  2623. "time": "2022-11-25T14:36:26+00:00"
  2624. },
  2625. {
  2626. "name": "psr/container",
  2627. "version": "2.0.2",
  2628. "source": {
  2629. "type": "git",
  2630. "url": "https://github.com/php-fig/container.git",
  2631. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2632. },
  2633. "dist": {
  2634. "type": "zip",
  2635. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2636. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2637. "shasum": ""
  2638. },
  2639. "require": {
  2640. "php": ">=7.4.0"
  2641. },
  2642. "type": "library",
  2643. "extra": {
  2644. "branch-alias": {
  2645. "dev-master": "2.0.x-dev"
  2646. }
  2647. },
  2648. "autoload": {
  2649. "psr-4": {
  2650. "Psr\\Container\\": "src/"
  2651. }
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "MIT"
  2656. ],
  2657. "authors": [
  2658. {
  2659. "name": "PHP-FIG",
  2660. "homepage": "https://www.php-fig.org/"
  2661. }
  2662. ],
  2663. "description": "Common Container Interface (PHP FIG PSR-11)",
  2664. "homepage": "https://github.com/php-fig/container",
  2665. "keywords": [
  2666. "PSR-11",
  2667. "container",
  2668. "container-interface",
  2669. "container-interop",
  2670. "psr"
  2671. ],
  2672. "support": {
  2673. "issues": "https://github.com/php-fig/container/issues",
  2674. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2675. },
  2676. "time": "2021-11-05T16:47:00+00:00"
  2677. },
  2678. {
  2679. "name": "psr/event-dispatcher",
  2680. "version": "1.0.0",
  2681. "source": {
  2682. "type": "git",
  2683. "url": "https://github.com/php-fig/event-dispatcher.git",
  2684. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2685. },
  2686. "dist": {
  2687. "type": "zip",
  2688. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2689. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2690. "shasum": ""
  2691. },
  2692. "require": {
  2693. "php": ">=7.2.0"
  2694. },
  2695. "type": "library",
  2696. "extra": {
  2697. "branch-alias": {
  2698. "dev-master": "1.0.x-dev"
  2699. }
  2700. },
  2701. "autoload": {
  2702. "psr-4": {
  2703. "Psr\\EventDispatcher\\": "src/"
  2704. }
  2705. },
  2706. "notification-url": "https://packagist.org/downloads/",
  2707. "license": [
  2708. "MIT"
  2709. ],
  2710. "authors": [
  2711. {
  2712. "name": "PHP-FIG",
  2713. "homepage": "http://www.php-fig.org/"
  2714. }
  2715. ],
  2716. "description": "Standard interfaces for event handling.",
  2717. "keywords": [
  2718. "events",
  2719. "psr",
  2720. "psr-14"
  2721. ],
  2722. "support": {
  2723. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2724. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2725. },
  2726. "time": "2019-01-08T18:20:26+00:00"
  2727. },
  2728. {
  2729. "name": "psr/http-client",
  2730. "version": "1.0.3",
  2731. "source": {
  2732. "type": "git",
  2733. "url": "https://github.com/php-fig/http-client.git",
  2734. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2735. },
  2736. "dist": {
  2737. "type": "zip",
  2738. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2739. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2740. "shasum": ""
  2741. },
  2742. "require": {
  2743. "php": "^7.0 || ^8.0",
  2744. "psr/http-message": "^1.0 || ^2.0"
  2745. },
  2746. "type": "library",
  2747. "extra": {
  2748. "branch-alias": {
  2749. "dev-master": "1.0.x-dev"
  2750. }
  2751. },
  2752. "autoload": {
  2753. "psr-4": {
  2754. "Psr\\Http\\Client\\": "src/"
  2755. }
  2756. },
  2757. "notification-url": "https://packagist.org/downloads/",
  2758. "license": [
  2759. "MIT"
  2760. ],
  2761. "authors": [
  2762. {
  2763. "name": "PHP-FIG",
  2764. "homepage": "https://www.php-fig.org/"
  2765. }
  2766. ],
  2767. "description": "Common interface for HTTP clients",
  2768. "homepage": "https://github.com/php-fig/http-client",
  2769. "keywords": [
  2770. "http",
  2771. "http-client",
  2772. "psr",
  2773. "psr-18"
  2774. ],
  2775. "support": {
  2776. "source": "https://github.com/php-fig/http-client"
  2777. },
  2778. "time": "2023-09-23T14:17:50+00:00"
  2779. },
  2780. {
  2781. "name": "psr/http-factory",
  2782. "version": "1.1.0",
  2783. "source": {
  2784. "type": "git",
  2785. "url": "https://github.com/php-fig/http-factory.git",
  2786. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2787. },
  2788. "dist": {
  2789. "type": "zip",
  2790. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2791. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2792. "shasum": ""
  2793. },
  2794. "require": {
  2795. "php": ">=7.1",
  2796. "psr/http-message": "^1.0 || ^2.0"
  2797. },
  2798. "type": "library",
  2799. "extra": {
  2800. "branch-alias": {
  2801. "dev-master": "1.0.x-dev"
  2802. }
  2803. },
  2804. "autoload": {
  2805. "psr-4": {
  2806. "Psr\\Http\\Message\\": "src/"
  2807. }
  2808. },
  2809. "notification-url": "https://packagist.org/downloads/",
  2810. "license": [
  2811. "MIT"
  2812. ],
  2813. "authors": [
  2814. {
  2815. "name": "PHP-FIG",
  2816. "homepage": "https://www.php-fig.org/"
  2817. }
  2818. ],
  2819. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  2820. "keywords": [
  2821. "factory",
  2822. "http",
  2823. "message",
  2824. "psr",
  2825. "psr-17",
  2826. "psr-7",
  2827. "request",
  2828. "response"
  2829. ],
  2830. "support": {
  2831. "source": "https://github.com/php-fig/http-factory"
  2832. },
  2833. "time": "2024-04-15T12:06:14+00:00"
  2834. },
  2835. {
  2836. "name": "psr/http-message",
  2837. "version": "2.0",
  2838. "source": {
  2839. "type": "git",
  2840. "url": "https://github.com/php-fig/http-message.git",
  2841. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2842. },
  2843. "dist": {
  2844. "type": "zip",
  2845. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2846. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2847. "shasum": ""
  2848. },
  2849. "require": {
  2850. "php": "^7.2 || ^8.0"
  2851. },
  2852. "type": "library",
  2853. "extra": {
  2854. "branch-alias": {
  2855. "dev-master": "2.0.x-dev"
  2856. }
  2857. },
  2858. "autoload": {
  2859. "psr-4": {
  2860. "Psr\\Http\\Message\\": "src/"
  2861. }
  2862. },
  2863. "notification-url": "https://packagist.org/downloads/",
  2864. "license": [
  2865. "MIT"
  2866. ],
  2867. "authors": [
  2868. {
  2869. "name": "PHP-FIG",
  2870. "homepage": "https://www.php-fig.org/"
  2871. }
  2872. ],
  2873. "description": "Common interface for HTTP messages",
  2874. "homepage": "https://github.com/php-fig/http-message",
  2875. "keywords": [
  2876. "http",
  2877. "http-message",
  2878. "psr",
  2879. "psr-7",
  2880. "request",
  2881. "response"
  2882. ],
  2883. "support": {
  2884. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2885. },
  2886. "time": "2023-04-04T09:54:51+00:00"
  2887. },
  2888. {
  2889. "name": "psr/link",
  2890. "version": "2.0.1",
  2891. "source": {
  2892. "type": "git",
  2893. "url": "https://github.com/php-fig/link.git",
  2894. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2895. },
  2896. "dist": {
  2897. "type": "zip",
  2898. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2899. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2900. "shasum": ""
  2901. },
  2902. "require": {
  2903. "php": ">=8.0.0"
  2904. },
  2905. "suggest": {
  2906. "fig/link-util": "Provides some useful PSR-13 utilities"
  2907. },
  2908. "type": "library",
  2909. "extra": {
  2910. "branch-alias": {
  2911. "dev-master": "2.0.x-dev"
  2912. }
  2913. },
  2914. "autoload": {
  2915. "psr-4": {
  2916. "Psr\\Link\\": "src/"
  2917. }
  2918. },
  2919. "notification-url": "https://packagist.org/downloads/",
  2920. "license": [
  2921. "MIT"
  2922. ],
  2923. "authors": [
  2924. {
  2925. "name": "PHP-FIG",
  2926. "homepage": "http://www.php-fig.org/"
  2927. }
  2928. ],
  2929. "description": "Common interfaces for HTTP links",
  2930. "homepage": "https://github.com/php-fig/link",
  2931. "keywords": [
  2932. "http",
  2933. "http-link",
  2934. "link",
  2935. "psr",
  2936. "psr-13",
  2937. "rest"
  2938. ],
  2939. "support": {
  2940. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2941. },
  2942. "time": "2021-03-11T23:00:27+00:00"
  2943. },
  2944. {
  2945. "name": "psr/log",
  2946. "version": "3.0.2",
  2947. "source": {
  2948. "type": "git",
  2949. "url": "https://github.com/php-fig/log.git",
  2950. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2951. },
  2952. "dist": {
  2953. "type": "zip",
  2954. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2955. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2956. "shasum": ""
  2957. },
  2958. "require": {
  2959. "php": ">=8.0.0"
  2960. },
  2961. "type": "library",
  2962. "extra": {
  2963. "branch-alias": {
  2964. "dev-master": "3.x-dev"
  2965. }
  2966. },
  2967. "autoload": {
  2968. "psr-4": {
  2969. "Psr\\Log\\": "src"
  2970. }
  2971. },
  2972. "notification-url": "https://packagist.org/downloads/",
  2973. "license": [
  2974. "MIT"
  2975. ],
  2976. "authors": [
  2977. {
  2978. "name": "PHP-FIG",
  2979. "homepage": "https://www.php-fig.org/"
  2980. }
  2981. ],
  2982. "description": "Common interface for logging libraries",
  2983. "homepage": "https://github.com/php-fig/log",
  2984. "keywords": [
  2985. "log",
  2986. "psr",
  2987. "psr-3"
  2988. ],
  2989. "support": {
  2990. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2991. },
  2992. "time": "2024-09-11T13:17:53+00:00"
  2993. },
  2994. {
  2995. "name": "symfony/apache-pack",
  2996. "version": "v1.0.1",
  2997. "source": {
  2998. "type": "git",
  2999. "url": "https://github.com/symfony/apache-pack.git",
  3000. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  3001. },
  3002. "dist": {
  3003. "type": "zip",
  3004. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3005. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  3006. "shasum": ""
  3007. },
  3008. "type": "symfony-pack",
  3009. "notification-url": "https://packagist.org/downloads/",
  3010. "license": [
  3011. "MIT"
  3012. ],
  3013. "description": "A pack for Apache support in Symfony",
  3014. "support": {
  3015. "issues": "https://github.com/symfony/apache-pack/issues",
  3016. "source": "https://github.com/symfony/apache-pack/tree/master"
  3017. },
  3018. "time": "2017-12-12T01:46:35+00:00"
  3019. },
  3020. {
  3021. "name": "symfony/asset",
  3022. "version": "v7.1.1",
  3023. "source": {
  3024. "type": "git",
  3025. "url": "https://github.com/symfony/asset.git",
  3026. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43"
  3027. },
  3028. "dist": {
  3029. "type": "zip",
  3030. "url": "https://api.github.com/repos/symfony/asset/zipball/8970de4a0cedd34e097c0f5c502a614780b9ca43",
  3031. "reference": "8970de4a0cedd34e097c0f5c502a614780b9ca43",
  3032. "shasum": ""
  3033. },
  3034. "require": {
  3035. "php": ">=8.2"
  3036. },
  3037. "conflict": {
  3038. "symfony/http-foundation": "<6.4"
  3039. },
  3040. "require-dev": {
  3041. "symfony/http-client": "^6.4|^7.0",
  3042. "symfony/http-foundation": "^6.4|^7.0",
  3043. "symfony/http-kernel": "^6.4|^7.0"
  3044. },
  3045. "type": "library",
  3046. "autoload": {
  3047. "psr-4": {
  3048. "Symfony\\Component\\Asset\\": ""
  3049. },
  3050. "exclude-from-classmap": [
  3051. "/Tests/"
  3052. ]
  3053. },
  3054. "notification-url": "https://packagist.org/downloads/",
  3055. "license": [
  3056. "MIT"
  3057. ],
  3058. "authors": [
  3059. {
  3060. "name": "Fabien Potencier",
  3061. "email": "fabien@symfony.com"
  3062. },
  3063. {
  3064. "name": "Symfony Community",
  3065. "homepage": "https://symfony.com/contributors"
  3066. }
  3067. ],
  3068. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3069. "homepage": "https://symfony.com",
  3070. "support": {
  3071. "source": "https://github.com/symfony/asset/tree/v7.1.1"
  3072. },
  3073. "funding": [
  3074. {
  3075. "url": "https://symfony.com/sponsor",
  3076. "type": "custom"
  3077. },
  3078. {
  3079. "url": "https://github.com/fabpot",
  3080. "type": "github"
  3081. },
  3082. {
  3083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3084. "type": "tidelift"
  3085. }
  3086. ],
  3087. "time": "2024-05-31T14:57:53+00:00"
  3088. },
  3089. {
  3090. "name": "symfony/asset-mapper",
  3091. "version": "v7.1.5",
  3092. "source": {
  3093. "type": "git",
  3094. "url": "https://github.com/symfony/asset-mapper.git",
  3095. "reference": "e3ae56f965f1fe503db1f604756a44d40e6dea16"
  3096. },
  3097. "dist": {
  3098. "type": "zip",
  3099. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/e3ae56f965f1fe503db1f604756a44d40e6dea16",
  3100. "reference": "e3ae56f965f1fe503db1f604756a44d40e6dea16",
  3101. "shasum": ""
  3102. },
  3103. "require": {
  3104. "composer/semver": "^3.0",
  3105. "php": ">=8.2",
  3106. "symfony/deprecation-contracts": "^2.1|^3",
  3107. "symfony/filesystem": "^7.1",
  3108. "symfony/http-client": "^6.4|^7.0"
  3109. },
  3110. "conflict": {
  3111. "symfony/framework-bundle": "<6.4"
  3112. },
  3113. "require-dev": {
  3114. "symfony/asset": "^6.4|^7.0",
  3115. "symfony/browser-kit": "^6.4|^7.0",
  3116. "symfony/console": "^6.4|^7.0",
  3117. "symfony/event-dispatcher-contracts": "^3.0",
  3118. "symfony/finder": "^6.4|^7.0",
  3119. "symfony/framework-bundle": "^6.4|^7.0",
  3120. "symfony/http-foundation": "^6.4|^7.0",
  3121. "symfony/http-kernel": "^6.4|^7.0",
  3122. "symfony/web-link": "^6.4|^7.0"
  3123. },
  3124. "type": "library",
  3125. "autoload": {
  3126. "psr-4": {
  3127. "Symfony\\Component\\AssetMapper\\": ""
  3128. },
  3129. "exclude-from-classmap": [
  3130. "/Tests/"
  3131. ]
  3132. },
  3133. "notification-url": "https://packagist.org/downloads/",
  3134. "license": [
  3135. "MIT"
  3136. ],
  3137. "authors": [
  3138. {
  3139. "name": "Fabien Potencier",
  3140. "email": "fabien@symfony.com"
  3141. },
  3142. {
  3143. "name": "Symfony Community",
  3144. "homepage": "https://symfony.com/contributors"
  3145. }
  3146. ],
  3147. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  3148. "homepage": "https://symfony.com",
  3149. "support": {
  3150. "source": "https://github.com/symfony/asset-mapper/tree/v7.1.5"
  3151. },
  3152. "funding": [
  3153. {
  3154. "url": "https://symfony.com/sponsor",
  3155. "type": "custom"
  3156. },
  3157. {
  3158. "url": "https://github.com/fabpot",
  3159. "type": "github"
  3160. },
  3161. {
  3162. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3163. "type": "tidelift"
  3164. }
  3165. ],
  3166. "time": "2024-09-19T08:57:32+00:00"
  3167. },
  3168. {
  3169. "name": "symfony/cache",
  3170. "version": "v7.1.5",
  3171. "source": {
  3172. "type": "git",
  3173. "url": "https://github.com/symfony/cache.git",
  3174. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a"
  3175. },
  3176. "dist": {
  3177. "type": "zip",
  3178. "url": "https://api.github.com/repos/symfony/cache/zipball/86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  3179. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  3180. "shasum": ""
  3181. },
  3182. "require": {
  3183. "php": ">=8.2",
  3184. "psr/cache": "^2.0|^3.0",
  3185. "psr/log": "^1.1|^2|^3",
  3186. "symfony/cache-contracts": "^2.5|^3",
  3187. "symfony/deprecation-contracts": "^2.5|^3.0",
  3188. "symfony/service-contracts": "^2.5|^3",
  3189. "symfony/var-exporter": "^6.4|^7.0"
  3190. },
  3191. "conflict": {
  3192. "doctrine/dbal": "<3.6",
  3193. "symfony/dependency-injection": "<6.4",
  3194. "symfony/http-kernel": "<6.4",
  3195. "symfony/var-dumper": "<6.4"
  3196. },
  3197. "provide": {
  3198. "psr/cache-implementation": "2.0|3.0",
  3199. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3200. "symfony/cache-implementation": "1.1|2.0|3.0"
  3201. },
  3202. "require-dev": {
  3203. "cache/integration-tests": "dev-master",
  3204. "doctrine/dbal": "^3.6|^4",
  3205. "predis/predis": "^1.1|^2.0",
  3206. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3207. "symfony/config": "^6.4|^7.0",
  3208. "symfony/dependency-injection": "^6.4|^7.0",
  3209. "symfony/filesystem": "^6.4|^7.0",
  3210. "symfony/http-kernel": "^6.4|^7.0",
  3211. "symfony/messenger": "^6.4|^7.0",
  3212. "symfony/var-dumper": "^6.4|^7.0"
  3213. },
  3214. "type": "library",
  3215. "autoload": {
  3216. "psr-4": {
  3217. "Symfony\\Component\\Cache\\": ""
  3218. },
  3219. "classmap": [
  3220. "Traits/ValueWrapper.php"
  3221. ],
  3222. "exclude-from-classmap": [
  3223. "/Tests/"
  3224. ]
  3225. },
  3226. "notification-url": "https://packagist.org/downloads/",
  3227. "license": [
  3228. "MIT"
  3229. ],
  3230. "authors": [
  3231. {
  3232. "name": "Nicolas Grekas",
  3233. "email": "p@tchwork.com"
  3234. },
  3235. {
  3236. "name": "Symfony Community",
  3237. "homepage": "https://symfony.com/contributors"
  3238. }
  3239. ],
  3240. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3241. "homepage": "https://symfony.com",
  3242. "keywords": [
  3243. "caching",
  3244. "psr6"
  3245. ],
  3246. "support": {
  3247. "source": "https://github.com/symfony/cache/tree/v7.1.5"
  3248. },
  3249. "funding": [
  3250. {
  3251. "url": "https://symfony.com/sponsor",
  3252. "type": "custom"
  3253. },
  3254. {
  3255. "url": "https://github.com/fabpot",
  3256. "type": "github"
  3257. },
  3258. {
  3259. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3260. "type": "tidelift"
  3261. }
  3262. ],
  3263. "time": "2024-09-17T09:16:35+00:00"
  3264. },
  3265. {
  3266. "name": "symfony/cache-contracts",
  3267. "version": "v3.5.0",
  3268. "source": {
  3269. "type": "git",
  3270. "url": "https://github.com/symfony/cache-contracts.git",
  3271. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  3272. },
  3273. "dist": {
  3274. "type": "zip",
  3275. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3276. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  3277. "shasum": ""
  3278. },
  3279. "require": {
  3280. "php": ">=8.1",
  3281. "psr/cache": "^3.0"
  3282. },
  3283. "type": "library",
  3284. "extra": {
  3285. "branch-alias": {
  3286. "dev-main": "3.5-dev"
  3287. },
  3288. "thanks": {
  3289. "name": "symfony/contracts",
  3290. "url": "https://github.com/symfony/contracts"
  3291. }
  3292. },
  3293. "autoload": {
  3294. "psr-4": {
  3295. "Symfony\\Contracts\\Cache\\": ""
  3296. }
  3297. },
  3298. "notification-url": "https://packagist.org/downloads/",
  3299. "license": [
  3300. "MIT"
  3301. ],
  3302. "authors": [
  3303. {
  3304. "name": "Nicolas Grekas",
  3305. "email": "p@tchwork.com"
  3306. },
  3307. {
  3308. "name": "Symfony Community",
  3309. "homepage": "https://symfony.com/contributors"
  3310. }
  3311. ],
  3312. "description": "Generic abstractions related to caching",
  3313. "homepage": "https://symfony.com",
  3314. "keywords": [
  3315. "abstractions",
  3316. "contracts",
  3317. "decoupling",
  3318. "interfaces",
  3319. "interoperability",
  3320. "standards"
  3321. ],
  3322. "support": {
  3323. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  3324. },
  3325. "funding": [
  3326. {
  3327. "url": "https://symfony.com/sponsor",
  3328. "type": "custom"
  3329. },
  3330. {
  3331. "url": "https://github.com/fabpot",
  3332. "type": "github"
  3333. },
  3334. {
  3335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3336. "type": "tidelift"
  3337. }
  3338. ],
  3339. "time": "2024-04-18T09:32:20+00:00"
  3340. },
  3341. {
  3342. "name": "symfony/clock",
  3343. "version": "v7.1.1",
  3344. "source": {
  3345. "type": "git",
  3346. "url": "https://github.com/symfony/clock.git",
  3347. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  3348. },
  3349. "dist": {
  3350. "type": "zip",
  3351. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  3352. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  3353. "shasum": ""
  3354. },
  3355. "require": {
  3356. "php": ">=8.2",
  3357. "psr/clock": "^1.0",
  3358. "symfony/polyfill-php83": "^1.28"
  3359. },
  3360. "provide": {
  3361. "psr/clock-implementation": "1.0"
  3362. },
  3363. "type": "library",
  3364. "autoload": {
  3365. "files": [
  3366. "Resources/now.php"
  3367. ],
  3368. "psr-4": {
  3369. "Symfony\\Component\\Clock\\": ""
  3370. },
  3371. "exclude-from-classmap": [
  3372. "/Tests/"
  3373. ]
  3374. },
  3375. "notification-url": "https://packagist.org/downloads/",
  3376. "license": [
  3377. "MIT"
  3378. ],
  3379. "authors": [
  3380. {
  3381. "name": "Nicolas Grekas",
  3382. "email": "p@tchwork.com"
  3383. },
  3384. {
  3385. "name": "Symfony Community",
  3386. "homepage": "https://symfony.com/contributors"
  3387. }
  3388. ],
  3389. "description": "Decouples applications from the system clock",
  3390. "homepage": "https://symfony.com",
  3391. "keywords": [
  3392. "clock",
  3393. "psr20",
  3394. "time"
  3395. ],
  3396. "support": {
  3397. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  3398. },
  3399. "funding": [
  3400. {
  3401. "url": "https://symfony.com/sponsor",
  3402. "type": "custom"
  3403. },
  3404. {
  3405. "url": "https://github.com/fabpot",
  3406. "type": "github"
  3407. },
  3408. {
  3409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3410. "type": "tidelift"
  3411. }
  3412. ],
  3413. "time": "2024-05-31T14:57:53+00:00"
  3414. },
  3415. {
  3416. "name": "symfony/config",
  3417. "version": "v7.1.1",
  3418. "source": {
  3419. "type": "git",
  3420. "url": "https://github.com/symfony/config.git",
  3421. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2"
  3422. },
  3423. "dist": {
  3424. "type": "zip",
  3425. "url": "https://api.github.com/repos/symfony/config/zipball/2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  3426. "reference": "2210fc99fa42a259eb6c89d1f724ce0c4d62d5d2",
  3427. "shasum": ""
  3428. },
  3429. "require": {
  3430. "php": ">=8.2",
  3431. "symfony/deprecation-contracts": "^2.5|^3",
  3432. "symfony/filesystem": "^7.1",
  3433. "symfony/polyfill-ctype": "~1.8"
  3434. },
  3435. "conflict": {
  3436. "symfony/finder": "<6.4",
  3437. "symfony/service-contracts": "<2.5"
  3438. },
  3439. "require-dev": {
  3440. "symfony/event-dispatcher": "^6.4|^7.0",
  3441. "symfony/finder": "^6.4|^7.0",
  3442. "symfony/messenger": "^6.4|^7.0",
  3443. "symfony/service-contracts": "^2.5|^3",
  3444. "symfony/yaml": "^6.4|^7.0"
  3445. },
  3446. "type": "library",
  3447. "autoload": {
  3448. "psr-4": {
  3449. "Symfony\\Component\\Config\\": ""
  3450. },
  3451. "exclude-from-classmap": [
  3452. "/Tests/"
  3453. ]
  3454. },
  3455. "notification-url": "https://packagist.org/downloads/",
  3456. "license": [
  3457. "MIT"
  3458. ],
  3459. "authors": [
  3460. {
  3461. "name": "Fabien Potencier",
  3462. "email": "fabien@symfony.com"
  3463. },
  3464. {
  3465. "name": "Symfony Community",
  3466. "homepage": "https://symfony.com/contributors"
  3467. }
  3468. ],
  3469. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3470. "homepage": "https://symfony.com",
  3471. "support": {
  3472. "source": "https://github.com/symfony/config/tree/v7.1.1"
  3473. },
  3474. "funding": [
  3475. {
  3476. "url": "https://symfony.com/sponsor",
  3477. "type": "custom"
  3478. },
  3479. {
  3480. "url": "https://github.com/fabpot",
  3481. "type": "github"
  3482. },
  3483. {
  3484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3485. "type": "tidelift"
  3486. }
  3487. ],
  3488. "time": "2024-05-31T14:57:53+00:00"
  3489. },
  3490. {
  3491. "name": "symfony/console",
  3492. "version": "v7.1.5",
  3493. "source": {
  3494. "type": "git",
  3495. "url": "https://github.com/symfony/console.git",
  3496. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee"
  3497. },
  3498. "dist": {
  3499. "type": "zip",
  3500. "url": "https://api.github.com/repos/symfony/console/zipball/0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  3501. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  3502. "shasum": ""
  3503. },
  3504. "require": {
  3505. "php": ">=8.2",
  3506. "symfony/polyfill-mbstring": "~1.0",
  3507. "symfony/service-contracts": "^2.5|^3",
  3508. "symfony/string": "^6.4|^7.0"
  3509. },
  3510. "conflict": {
  3511. "symfony/dependency-injection": "<6.4",
  3512. "symfony/dotenv": "<6.4",
  3513. "symfony/event-dispatcher": "<6.4",
  3514. "symfony/lock": "<6.4",
  3515. "symfony/process": "<6.4"
  3516. },
  3517. "provide": {
  3518. "psr/log-implementation": "1.0|2.0|3.0"
  3519. },
  3520. "require-dev": {
  3521. "psr/log": "^1|^2|^3",
  3522. "symfony/config": "^6.4|^7.0",
  3523. "symfony/dependency-injection": "^6.4|^7.0",
  3524. "symfony/event-dispatcher": "^6.4|^7.0",
  3525. "symfony/http-foundation": "^6.4|^7.0",
  3526. "symfony/http-kernel": "^6.4|^7.0",
  3527. "symfony/lock": "^6.4|^7.0",
  3528. "symfony/messenger": "^6.4|^7.0",
  3529. "symfony/process": "^6.4|^7.0",
  3530. "symfony/stopwatch": "^6.4|^7.0",
  3531. "symfony/var-dumper": "^6.4|^7.0"
  3532. },
  3533. "type": "library",
  3534. "autoload": {
  3535. "psr-4": {
  3536. "Symfony\\Component\\Console\\": ""
  3537. },
  3538. "exclude-from-classmap": [
  3539. "/Tests/"
  3540. ]
  3541. },
  3542. "notification-url": "https://packagist.org/downloads/",
  3543. "license": [
  3544. "MIT"
  3545. ],
  3546. "authors": [
  3547. {
  3548. "name": "Fabien Potencier",
  3549. "email": "fabien@symfony.com"
  3550. },
  3551. {
  3552. "name": "Symfony Community",
  3553. "homepage": "https://symfony.com/contributors"
  3554. }
  3555. ],
  3556. "description": "Eases the creation of beautiful and testable command line interfaces",
  3557. "homepage": "https://symfony.com",
  3558. "keywords": [
  3559. "cli",
  3560. "command-line",
  3561. "console",
  3562. "terminal"
  3563. ],
  3564. "support": {
  3565. "source": "https://github.com/symfony/console/tree/v7.1.5"
  3566. },
  3567. "funding": [
  3568. {
  3569. "url": "https://symfony.com/sponsor",
  3570. "type": "custom"
  3571. },
  3572. {
  3573. "url": "https://github.com/fabpot",
  3574. "type": "github"
  3575. },
  3576. {
  3577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3578. "type": "tidelift"
  3579. }
  3580. ],
  3581. "time": "2024-09-20T08:28:38+00:00"
  3582. },
  3583. {
  3584. "name": "symfony/dependency-injection",
  3585. "version": "v7.1.5",
  3586. "source": {
  3587. "type": "git",
  3588. "url": "https://github.com/symfony/dependency-injection.git",
  3589. "reference": "38465f925ec4e0707b090e9147c65869837d639d"
  3590. },
  3591. "dist": {
  3592. "type": "zip",
  3593. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/38465f925ec4e0707b090e9147c65869837d639d",
  3594. "reference": "38465f925ec4e0707b090e9147c65869837d639d",
  3595. "shasum": ""
  3596. },
  3597. "require": {
  3598. "php": ">=8.2",
  3599. "psr/container": "^1.1|^2.0",
  3600. "symfony/deprecation-contracts": "^2.5|^3",
  3601. "symfony/service-contracts": "^3.5",
  3602. "symfony/var-exporter": "^6.4|^7.0"
  3603. },
  3604. "conflict": {
  3605. "ext-psr": "<1.1|>=2",
  3606. "symfony/config": "<6.4",
  3607. "symfony/finder": "<6.4",
  3608. "symfony/yaml": "<6.4"
  3609. },
  3610. "provide": {
  3611. "psr/container-implementation": "1.1|2.0",
  3612. "symfony/service-implementation": "1.1|2.0|3.0"
  3613. },
  3614. "require-dev": {
  3615. "symfony/config": "^6.4|^7.0",
  3616. "symfony/expression-language": "^6.4|^7.0",
  3617. "symfony/yaml": "^6.4|^7.0"
  3618. },
  3619. "type": "library",
  3620. "autoload": {
  3621. "psr-4": {
  3622. "Symfony\\Component\\DependencyInjection\\": ""
  3623. },
  3624. "exclude-from-classmap": [
  3625. "/Tests/"
  3626. ]
  3627. },
  3628. "notification-url": "https://packagist.org/downloads/",
  3629. "license": [
  3630. "MIT"
  3631. ],
  3632. "authors": [
  3633. {
  3634. "name": "Fabien Potencier",
  3635. "email": "fabien@symfony.com"
  3636. },
  3637. {
  3638. "name": "Symfony Community",
  3639. "homepage": "https://symfony.com/contributors"
  3640. }
  3641. ],
  3642. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3643. "homepage": "https://symfony.com",
  3644. "support": {
  3645. "source": "https://github.com/symfony/dependency-injection/tree/v7.1.5"
  3646. },
  3647. "funding": [
  3648. {
  3649. "url": "https://symfony.com/sponsor",
  3650. "type": "custom"
  3651. },
  3652. {
  3653. "url": "https://github.com/fabpot",
  3654. "type": "github"
  3655. },
  3656. {
  3657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3658. "type": "tidelift"
  3659. }
  3660. ],
  3661. "time": "2024-09-20T08:28:38+00:00"
  3662. },
  3663. {
  3664. "name": "symfony/deprecation-contracts",
  3665. "version": "v3.5.0",
  3666. "source": {
  3667. "type": "git",
  3668. "url": "https://github.com/symfony/deprecation-contracts.git",
  3669. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  3670. },
  3671. "dist": {
  3672. "type": "zip",
  3673. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3674. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  3675. "shasum": ""
  3676. },
  3677. "require": {
  3678. "php": ">=8.1"
  3679. },
  3680. "type": "library",
  3681. "extra": {
  3682. "branch-alias": {
  3683. "dev-main": "3.5-dev"
  3684. },
  3685. "thanks": {
  3686. "name": "symfony/contracts",
  3687. "url": "https://github.com/symfony/contracts"
  3688. }
  3689. },
  3690. "autoload": {
  3691. "files": [
  3692. "function.php"
  3693. ]
  3694. },
  3695. "notification-url": "https://packagist.org/downloads/",
  3696. "license": [
  3697. "MIT"
  3698. ],
  3699. "authors": [
  3700. {
  3701. "name": "Nicolas Grekas",
  3702. "email": "p@tchwork.com"
  3703. },
  3704. {
  3705. "name": "Symfony Community",
  3706. "homepage": "https://symfony.com/contributors"
  3707. }
  3708. ],
  3709. "description": "A generic function and convention to trigger deprecation notices",
  3710. "homepage": "https://symfony.com",
  3711. "support": {
  3712. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  3713. },
  3714. "funding": [
  3715. {
  3716. "url": "https://symfony.com/sponsor",
  3717. "type": "custom"
  3718. },
  3719. {
  3720. "url": "https://github.com/fabpot",
  3721. "type": "github"
  3722. },
  3723. {
  3724. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3725. "type": "tidelift"
  3726. }
  3727. ],
  3728. "time": "2024-04-18T09:32:20+00:00"
  3729. },
  3730. {
  3731. "name": "symfony/doctrine-bridge",
  3732. "version": "v7.1.5",
  3733. "source": {
  3734. "type": "git",
  3735. "url": "https://github.com/symfony/doctrine-bridge.git",
  3736. "reference": "2568d0adaa5b0018b07beaa90363b880a43cc957"
  3737. },
  3738. "dist": {
  3739. "type": "zip",
  3740. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/2568d0adaa5b0018b07beaa90363b880a43cc957",
  3741. "reference": "2568d0adaa5b0018b07beaa90363b880a43cc957",
  3742. "shasum": ""
  3743. },
  3744. "require": {
  3745. "doctrine/event-manager": "^2",
  3746. "doctrine/persistence": "^3.1",
  3747. "php": ">=8.2",
  3748. "symfony/deprecation-contracts": "^2.5|^3",
  3749. "symfony/polyfill-ctype": "~1.8",
  3750. "symfony/polyfill-mbstring": "~1.0",
  3751. "symfony/service-contracts": "^2.5|^3"
  3752. },
  3753. "conflict": {
  3754. "doctrine/dbal": "<3.6",
  3755. "doctrine/lexer": "<1.1",
  3756. "doctrine/orm": "<2.15",
  3757. "symfony/cache": "<6.4",
  3758. "symfony/dependency-injection": "<6.4",
  3759. "symfony/form": "<6.4.6|>=7,<7.0.6",
  3760. "symfony/http-foundation": "<6.4",
  3761. "symfony/http-kernel": "<6.4",
  3762. "symfony/lock": "<6.4",
  3763. "symfony/messenger": "<6.4",
  3764. "symfony/property-info": "<6.4",
  3765. "symfony/security-bundle": "<6.4",
  3766. "symfony/security-core": "<6.4",
  3767. "symfony/validator": "<6.4"
  3768. },
  3769. "require-dev": {
  3770. "doctrine/collections": "^1.0|^2.0",
  3771. "doctrine/data-fixtures": "^1.1",
  3772. "doctrine/dbal": "^3.6|^4",
  3773. "doctrine/orm": "^2.15|^3",
  3774. "psr/log": "^1|^2|^3",
  3775. "symfony/cache": "^6.4|^7.0",
  3776. "symfony/config": "^6.4|^7.0",
  3777. "symfony/dependency-injection": "^6.4|^7.0",
  3778. "symfony/doctrine-messenger": "^6.4|^7.0",
  3779. "symfony/expression-language": "^6.4|^7.0",
  3780. "symfony/form": "^6.4.6|^7.0.6",
  3781. "symfony/http-kernel": "^6.4|^7.0",
  3782. "symfony/lock": "^6.4|^7.0",
  3783. "symfony/messenger": "^6.4|^7.0",
  3784. "symfony/property-access": "^6.4|^7.0",
  3785. "symfony/property-info": "^6.4|^7.0",
  3786. "symfony/security-core": "^6.4|^7.0",
  3787. "symfony/stopwatch": "^6.4|^7.0",
  3788. "symfony/translation": "^6.4|^7.0",
  3789. "symfony/type-info": "^7.1",
  3790. "symfony/uid": "^6.4|^7.0",
  3791. "symfony/validator": "^6.4|^7.0",
  3792. "symfony/var-dumper": "^6.4|^7.0"
  3793. },
  3794. "type": "symfony-bridge",
  3795. "autoload": {
  3796. "psr-4": {
  3797. "Symfony\\Bridge\\Doctrine\\": ""
  3798. },
  3799. "exclude-from-classmap": [
  3800. "/Tests/"
  3801. ]
  3802. },
  3803. "notification-url": "https://packagist.org/downloads/",
  3804. "license": [
  3805. "MIT"
  3806. ],
  3807. "authors": [
  3808. {
  3809. "name": "Fabien Potencier",
  3810. "email": "fabien@symfony.com"
  3811. },
  3812. {
  3813. "name": "Symfony Community",
  3814. "homepage": "https://symfony.com/contributors"
  3815. }
  3816. ],
  3817. "description": "Provides integration for Doctrine with various Symfony components",
  3818. "homepage": "https://symfony.com",
  3819. "support": {
  3820. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.1.5"
  3821. },
  3822. "funding": [
  3823. {
  3824. "url": "https://symfony.com/sponsor",
  3825. "type": "custom"
  3826. },
  3827. {
  3828. "url": "https://github.com/fabpot",
  3829. "type": "github"
  3830. },
  3831. {
  3832. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3833. "type": "tidelift"
  3834. }
  3835. ],
  3836. "time": "2024-09-08T12:32:26+00:00"
  3837. },
  3838. {
  3839. "name": "symfony/doctrine-messenger",
  3840. "version": "v7.1.5",
  3841. "source": {
  3842. "type": "git",
  3843. "url": "https://github.com/symfony/doctrine-messenger.git",
  3844. "reference": "29015027fb63461e035246e07d74eeab9cb03304"
  3845. },
  3846. "dist": {
  3847. "type": "zip",
  3848. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/29015027fb63461e035246e07d74eeab9cb03304",
  3849. "reference": "29015027fb63461e035246e07d74eeab9cb03304",
  3850. "shasum": ""
  3851. },
  3852. "require": {
  3853. "doctrine/dbal": "^3.6|^4",
  3854. "php": ">=8.2",
  3855. "symfony/messenger": "^6.4|^7.0",
  3856. "symfony/service-contracts": "^2.5|^3"
  3857. },
  3858. "conflict": {
  3859. "doctrine/persistence": "<1.3"
  3860. },
  3861. "require-dev": {
  3862. "doctrine/persistence": "^1.3|^2|^3",
  3863. "symfony/property-access": "^6.4|^7.0",
  3864. "symfony/serializer": "^6.4|^7.0"
  3865. },
  3866. "type": "symfony-messenger-bridge",
  3867. "autoload": {
  3868. "psr-4": {
  3869. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  3870. },
  3871. "exclude-from-classmap": [
  3872. "/Tests/"
  3873. ]
  3874. },
  3875. "notification-url": "https://packagist.org/downloads/",
  3876. "license": [
  3877. "MIT"
  3878. ],
  3879. "authors": [
  3880. {
  3881. "name": "Fabien Potencier",
  3882. "email": "fabien@symfony.com"
  3883. },
  3884. {
  3885. "name": "Symfony Community",
  3886. "homepage": "https://symfony.com/contributors"
  3887. }
  3888. ],
  3889. "description": "Symfony Doctrine Messenger Bridge",
  3890. "homepage": "https://symfony.com",
  3891. "support": {
  3892. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.1.5"
  3893. },
  3894. "funding": [
  3895. {
  3896. "url": "https://symfony.com/sponsor",
  3897. "type": "custom"
  3898. },
  3899. {
  3900. "url": "https://github.com/fabpot",
  3901. "type": "github"
  3902. },
  3903. {
  3904. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3905. "type": "tidelift"
  3906. }
  3907. ],
  3908. "time": "2024-09-20T08:28:38+00:00"
  3909. },
  3910. {
  3911. "name": "symfony/dotenv",
  3912. "version": "v7.1.5",
  3913. "source": {
  3914. "type": "git",
  3915. "url": "https://github.com/symfony/dotenv.git",
  3916. "reference": "6d966200b399fa59759286f3fc7c919f0677c449"
  3917. },
  3918. "dist": {
  3919. "type": "zip",
  3920. "url": "https://api.github.com/repos/symfony/dotenv/zipball/6d966200b399fa59759286f3fc7c919f0677c449",
  3921. "reference": "6d966200b399fa59759286f3fc7c919f0677c449",
  3922. "shasum": ""
  3923. },
  3924. "require": {
  3925. "php": ">=8.2"
  3926. },
  3927. "conflict": {
  3928. "symfony/console": "<6.4",
  3929. "symfony/process": "<6.4"
  3930. },
  3931. "require-dev": {
  3932. "symfony/console": "^6.4|^7.0",
  3933. "symfony/process": "^6.4|^7.0"
  3934. },
  3935. "type": "library",
  3936. "autoload": {
  3937. "psr-4": {
  3938. "Symfony\\Component\\Dotenv\\": ""
  3939. },
  3940. "exclude-from-classmap": [
  3941. "/Tests/"
  3942. ]
  3943. },
  3944. "notification-url": "https://packagist.org/downloads/",
  3945. "license": [
  3946. "MIT"
  3947. ],
  3948. "authors": [
  3949. {
  3950. "name": "Fabien Potencier",
  3951. "email": "fabien@symfony.com"
  3952. },
  3953. {
  3954. "name": "Symfony Community",
  3955. "homepage": "https://symfony.com/contributors"
  3956. }
  3957. ],
  3958. "description": "Registers environment variables from a .env file",
  3959. "homepage": "https://symfony.com",
  3960. "keywords": [
  3961. "dotenv",
  3962. "env",
  3963. "environment"
  3964. ],
  3965. "support": {
  3966. "source": "https://github.com/symfony/dotenv/tree/v7.1.5"
  3967. },
  3968. "funding": [
  3969. {
  3970. "url": "https://symfony.com/sponsor",
  3971. "type": "custom"
  3972. },
  3973. {
  3974. "url": "https://github.com/fabpot",
  3975. "type": "github"
  3976. },
  3977. {
  3978. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3979. "type": "tidelift"
  3980. }
  3981. ],
  3982. "time": "2024-09-17T09:16:35+00:00"
  3983. },
  3984. {
  3985. "name": "symfony/error-handler",
  3986. "version": "v7.1.3",
  3987. "source": {
  3988. "type": "git",
  3989. "url": "https://github.com/symfony/error-handler.git",
  3990. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  3991. },
  3992. "dist": {
  3993. "type": "zip",
  3994. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  3995. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  3996. "shasum": ""
  3997. },
  3998. "require": {
  3999. "php": ">=8.2",
  4000. "psr/log": "^1|^2|^3",
  4001. "symfony/var-dumper": "^6.4|^7.0"
  4002. },
  4003. "conflict": {
  4004. "symfony/deprecation-contracts": "<2.5",
  4005. "symfony/http-kernel": "<6.4"
  4006. },
  4007. "require-dev": {
  4008. "symfony/deprecation-contracts": "^2.5|^3",
  4009. "symfony/http-kernel": "^6.4|^7.0",
  4010. "symfony/serializer": "^6.4|^7.0"
  4011. },
  4012. "bin": [
  4013. "Resources/bin/patch-type-declarations"
  4014. ],
  4015. "type": "library",
  4016. "autoload": {
  4017. "psr-4": {
  4018. "Symfony\\Component\\ErrorHandler\\": ""
  4019. },
  4020. "exclude-from-classmap": [
  4021. "/Tests/"
  4022. ]
  4023. },
  4024. "notification-url": "https://packagist.org/downloads/",
  4025. "license": [
  4026. "MIT"
  4027. ],
  4028. "authors": [
  4029. {
  4030. "name": "Fabien Potencier",
  4031. "email": "fabien@symfony.com"
  4032. },
  4033. {
  4034. "name": "Symfony Community",
  4035. "homepage": "https://symfony.com/contributors"
  4036. }
  4037. ],
  4038. "description": "Provides tools to manage errors and ease debugging PHP code",
  4039. "homepage": "https://symfony.com",
  4040. "support": {
  4041. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  4042. },
  4043. "funding": [
  4044. {
  4045. "url": "https://symfony.com/sponsor",
  4046. "type": "custom"
  4047. },
  4048. {
  4049. "url": "https://github.com/fabpot",
  4050. "type": "github"
  4051. },
  4052. {
  4053. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4054. "type": "tidelift"
  4055. }
  4056. ],
  4057. "time": "2024-07-26T13:02:51+00:00"
  4058. },
  4059. {
  4060. "name": "symfony/event-dispatcher",
  4061. "version": "v7.1.1",
  4062. "source": {
  4063. "type": "git",
  4064. "url": "https://github.com/symfony/event-dispatcher.git",
  4065. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  4066. },
  4067. "dist": {
  4068. "type": "zip",
  4069. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  4070. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  4071. "shasum": ""
  4072. },
  4073. "require": {
  4074. "php": ">=8.2",
  4075. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4076. },
  4077. "conflict": {
  4078. "symfony/dependency-injection": "<6.4",
  4079. "symfony/service-contracts": "<2.5"
  4080. },
  4081. "provide": {
  4082. "psr/event-dispatcher-implementation": "1.0",
  4083. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4084. },
  4085. "require-dev": {
  4086. "psr/log": "^1|^2|^3",
  4087. "symfony/config": "^6.4|^7.0",
  4088. "symfony/dependency-injection": "^6.4|^7.0",
  4089. "symfony/error-handler": "^6.4|^7.0",
  4090. "symfony/expression-language": "^6.4|^7.0",
  4091. "symfony/http-foundation": "^6.4|^7.0",
  4092. "symfony/service-contracts": "^2.5|^3",
  4093. "symfony/stopwatch": "^6.4|^7.0"
  4094. },
  4095. "type": "library",
  4096. "autoload": {
  4097. "psr-4": {
  4098. "Symfony\\Component\\EventDispatcher\\": ""
  4099. },
  4100. "exclude-from-classmap": [
  4101. "/Tests/"
  4102. ]
  4103. },
  4104. "notification-url": "https://packagist.org/downloads/",
  4105. "license": [
  4106. "MIT"
  4107. ],
  4108. "authors": [
  4109. {
  4110. "name": "Fabien Potencier",
  4111. "email": "fabien@symfony.com"
  4112. },
  4113. {
  4114. "name": "Symfony Community",
  4115. "homepage": "https://symfony.com/contributors"
  4116. }
  4117. ],
  4118. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4119. "homepage": "https://symfony.com",
  4120. "support": {
  4121. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  4122. },
  4123. "funding": [
  4124. {
  4125. "url": "https://symfony.com/sponsor",
  4126. "type": "custom"
  4127. },
  4128. {
  4129. "url": "https://github.com/fabpot",
  4130. "type": "github"
  4131. },
  4132. {
  4133. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4134. "type": "tidelift"
  4135. }
  4136. ],
  4137. "time": "2024-05-31T14:57:53+00:00"
  4138. },
  4139. {
  4140. "name": "symfony/event-dispatcher-contracts",
  4141. "version": "v3.5.0",
  4142. "source": {
  4143. "type": "git",
  4144. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4145. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  4146. },
  4147. "dist": {
  4148. "type": "zip",
  4149. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  4150. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  4151. "shasum": ""
  4152. },
  4153. "require": {
  4154. "php": ">=8.1",
  4155. "psr/event-dispatcher": "^1"
  4156. },
  4157. "type": "library",
  4158. "extra": {
  4159. "branch-alias": {
  4160. "dev-main": "3.5-dev"
  4161. },
  4162. "thanks": {
  4163. "name": "symfony/contracts",
  4164. "url": "https://github.com/symfony/contracts"
  4165. }
  4166. },
  4167. "autoload": {
  4168. "psr-4": {
  4169. "Symfony\\Contracts\\EventDispatcher\\": ""
  4170. }
  4171. },
  4172. "notification-url": "https://packagist.org/downloads/",
  4173. "license": [
  4174. "MIT"
  4175. ],
  4176. "authors": [
  4177. {
  4178. "name": "Nicolas Grekas",
  4179. "email": "p@tchwork.com"
  4180. },
  4181. {
  4182. "name": "Symfony Community",
  4183. "homepage": "https://symfony.com/contributors"
  4184. }
  4185. ],
  4186. "description": "Generic abstractions related to dispatching event",
  4187. "homepage": "https://symfony.com",
  4188. "keywords": [
  4189. "abstractions",
  4190. "contracts",
  4191. "decoupling",
  4192. "interfaces",
  4193. "interoperability",
  4194. "standards"
  4195. ],
  4196. "support": {
  4197. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  4198. },
  4199. "funding": [
  4200. {
  4201. "url": "https://symfony.com/sponsor",
  4202. "type": "custom"
  4203. },
  4204. {
  4205. "url": "https://github.com/fabpot",
  4206. "type": "github"
  4207. },
  4208. {
  4209. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4210. "type": "tidelift"
  4211. }
  4212. ],
  4213. "time": "2024-04-18T09:32:20+00:00"
  4214. },
  4215. {
  4216. "name": "symfony/expression-language",
  4217. "version": "v7.1.4",
  4218. "source": {
  4219. "type": "git",
  4220. "url": "https://github.com/symfony/expression-language.git",
  4221. "reference": "b9e4bc6685d513c10235145ed1042a6081635806"
  4222. },
  4223. "dist": {
  4224. "type": "zip",
  4225. "url": "https://api.github.com/repos/symfony/expression-language/zipball/b9e4bc6685d513c10235145ed1042a6081635806",
  4226. "reference": "b9e4bc6685d513c10235145ed1042a6081635806",
  4227. "shasum": ""
  4228. },
  4229. "require": {
  4230. "php": ">=8.2",
  4231. "symfony/cache": "^6.4|^7.0",
  4232. "symfony/deprecation-contracts": "^2.5|^3",
  4233. "symfony/service-contracts": "^2.5|^3"
  4234. },
  4235. "type": "library",
  4236. "autoload": {
  4237. "psr-4": {
  4238. "Symfony\\Component\\ExpressionLanguage\\": ""
  4239. },
  4240. "exclude-from-classmap": [
  4241. "/Tests/"
  4242. ]
  4243. },
  4244. "notification-url": "https://packagist.org/downloads/",
  4245. "license": [
  4246. "MIT"
  4247. ],
  4248. "authors": [
  4249. {
  4250. "name": "Fabien Potencier",
  4251. "email": "fabien@symfony.com"
  4252. },
  4253. {
  4254. "name": "Symfony Community",
  4255. "homepage": "https://symfony.com/contributors"
  4256. }
  4257. ],
  4258. "description": "Provides an engine that can compile and evaluate expressions",
  4259. "homepage": "https://symfony.com",
  4260. "support": {
  4261. "source": "https://github.com/symfony/expression-language/tree/v7.1.4"
  4262. },
  4263. "funding": [
  4264. {
  4265. "url": "https://symfony.com/sponsor",
  4266. "type": "custom"
  4267. },
  4268. {
  4269. "url": "https://github.com/fabpot",
  4270. "type": "github"
  4271. },
  4272. {
  4273. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4274. "type": "tidelift"
  4275. }
  4276. ],
  4277. "time": "2024-08-12T09:59:40+00:00"
  4278. },
  4279. {
  4280. "name": "symfony/filesystem",
  4281. "version": "v7.1.5",
  4282. "source": {
  4283. "type": "git",
  4284. "url": "https://github.com/symfony/filesystem.git",
  4285. "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a"
  4286. },
  4287. "dist": {
  4288. "type": "zip",
  4289. "url": "https://api.github.com/repos/symfony/filesystem/zipball/61fe0566189bf32e8cfee78335d8776f64a66f5a",
  4290. "reference": "61fe0566189bf32e8cfee78335d8776f64a66f5a",
  4291. "shasum": ""
  4292. },
  4293. "require": {
  4294. "php": ">=8.2",
  4295. "symfony/polyfill-ctype": "~1.8",
  4296. "symfony/polyfill-mbstring": "~1.8"
  4297. },
  4298. "require-dev": {
  4299. "symfony/process": "^6.4|^7.0"
  4300. },
  4301. "type": "library",
  4302. "autoload": {
  4303. "psr-4": {
  4304. "Symfony\\Component\\Filesystem\\": ""
  4305. },
  4306. "exclude-from-classmap": [
  4307. "/Tests/"
  4308. ]
  4309. },
  4310. "notification-url": "https://packagist.org/downloads/",
  4311. "license": [
  4312. "MIT"
  4313. ],
  4314. "authors": [
  4315. {
  4316. "name": "Fabien Potencier",
  4317. "email": "fabien@symfony.com"
  4318. },
  4319. {
  4320. "name": "Symfony Community",
  4321. "homepage": "https://symfony.com/contributors"
  4322. }
  4323. ],
  4324. "description": "Provides basic utilities for the filesystem",
  4325. "homepage": "https://symfony.com",
  4326. "support": {
  4327. "source": "https://github.com/symfony/filesystem/tree/v7.1.5"
  4328. },
  4329. "funding": [
  4330. {
  4331. "url": "https://symfony.com/sponsor",
  4332. "type": "custom"
  4333. },
  4334. {
  4335. "url": "https://github.com/fabpot",
  4336. "type": "github"
  4337. },
  4338. {
  4339. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4340. "type": "tidelift"
  4341. }
  4342. ],
  4343. "time": "2024-09-17T09:16:35+00:00"
  4344. },
  4345. {
  4346. "name": "symfony/finder",
  4347. "version": "v7.1.4",
  4348. "source": {
  4349. "type": "git",
  4350. "url": "https://github.com/symfony/finder.git",
  4351. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823"
  4352. },
  4353. "dist": {
  4354. "type": "zip",
  4355. "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823",
  4356. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823",
  4357. "shasum": ""
  4358. },
  4359. "require": {
  4360. "php": ">=8.2"
  4361. },
  4362. "require-dev": {
  4363. "symfony/filesystem": "^6.4|^7.0"
  4364. },
  4365. "type": "library",
  4366. "autoload": {
  4367. "psr-4": {
  4368. "Symfony\\Component\\Finder\\": ""
  4369. },
  4370. "exclude-from-classmap": [
  4371. "/Tests/"
  4372. ]
  4373. },
  4374. "notification-url": "https://packagist.org/downloads/",
  4375. "license": [
  4376. "MIT"
  4377. ],
  4378. "authors": [
  4379. {
  4380. "name": "Fabien Potencier",
  4381. "email": "fabien@symfony.com"
  4382. },
  4383. {
  4384. "name": "Symfony Community",
  4385. "homepage": "https://symfony.com/contributors"
  4386. }
  4387. ],
  4388. "description": "Finds files and directories via an intuitive fluent interface",
  4389. "homepage": "https://symfony.com",
  4390. "support": {
  4391. "source": "https://github.com/symfony/finder/tree/v7.1.4"
  4392. },
  4393. "funding": [
  4394. {
  4395. "url": "https://symfony.com/sponsor",
  4396. "type": "custom"
  4397. },
  4398. {
  4399. "url": "https://github.com/fabpot",
  4400. "type": "github"
  4401. },
  4402. {
  4403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4404. "type": "tidelift"
  4405. }
  4406. ],
  4407. "time": "2024-08-13T14:28:19+00:00"
  4408. },
  4409. {
  4410. "name": "symfony/flex",
  4411. "version": "v2.4.7",
  4412. "source": {
  4413. "type": "git",
  4414. "url": "https://github.com/symfony/flex.git",
  4415. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402"
  4416. },
  4417. "dist": {
  4418. "type": "zip",
  4419. "url": "https://api.github.com/repos/symfony/flex/zipball/92f4fba342161ff36072bd3b8e0b3c6c23160402",
  4420. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402",
  4421. "shasum": ""
  4422. },
  4423. "require": {
  4424. "composer-plugin-api": "^2.1",
  4425. "php": ">=8.0"
  4426. },
  4427. "conflict": {
  4428. "composer/semver": "<1.7.2"
  4429. },
  4430. "require-dev": {
  4431. "composer/composer": "^2.1",
  4432. "symfony/dotenv": "^5.4|^6.0",
  4433. "symfony/filesystem": "^5.4|^6.0",
  4434. "symfony/phpunit-bridge": "^5.4|^6.0",
  4435. "symfony/process": "^5.4|^6.0"
  4436. },
  4437. "type": "composer-plugin",
  4438. "extra": {
  4439. "class": "Symfony\\Flex\\Flex"
  4440. },
  4441. "autoload": {
  4442. "psr-4": {
  4443. "Symfony\\Flex\\": "src"
  4444. }
  4445. },
  4446. "notification-url": "https://packagist.org/downloads/",
  4447. "license": [
  4448. "MIT"
  4449. ],
  4450. "authors": [
  4451. {
  4452. "name": "Fabien Potencier",
  4453. "email": "fabien.potencier@gmail.com"
  4454. }
  4455. ],
  4456. "description": "Composer plugin for Symfony",
  4457. "support": {
  4458. "issues": "https://github.com/symfony/flex/issues",
  4459. "source": "https://github.com/symfony/flex/tree/v2.4.7"
  4460. },
  4461. "funding": [
  4462. {
  4463. "url": "https://symfony.com/sponsor",
  4464. "type": "custom"
  4465. },
  4466. {
  4467. "url": "https://github.com/fabpot",
  4468. "type": "github"
  4469. },
  4470. {
  4471. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4472. "type": "tidelift"
  4473. }
  4474. ],
  4475. "time": "2024-10-07T08:51:54+00:00"
  4476. },
  4477. {
  4478. "name": "symfony/form",
  4479. "version": "v7.1.5",
  4480. "source": {
  4481. "type": "git",
  4482. "url": "https://github.com/symfony/form.git",
  4483. "reference": "6b8b53ad6d42f14b158c896163b96ff260d78222"
  4484. },
  4485. "dist": {
  4486. "type": "zip",
  4487. "url": "https://api.github.com/repos/symfony/form/zipball/6b8b53ad6d42f14b158c896163b96ff260d78222",
  4488. "reference": "6b8b53ad6d42f14b158c896163b96ff260d78222",
  4489. "shasum": ""
  4490. },
  4491. "require": {
  4492. "php": ">=8.2",
  4493. "symfony/deprecation-contracts": "^2.5|^3",
  4494. "symfony/event-dispatcher": "^6.4|^7.0",
  4495. "symfony/options-resolver": "^6.4|^7.0",
  4496. "symfony/polyfill-ctype": "~1.8",
  4497. "symfony/polyfill-intl-icu": "^1.21",
  4498. "symfony/polyfill-mbstring": "~1.0",
  4499. "symfony/property-access": "^6.4|^7.0",
  4500. "symfony/service-contracts": "^2.5|^3"
  4501. },
  4502. "conflict": {
  4503. "symfony/console": "<6.4",
  4504. "symfony/dependency-injection": "<6.4",
  4505. "symfony/doctrine-bridge": "<6.4",
  4506. "symfony/error-handler": "<6.4",
  4507. "symfony/framework-bundle": "<6.4",
  4508. "symfony/http-kernel": "<6.4",
  4509. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  4510. "symfony/translation-contracts": "<2.5",
  4511. "symfony/twig-bridge": "<6.4"
  4512. },
  4513. "require-dev": {
  4514. "doctrine/collections": "^1.0|^2.0",
  4515. "symfony/config": "^6.4|^7.0",
  4516. "symfony/console": "^6.4|^7.0",
  4517. "symfony/dependency-injection": "^6.4|^7.0",
  4518. "symfony/expression-language": "^6.4|^7.0",
  4519. "symfony/html-sanitizer": "^6.4|^7.0",
  4520. "symfony/http-foundation": "^6.4|^7.0",
  4521. "symfony/http-kernel": "^6.4|^7.0",
  4522. "symfony/intl": "^6.4|^7.0",
  4523. "symfony/security-core": "^6.4|^7.0",
  4524. "symfony/security-csrf": "^6.4|^7.0",
  4525. "symfony/translation": "^6.4.3|^7.0.3",
  4526. "symfony/uid": "^6.4|^7.0",
  4527. "symfony/validator": "^6.4|^7.0",
  4528. "symfony/var-dumper": "^6.4|^7.0"
  4529. },
  4530. "type": "library",
  4531. "autoload": {
  4532. "psr-4": {
  4533. "Symfony\\Component\\Form\\": ""
  4534. },
  4535. "exclude-from-classmap": [
  4536. "/Tests/"
  4537. ]
  4538. },
  4539. "notification-url": "https://packagist.org/downloads/",
  4540. "license": [
  4541. "MIT"
  4542. ],
  4543. "authors": [
  4544. {
  4545. "name": "Fabien Potencier",
  4546. "email": "fabien@symfony.com"
  4547. },
  4548. {
  4549. "name": "Symfony Community",
  4550. "homepage": "https://symfony.com/contributors"
  4551. }
  4552. ],
  4553. "description": "Allows to easily create, process and reuse HTML forms",
  4554. "homepage": "https://symfony.com",
  4555. "support": {
  4556. "source": "https://github.com/symfony/form/tree/v7.1.5"
  4557. },
  4558. "funding": [
  4559. {
  4560. "url": "https://symfony.com/sponsor",
  4561. "type": "custom"
  4562. },
  4563. {
  4564. "url": "https://github.com/fabpot",
  4565. "type": "github"
  4566. },
  4567. {
  4568. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4569. "type": "tidelift"
  4570. }
  4571. ],
  4572. "time": "2024-09-20T08:28:38+00:00"
  4573. },
  4574. {
  4575. "name": "symfony/framework-bundle",
  4576. "version": "v7.1.5",
  4577. "source": {
  4578. "type": "git",
  4579. "url": "https://github.com/symfony/framework-bundle.git",
  4580. "reference": "8a792de86230c13a9de7750c0c8b23cc083183d4"
  4581. },
  4582. "dist": {
  4583. "type": "zip",
  4584. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/8a792de86230c13a9de7750c0c8b23cc083183d4",
  4585. "reference": "8a792de86230c13a9de7750c0c8b23cc083183d4",
  4586. "shasum": ""
  4587. },
  4588. "require": {
  4589. "composer-runtime-api": ">=2.1",
  4590. "ext-xml": "*",
  4591. "php": ">=8.2",
  4592. "symfony/cache": "^6.4|^7.0",
  4593. "symfony/config": "^6.4|^7.0",
  4594. "symfony/dependency-injection": "^7.1.5",
  4595. "symfony/deprecation-contracts": "^2.5|^3",
  4596. "symfony/error-handler": "^6.4|^7.0",
  4597. "symfony/event-dispatcher": "^6.4|^7.0",
  4598. "symfony/filesystem": "^7.1",
  4599. "symfony/finder": "^6.4|^7.0",
  4600. "symfony/http-foundation": "^6.4|^7.0",
  4601. "symfony/http-kernel": "^6.4|^7.0",
  4602. "symfony/polyfill-mbstring": "~1.0",
  4603. "symfony/routing": "^6.4|^7.0"
  4604. },
  4605. "conflict": {
  4606. "doctrine/persistence": "<1.3",
  4607. "phpdocumentor/reflection-docblock": "<3.2.2",
  4608. "phpdocumentor/type-resolver": "<1.4.0",
  4609. "symfony/asset": "<6.4",
  4610. "symfony/asset-mapper": "<6.4",
  4611. "symfony/clock": "<6.4",
  4612. "symfony/console": "<6.4",
  4613. "symfony/dom-crawler": "<6.4",
  4614. "symfony/dotenv": "<6.4",
  4615. "symfony/form": "<6.4",
  4616. "symfony/http-client": "<6.4",
  4617. "symfony/lock": "<6.4",
  4618. "symfony/mailer": "<6.4",
  4619. "symfony/messenger": "<6.4",
  4620. "symfony/mime": "<6.4",
  4621. "symfony/property-access": "<6.4",
  4622. "symfony/property-info": "<6.4",
  4623. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  4624. "symfony/security-core": "<6.4",
  4625. "symfony/security-csrf": "<6.4",
  4626. "symfony/serializer": "<6.4",
  4627. "symfony/stopwatch": "<6.4",
  4628. "symfony/translation": "<6.4",
  4629. "symfony/twig-bridge": "<6.4",
  4630. "symfony/twig-bundle": "<6.4",
  4631. "symfony/validator": "<6.4",
  4632. "symfony/web-profiler-bundle": "<6.4",
  4633. "symfony/workflow": "<6.4"
  4634. },
  4635. "require-dev": {
  4636. "doctrine/persistence": "^1.3|^2|^3",
  4637. "dragonmantank/cron-expression": "^3.1",
  4638. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4639. "seld/jsonlint": "^1.10",
  4640. "symfony/asset": "^6.4|^7.0",
  4641. "symfony/asset-mapper": "^6.4|^7.0",
  4642. "symfony/browser-kit": "^6.4|^7.0",
  4643. "symfony/clock": "^6.4|^7.0",
  4644. "symfony/console": "^6.4|^7.0",
  4645. "symfony/css-selector": "^6.4|^7.0",
  4646. "symfony/dom-crawler": "^6.4|^7.0",
  4647. "symfony/dotenv": "^6.4|^7.0",
  4648. "symfony/expression-language": "^6.4|^7.0",
  4649. "symfony/form": "^6.4|^7.0",
  4650. "symfony/html-sanitizer": "^6.4|^7.0",
  4651. "symfony/http-client": "^6.4|^7.0",
  4652. "symfony/lock": "^6.4|^7.0",
  4653. "symfony/mailer": "^6.4|^7.0",
  4654. "symfony/messenger": "^6.4|^7.0",
  4655. "symfony/mime": "^6.4|^7.0",
  4656. "symfony/notifier": "^6.4|^7.0",
  4657. "symfony/polyfill-intl-icu": "~1.0",
  4658. "symfony/process": "^6.4|^7.0",
  4659. "symfony/property-info": "^6.4|^7.0",
  4660. "symfony/rate-limiter": "^6.4|^7.0",
  4661. "symfony/scheduler": "^6.4.4|^7.0.4",
  4662. "symfony/security-bundle": "^6.4|^7.0",
  4663. "symfony/semaphore": "^6.4|^7.0",
  4664. "symfony/serializer": "^6.4|^7.0",
  4665. "symfony/stopwatch": "^6.4|^7.0",
  4666. "symfony/string": "^6.4|^7.0",
  4667. "symfony/translation": "^6.4|^7.0",
  4668. "symfony/twig-bundle": "^6.4|^7.0",
  4669. "symfony/type-info": "^7.1",
  4670. "symfony/uid": "^6.4|^7.0",
  4671. "symfony/validator": "^6.4|^7.0",
  4672. "symfony/web-link": "^6.4|^7.0",
  4673. "symfony/workflow": "^6.4|^7.0",
  4674. "symfony/yaml": "^6.4|^7.0",
  4675. "twig/twig": "^3.0.4"
  4676. },
  4677. "type": "symfony-bundle",
  4678. "autoload": {
  4679. "psr-4": {
  4680. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4681. },
  4682. "exclude-from-classmap": [
  4683. "/Tests/"
  4684. ]
  4685. },
  4686. "notification-url": "https://packagist.org/downloads/",
  4687. "license": [
  4688. "MIT"
  4689. ],
  4690. "authors": [
  4691. {
  4692. "name": "Fabien Potencier",
  4693. "email": "fabien@symfony.com"
  4694. },
  4695. {
  4696. "name": "Symfony Community",
  4697. "homepage": "https://symfony.com/contributors"
  4698. }
  4699. ],
  4700. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4701. "homepage": "https://symfony.com",
  4702. "support": {
  4703. "source": "https://github.com/symfony/framework-bundle/tree/v7.1.5"
  4704. },
  4705. "funding": [
  4706. {
  4707. "url": "https://symfony.com/sponsor",
  4708. "type": "custom"
  4709. },
  4710. {
  4711. "url": "https://github.com/fabpot",
  4712. "type": "github"
  4713. },
  4714. {
  4715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4716. "type": "tidelift"
  4717. }
  4718. ],
  4719. "time": "2024-09-20T13:35:23+00:00"
  4720. },
  4721. {
  4722. "name": "symfony/http-client",
  4723. "version": "v7.1.5",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://github.com/symfony/http-client.git",
  4727. "reference": "abca35865118edf35a23f2f24978a1784c831cb4"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://api.github.com/repos/symfony/http-client/zipball/abca35865118edf35a23f2f24978a1784c831cb4",
  4732. "reference": "abca35865118edf35a23f2f24978a1784c831cb4",
  4733. "shasum": ""
  4734. },
  4735. "require": {
  4736. "php": ">=8.2",
  4737. "psr/log": "^1|^2|^3",
  4738. "symfony/deprecation-contracts": "^2.5|^3",
  4739. "symfony/http-client-contracts": "^3.4.1",
  4740. "symfony/service-contracts": "^2.5|^3"
  4741. },
  4742. "conflict": {
  4743. "php-http/discovery": "<1.15",
  4744. "symfony/http-foundation": "<6.4"
  4745. },
  4746. "provide": {
  4747. "php-http/async-client-implementation": "*",
  4748. "php-http/client-implementation": "*",
  4749. "psr/http-client-implementation": "1.0",
  4750. "symfony/http-client-implementation": "3.0"
  4751. },
  4752. "require-dev": {
  4753. "amphp/amp": "^2.5",
  4754. "amphp/http-client": "^4.2.1",
  4755. "amphp/http-tunnel": "^1.0",
  4756. "amphp/socket": "^1.1",
  4757. "guzzlehttp/promises": "^1.4|^2.0",
  4758. "nyholm/psr7": "^1.0",
  4759. "php-http/httplug": "^1.0|^2.0",
  4760. "psr/http-client": "^1.0",
  4761. "symfony/dependency-injection": "^6.4|^7.0",
  4762. "symfony/http-kernel": "^6.4|^7.0",
  4763. "symfony/messenger": "^6.4|^7.0",
  4764. "symfony/process": "^6.4|^7.0",
  4765. "symfony/rate-limiter": "^6.4|^7.0",
  4766. "symfony/stopwatch": "^6.4|^7.0"
  4767. },
  4768. "type": "library",
  4769. "autoload": {
  4770. "psr-4": {
  4771. "Symfony\\Component\\HttpClient\\": ""
  4772. },
  4773. "exclude-from-classmap": [
  4774. "/Tests/"
  4775. ]
  4776. },
  4777. "notification-url": "https://packagist.org/downloads/",
  4778. "license": [
  4779. "MIT"
  4780. ],
  4781. "authors": [
  4782. {
  4783. "name": "Nicolas Grekas",
  4784. "email": "p@tchwork.com"
  4785. },
  4786. {
  4787. "name": "Symfony Community",
  4788. "homepage": "https://symfony.com/contributors"
  4789. }
  4790. ],
  4791. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4792. "homepage": "https://symfony.com",
  4793. "keywords": [
  4794. "http"
  4795. ],
  4796. "support": {
  4797. "source": "https://github.com/symfony/http-client/tree/v7.1.5"
  4798. },
  4799. "funding": [
  4800. {
  4801. "url": "https://symfony.com/sponsor",
  4802. "type": "custom"
  4803. },
  4804. {
  4805. "url": "https://github.com/fabpot",
  4806. "type": "github"
  4807. },
  4808. {
  4809. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4810. "type": "tidelift"
  4811. }
  4812. ],
  4813. "time": "2024-09-20T13:35:23+00:00"
  4814. },
  4815. {
  4816. "name": "symfony/http-client-contracts",
  4817. "version": "v3.5.0",
  4818. "source": {
  4819. "type": "git",
  4820. "url": "https://github.com/symfony/http-client-contracts.git",
  4821. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  4822. },
  4823. "dist": {
  4824. "type": "zip",
  4825. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  4826. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  4827. "shasum": ""
  4828. },
  4829. "require": {
  4830. "php": ">=8.1"
  4831. },
  4832. "type": "library",
  4833. "extra": {
  4834. "branch-alias": {
  4835. "dev-main": "3.5-dev"
  4836. },
  4837. "thanks": {
  4838. "name": "symfony/contracts",
  4839. "url": "https://github.com/symfony/contracts"
  4840. }
  4841. },
  4842. "autoload": {
  4843. "psr-4": {
  4844. "Symfony\\Contracts\\HttpClient\\": ""
  4845. },
  4846. "exclude-from-classmap": [
  4847. "/Test/"
  4848. ]
  4849. },
  4850. "notification-url": "https://packagist.org/downloads/",
  4851. "license": [
  4852. "MIT"
  4853. ],
  4854. "authors": [
  4855. {
  4856. "name": "Nicolas Grekas",
  4857. "email": "p@tchwork.com"
  4858. },
  4859. {
  4860. "name": "Symfony Community",
  4861. "homepage": "https://symfony.com/contributors"
  4862. }
  4863. ],
  4864. "description": "Generic abstractions related to HTTP clients",
  4865. "homepage": "https://symfony.com",
  4866. "keywords": [
  4867. "abstractions",
  4868. "contracts",
  4869. "decoupling",
  4870. "interfaces",
  4871. "interoperability",
  4872. "standards"
  4873. ],
  4874. "support": {
  4875. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  4876. },
  4877. "funding": [
  4878. {
  4879. "url": "https://symfony.com/sponsor",
  4880. "type": "custom"
  4881. },
  4882. {
  4883. "url": "https://github.com/fabpot",
  4884. "type": "github"
  4885. },
  4886. {
  4887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4888. "type": "tidelift"
  4889. }
  4890. ],
  4891. "time": "2024-04-18T09:32:20+00:00"
  4892. },
  4893. {
  4894. "name": "symfony/http-foundation",
  4895. "version": "v7.1.5",
  4896. "source": {
  4897. "type": "git",
  4898. "url": "https://github.com/symfony/http-foundation.git",
  4899. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b"
  4900. },
  4901. "dist": {
  4902. "type": "zip",
  4903. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e30ef73b1e44eea7eb37ba69600a354e553f694b",
  4904. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b",
  4905. "shasum": ""
  4906. },
  4907. "require": {
  4908. "php": ">=8.2",
  4909. "symfony/polyfill-mbstring": "~1.1",
  4910. "symfony/polyfill-php83": "^1.27"
  4911. },
  4912. "conflict": {
  4913. "doctrine/dbal": "<3.6",
  4914. "symfony/cache": "<6.4"
  4915. },
  4916. "require-dev": {
  4917. "doctrine/dbal": "^3.6|^4",
  4918. "predis/predis": "^1.1|^2.0",
  4919. "symfony/cache": "^6.4|^7.0",
  4920. "symfony/dependency-injection": "^6.4|^7.0",
  4921. "symfony/expression-language": "^6.4|^7.0",
  4922. "symfony/http-kernel": "^6.4|^7.0",
  4923. "symfony/mime": "^6.4|^7.0",
  4924. "symfony/rate-limiter": "^6.4|^7.0"
  4925. },
  4926. "type": "library",
  4927. "autoload": {
  4928. "psr-4": {
  4929. "Symfony\\Component\\HttpFoundation\\": ""
  4930. },
  4931. "exclude-from-classmap": [
  4932. "/Tests/"
  4933. ]
  4934. },
  4935. "notification-url": "https://packagist.org/downloads/",
  4936. "license": [
  4937. "MIT"
  4938. ],
  4939. "authors": [
  4940. {
  4941. "name": "Fabien Potencier",
  4942. "email": "fabien@symfony.com"
  4943. },
  4944. {
  4945. "name": "Symfony Community",
  4946. "homepage": "https://symfony.com/contributors"
  4947. }
  4948. ],
  4949. "description": "Defines an object-oriented layer for the HTTP specification",
  4950. "homepage": "https://symfony.com",
  4951. "support": {
  4952. "source": "https://github.com/symfony/http-foundation/tree/v7.1.5"
  4953. },
  4954. "funding": [
  4955. {
  4956. "url": "https://symfony.com/sponsor",
  4957. "type": "custom"
  4958. },
  4959. {
  4960. "url": "https://github.com/fabpot",
  4961. "type": "github"
  4962. },
  4963. {
  4964. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4965. "type": "tidelift"
  4966. }
  4967. ],
  4968. "time": "2024-09-20T08:28:38+00:00"
  4969. },
  4970. {
  4971. "name": "symfony/http-kernel",
  4972. "version": "v7.1.5",
  4973. "source": {
  4974. "type": "git",
  4975. "url": "https://github.com/symfony/http-kernel.git",
  4976. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b"
  4977. },
  4978. "dist": {
  4979. "type": "zip",
  4980. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/44204d96150a9df1fc57601ec933d23fefc2d65b",
  4981. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b",
  4982. "shasum": ""
  4983. },
  4984. "require": {
  4985. "php": ">=8.2",
  4986. "psr/log": "^1|^2|^3",
  4987. "symfony/deprecation-contracts": "^2.5|^3",
  4988. "symfony/error-handler": "^6.4|^7.0",
  4989. "symfony/event-dispatcher": "^6.4|^7.0",
  4990. "symfony/http-foundation": "^6.4|^7.0",
  4991. "symfony/polyfill-ctype": "^1.8"
  4992. },
  4993. "conflict": {
  4994. "symfony/browser-kit": "<6.4",
  4995. "symfony/cache": "<6.4",
  4996. "symfony/config": "<6.4",
  4997. "symfony/console": "<6.4",
  4998. "symfony/dependency-injection": "<6.4",
  4999. "symfony/doctrine-bridge": "<6.4",
  5000. "symfony/form": "<6.4",
  5001. "symfony/http-client": "<6.4",
  5002. "symfony/http-client-contracts": "<2.5",
  5003. "symfony/mailer": "<6.4",
  5004. "symfony/messenger": "<6.4",
  5005. "symfony/translation": "<6.4",
  5006. "symfony/translation-contracts": "<2.5",
  5007. "symfony/twig-bridge": "<6.4",
  5008. "symfony/validator": "<6.4",
  5009. "symfony/var-dumper": "<6.4",
  5010. "twig/twig": "<3.0.4"
  5011. },
  5012. "provide": {
  5013. "psr/log-implementation": "1.0|2.0|3.0"
  5014. },
  5015. "require-dev": {
  5016. "psr/cache": "^1.0|^2.0|^3.0",
  5017. "symfony/browser-kit": "^6.4|^7.0",
  5018. "symfony/clock": "^6.4|^7.0",
  5019. "symfony/config": "^6.4|^7.0",
  5020. "symfony/console": "^6.4|^7.0",
  5021. "symfony/css-selector": "^6.4|^7.0",
  5022. "symfony/dependency-injection": "^6.4|^7.0",
  5023. "symfony/dom-crawler": "^6.4|^7.0",
  5024. "symfony/expression-language": "^6.4|^7.0",
  5025. "symfony/finder": "^6.4|^7.0",
  5026. "symfony/http-client-contracts": "^2.5|^3",
  5027. "symfony/process": "^6.4|^7.0",
  5028. "symfony/property-access": "^7.1",
  5029. "symfony/routing": "^6.4|^7.0",
  5030. "symfony/serializer": "^7.1",
  5031. "symfony/stopwatch": "^6.4|^7.0",
  5032. "symfony/translation": "^6.4|^7.0",
  5033. "symfony/translation-contracts": "^2.5|^3",
  5034. "symfony/uid": "^6.4|^7.0",
  5035. "symfony/validator": "^6.4|^7.0",
  5036. "symfony/var-dumper": "^6.4|^7.0",
  5037. "symfony/var-exporter": "^6.4|^7.0",
  5038. "twig/twig": "^3.0.4"
  5039. },
  5040. "type": "library",
  5041. "autoload": {
  5042. "psr-4": {
  5043. "Symfony\\Component\\HttpKernel\\": ""
  5044. },
  5045. "exclude-from-classmap": [
  5046. "/Tests/"
  5047. ]
  5048. },
  5049. "notification-url": "https://packagist.org/downloads/",
  5050. "license": [
  5051. "MIT"
  5052. ],
  5053. "authors": [
  5054. {
  5055. "name": "Fabien Potencier",
  5056. "email": "fabien@symfony.com"
  5057. },
  5058. {
  5059. "name": "Symfony Community",
  5060. "homepage": "https://symfony.com/contributors"
  5061. }
  5062. ],
  5063. "description": "Provides a structured process for converting a Request into a Response",
  5064. "homepage": "https://symfony.com",
  5065. "support": {
  5066. "source": "https://github.com/symfony/http-kernel/tree/v7.1.5"
  5067. },
  5068. "funding": [
  5069. {
  5070. "url": "https://symfony.com/sponsor",
  5071. "type": "custom"
  5072. },
  5073. {
  5074. "url": "https://github.com/fabpot",
  5075. "type": "github"
  5076. },
  5077. {
  5078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5079. "type": "tidelift"
  5080. }
  5081. ],
  5082. "time": "2024-09-21T06:09:21+00:00"
  5083. },
  5084. {
  5085. "name": "symfony/intl",
  5086. "version": "v7.1.5",
  5087. "source": {
  5088. "type": "git",
  5089. "url": "https://github.com/symfony/intl.git",
  5090. "reference": "a0ba7a400e4c915500762c998355bea219a32d6b"
  5091. },
  5092. "dist": {
  5093. "type": "zip",
  5094. "url": "https://api.github.com/repos/symfony/intl/zipball/a0ba7a400e4c915500762c998355bea219a32d6b",
  5095. "reference": "a0ba7a400e4c915500762c998355bea219a32d6b",
  5096. "shasum": ""
  5097. },
  5098. "require": {
  5099. "php": ">=8.2",
  5100. "symfony/deprecation-contracts": "^2.5|^3"
  5101. },
  5102. "conflict": {
  5103. "symfony/string": "<7.1"
  5104. },
  5105. "require-dev": {
  5106. "symfony/filesystem": "^6.4|^7.0",
  5107. "symfony/var-exporter": "^6.4|^7.0"
  5108. },
  5109. "type": "library",
  5110. "autoload": {
  5111. "psr-4": {
  5112. "Symfony\\Component\\Intl\\": ""
  5113. },
  5114. "exclude-from-classmap": [
  5115. "/Tests/",
  5116. "/Resources/data/"
  5117. ]
  5118. },
  5119. "notification-url": "https://packagist.org/downloads/",
  5120. "license": [
  5121. "MIT"
  5122. ],
  5123. "authors": [
  5124. {
  5125. "name": "Bernhard Schussek",
  5126. "email": "bschussek@gmail.com"
  5127. },
  5128. {
  5129. "name": "Eriksen Costa",
  5130. "email": "eriksen.costa@infranology.com.br"
  5131. },
  5132. {
  5133. "name": "Igor Wiedler",
  5134. "email": "igor@wiedler.ch"
  5135. },
  5136. {
  5137. "name": "Symfony Community",
  5138. "homepage": "https://symfony.com/contributors"
  5139. }
  5140. ],
  5141. "description": "Provides access to the localization data of the ICU library",
  5142. "homepage": "https://symfony.com",
  5143. "keywords": [
  5144. "i18n",
  5145. "icu",
  5146. "internationalization",
  5147. "intl",
  5148. "l10n",
  5149. "localization"
  5150. ],
  5151. "support": {
  5152. "source": "https://github.com/symfony/intl/tree/v7.1.5"
  5153. },
  5154. "funding": [
  5155. {
  5156. "url": "https://symfony.com/sponsor",
  5157. "type": "custom"
  5158. },
  5159. {
  5160. "url": "https://github.com/fabpot",
  5161. "type": "github"
  5162. },
  5163. {
  5164. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5165. "type": "tidelift"
  5166. }
  5167. ],
  5168. "time": "2024-09-20T08:28:38+00:00"
  5169. },
  5170. {
  5171. "name": "symfony/mailer",
  5172. "version": "v7.1.5",
  5173. "source": {
  5174. "type": "git",
  5175. "url": "https://github.com/symfony/mailer.git",
  5176. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b"
  5177. },
  5178. "dist": {
  5179. "type": "zip",
  5180. "url": "https://api.github.com/repos/symfony/mailer/zipball/bbf21460c56f29810da3df3e206e38dfbb01e80b",
  5181. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b",
  5182. "shasum": ""
  5183. },
  5184. "require": {
  5185. "egulias/email-validator": "^2.1.10|^3|^4",
  5186. "php": ">=8.2",
  5187. "psr/event-dispatcher": "^1",
  5188. "psr/log": "^1|^2|^3",
  5189. "symfony/event-dispatcher": "^6.4|^7.0",
  5190. "symfony/mime": "^6.4|^7.0",
  5191. "symfony/service-contracts": "^2.5|^3"
  5192. },
  5193. "conflict": {
  5194. "symfony/http-client-contracts": "<2.5",
  5195. "symfony/http-kernel": "<6.4",
  5196. "symfony/messenger": "<6.4",
  5197. "symfony/mime": "<6.4",
  5198. "symfony/twig-bridge": "<6.4"
  5199. },
  5200. "require-dev": {
  5201. "symfony/console": "^6.4|^7.0",
  5202. "symfony/http-client": "^6.4|^7.0",
  5203. "symfony/messenger": "^6.4|^7.0",
  5204. "symfony/twig-bridge": "^6.4|^7.0"
  5205. },
  5206. "type": "library",
  5207. "autoload": {
  5208. "psr-4": {
  5209. "Symfony\\Component\\Mailer\\": ""
  5210. },
  5211. "exclude-from-classmap": [
  5212. "/Tests/"
  5213. ]
  5214. },
  5215. "notification-url": "https://packagist.org/downloads/",
  5216. "license": [
  5217. "MIT"
  5218. ],
  5219. "authors": [
  5220. {
  5221. "name": "Fabien Potencier",
  5222. "email": "fabien@symfony.com"
  5223. },
  5224. {
  5225. "name": "Symfony Community",
  5226. "homepage": "https://symfony.com/contributors"
  5227. }
  5228. ],
  5229. "description": "Helps sending emails",
  5230. "homepage": "https://symfony.com",
  5231. "support": {
  5232. "source": "https://github.com/symfony/mailer/tree/v7.1.5"
  5233. },
  5234. "funding": [
  5235. {
  5236. "url": "https://symfony.com/sponsor",
  5237. "type": "custom"
  5238. },
  5239. {
  5240. "url": "https://github.com/fabpot",
  5241. "type": "github"
  5242. },
  5243. {
  5244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5245. "type": "tidelift"
  5246. }
  5247. ],
  5248. "time": "2024-09-08T12:32:26+00:00"
  5249. },
  5250. {
  5251. "name": "symfony/messenger",
  5252. "version": "v7.1.5",
  5253. "source": {
  5254. "type": "git",
  5255. "url": "https://github.com/symfony/messenger.git",
  5256. "reference": "e1c0ced845e3dac12ab428c5ed42dbe7a58ca576"
  5257. },
  5258. "dist": {
  5259. "type": "zip",
  5260. "url": "https://api.github.com/repos/symfony/messenger/zipball/e1c0ced845e3dac12ab428c5ed42dbe7a58ca576",
  5261. "reference": "e1c0ced845e3dac12ab428c5ed42dbe7a58ca576",
  5262. "shasum": ""
  5263. },
  5264. "require": {
  5265. "php": ">=8.2",
  5266. "psr/log": "^1|^2|^3",
  5267. "symfony/clock": "^6.4|^7.0"
  5268. },
  5269. "conflict": {
  5270. "symfony/console": "<6.4",
  5271. "symfony/event-dispatcher": "<6.4",
  5272. "symfony/event-dispatcher-contracts": "<2.5",
  5273. "symfony/framework-bundle": "<6.4",
  5274. "symfony/http-kernel": "<6.4",
  5275. "symfony/serializer": "<6.4"
  5276. },
  5277. "require-dev": {
  5278. "psr/cache": "^1.0|^2.0|^3.0",
  5279. "symfony/console": "^6.4|^7.0",
  5280. "symfony/dependency-injection": "^6.4|^7.0",
  5281. "symfony/event-dispatcher": "^6.4|^7.0",
  5282. "symfony/http-kernel": "^6.4|^7.0",
  5283. "symfony/process": "^6.4|^7.0",
  5284. "symfony/property-access": "^6.4|^7.0",
  5285. "symfony/rate-limiter": "^6.4|^7.0",
  5286. "symfony/routing": "^6.4|^7.0",
  5287. "symfony/serializer": "^6.4|^7.0",
  5288. "symfony/service-contracts": "^2.5|^3",
  5289. "symfony/stopwatch": "^6.4|^7.0",
  5290. "symfony/validator": "^6.4|^7.0"
  5291. },
  5292. "type": "library",
  5293. "autoload": {
  5294. "psr-4": {
  5295. "Symfony\\Component\\Messenger\\": ""
  5296. },
  5297. "exclude-from-classmap": [
  5298. "/Tests/"
  5299. ]
  5300. },
  5301. "notification-url": "https://packagist.org/downloads/",
  5302. "license": [
  5303. "MIT"
  5304. ],
  5305. "authors": [
  5306. {
  5307. "name": "Samuel Roze",
  5308. "email": "samuel.roze@gmail.com"
  5309. },
  5310. {
  5311. "name": "Symfony Community",
  5312. "homepage": "https://symfony.com/contributors"
  5313. }
  5314. ],
  5315. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  5316. "homepage": "https://symfony.com",
  5317. "support": {
  5318. "source": "https://github.com/symfony/messenger/tree/v7.1.5"
  5319. },
  5320. "funding": [
  5321. {
  5322. "url": "https://symfony.com/sponsor",
  5323. "type": "custom"
  5324. },
  5325. {
  5326. "url": "https://github.com/fabpot",
  5327. "type": "github"
  5328. },
  5329. {
  5330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5331. "type": "tidelift"
  5332. }
  5333. ],
  5334. "time": "2024-09-08T12:32:26+00:00"
  5335. },
  5336. {
  5337. "name": "symfony/mime",
  5338. "version": "v7.1.5",
  5339. "source": {
  5340. "type": "git",
  5341. "url": "https://github.com/symfony/mime.git",
  5342. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff"
  5343. },
  5344. "dist": {
  5345. "type": "zip",
  5346. "url": "https://api.github.com/repos/symfony/mime/zipball/711d2e167e8ce65b05aea6b258c449671cdd38ff",
  5347. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff",
  5348. "shasum": ""
  5349. },
  5350. "require": {
  5351. "php": ">=8.2",
  5352. "symfony/polyfill-intl-idn": "^1.10",
  5353. "symfony/polyfill-mbstring": "^1.0"
  5354. },
  5355. "conflict": {
  5356. "egulias/email-validator": "~3.0.0",
  5357. "phpdocumentor/reflection-docblock": "<3.2.2",
  5358. "phpdocumentor/type-resolver": "<1.4.0",
  5359. "symfony/mailer": "<6.4",
  5360. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  5361. },
  5362. "require-dev": {
  5363. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5364. "league/html-to-markdown": "^5.0",
  5365. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5366. "symfony/dependency-injection": "^6.4|^7.0",
  5367. "symfony/process": "^6.4|^7.0",
  5368. "symfony/property-access": "^6.4|^7.0",
  5369. "symfony/property-info": "^6.4|^7.0",
  5370. "symfony/serializer": "^6.4.3|^7.0.3"
  5371. },
  5372. "type": "library",
  5373. "autoload": {
  5374. "psr-4": {
  5375. "Symfony\\Component\\Mime\\": ""
  5376. },
  5377. "exclude-from-classmap": [
  5378. "/Tests/"
  5379. ]
  5380. },
  5381. "notification-url": "https://packagist.org/downloads/",
  5382. "license": [
  5383. "MIT"
  5384. ],
  5385. "authors": [
  5386. {
  5387. "name": "Fabien Potencier",
  5388. "email": "fabien@symfony.com"
  5389. },
  5390. {
  5391. "name": "Symfony Community",
  5392. "homepage": "https://symfony.com/contributors"
  5393. }
  5394. ],
  5395. "description": "Allows manipulating MIME messages",
  5396. "homepage": "https://symfony.com",
  5397. "keywords": [
  5398. "mime",
  5399. "mime-type"
  5400. ],
  5401. "support": {
  5402. "source": "https://github.com/symfony/mime/tree/v7.1.5"
  5403. },
  5404. "funding": [
  5405. {
  5406. "url": "https://symfony.com/sponsor",
  5407. "type": "custom"
  5408. },
  5409. {
  5410. "url": "https://github.com/fabpot",
  5411. "type": "github"
  5412. },
  5413. {
  5414. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5415. "type": "tidelift"
  5416. }
  5417. ],
  5418. "time": "2024-09-20T08:28:38+00:00"
  5419. },
  5420. {
  5421. "name": "symfony/monolog-bridge",
  5422. "version": "v7.1.1",
  5423. "source": {
  5424. "type": "git",
  5425. "url": "https://github.com/symfony/monolog-bridge.git",
  5426. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8"
  5427. },
  5428. "dist": {
  5429. "type": "zip",
  5430. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  5431. "reference": "727be11ae17bb1c5a7f600753b9a1bf0cc0ec3b8",
  5432. "shasum": ""
  5433. },
  5434. "require": {
  5435. "monolog/monolog": "^3",
  5436. "php": ">=8.2",
  5437. "symfony/http-kernel": "^6.4|^7.0",
  5438. "symfony/service-contracts": "^2.5|^3"
  5439. },
  5440. "conflict": {
  5441. "symfony/console": "<6.4",
  5442. "symfony/http-foundation": "<6.4",
  5443. "symfony/security-core": "<6.4"
  5444. },
  5445. "require-dev": {
  5446. "symfony/console": "^6.4|^7.0",
  5447. "symfony/http-client": "^6.4|^7.0",
  5448. "symfony/mailer": "^6.4|^7.0",
  5449. "symfony/messenger": "^6.4|^7.0",
  5450. "symfony/mime": "^6.4|^7.0",
  5451. "symfony/security-core": "^6.4|^7.0",
  5452. "symfony/var-dumper": "^6.4|^7.0"
  5453. },
  5454. "type": "symfony-bridge",
  5455. "autoload": {
  5456. "psr-4": {
  5457. "Symfony\\Bridge\\Monolog\\": ""
  5458. },
  5459. "exclude-from-classmap": [
  5460. "/Tests/"
  5461. ]
  5462. },
  5463. "notification-url": "https://packagist.org/downloads/",
  5464. "license": [
  5465. "MIT"
  5466. ],
  5467. "authors": [
  5468. {
  5469. "name": "Fabien Potencier",
  5470. "email": "fabien@symfony.com"
  5471. },
  5472. {
  5473. "name": "Symfony Community",
  5474. "homepage": "https://symfony.com/contributors"
  5475. }
  5476. ],
  5477. "description": "Provides integration for Monolog with various Symfony components",
  5478. "homepage": "https://symfony.com",
  5479. "support": {
  5480. "source": "https://github.com/symfony/monolog-bridge/tree/v7.1.1"
  5481. },
  5482. "funding": [
  5483. {
  5484. "url": "https://symfony.com/sponsor",
  5485. "type": "custom"
  5486. },
  5487. {
  5488. "url": "https://github.com/fabpot",
  5489. "type": "github"
  5490. },
  5491. {
  5492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5493. "type": "tidelift"
  5494. }
  5495. ],
  5496. "time": "2024-05-31T14:57:53+00:00"
  5497. },
  5498. {
  5499. "name": "symfony/monolog-bundle",
  5500. "version": "v3.10.0",
  5501. "source": {
  5502. "type": "git",
  5503. "url": "https://github.com/symfony/monolog-bundle.git",
  5504. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  5505. },
  5506. "dist": {
  5507. "type": "zip",
  5508. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5509. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  5510. "shasum": ""
  5511. },
  5512. "require": {
  5513. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  5514. "php": ">=7.2.5",
  5515. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  5516. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  5517. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  5518. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  5519. },
  5520. "require-dev": {
  5521. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  5522. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  5523. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  5524. },
  5525. "type": "symfony-bundle",
  5526. "extra": {
  5527. "branch-alias": {
  5528. "dev-master": "3.x-dev"
  5529. }
  5530. },
  5531. "autoload": {
  5532. "psr-4": {
  5533. "Symfony\\Bundle\\MonologBundle\\": ""
  5534. },
  5535. "exclude-from-classmap": [
  5536. "/Tests/"
  5537. ]
  5538. },
  5539. "notification-url": "https://packagist.org/downloads/",
  5540. "license": [
  5541. "MIT"
  5542. ],
  5543. "authors": [
  5544. {
  5545. "name": "Fabien Potencier",
  5546. "email": "fabien@symfony.com"
  5547. },
  5548. {
  5549. "name": "Symfony Community",
  5550. "homepage": "https://symfony.com/contributors"
  5551. }
  5552. ],
  5553. "description": "Symfony MonologBundle",
  5554. "homepage": "https://symfony.com",
  5555. "keywords": [
  5556. "log",
  5557. "logging"
  5558. ],
  5559. "support": {
  5560. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5561. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  5562. },
  5563. "funding": [
  5564. {
  5565. "url": "https://symfony.com/sponsor",
  5566. "type": "custom"
  5567. },
  5568. {
  5569. "url": "https://github.com/fabpot",
  5570. "type": "github"
  5571. },
  5572. {
  5573. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5574. "type": "tidelift"
  5575. }
  5576. ],
  5577. "time": "2023-11-06T17:08:13+00:00"
  5578. },
  5579. {
  5580. "name": "symfony/notifier",
  5581. "version": "v7.1.5",
  5582. "source": {
  5583. "type": "git",
  5584. "url": "https://github.com/symfony/notifier.git",
  5585. "reference": "843946b0b1018ddc714b467f223607c71f9f6c8f"
  5586. },
  5587. "dist": {
  5588. "type": "zip",
  5589. "url": "https://api.github.com/repos/symfony/notifier/zipball/843946b0b1018ddc714b467f223607c71f9f6c8f",
  5590. "reference": "843946b0b1018ddc714b467f223607c71f9f6c8f",
  5591. "shasum": ""
  5592. },
  5593. "require": {
  5594. "php": ">=8.2",
  5595. "psr/log": "^1|^2|^3"
  5596. },
  5597. "conflict": {
  5598. "symfony/event-dispatcher": "<6.4",
  5599. "symfony/event-dispatcher-contracts": "<2.5",
  5600. "symfony/http-client-contracts": "<2.5",
  5601. "symfony/http-kernel": "<6.4"
  5602. },
  5603. "require-dev": {
  5604. "symfony/event-dispatcher-contracts": "^2.5|^3",
  5605. "symfony/http-client-contracts": "^2.5|^3",
  5606. "symfony/http-foundation": "^6.4|^7.0",
  5607. "symfony/messenger": "^6.4|^7.0"
  5608. },
  5609. "type": "library",
  5610. "autoload": {
  5611. "psr-4": {
  5612. "Symfony\\Component\\Notifier\\": ""
  5613. },
  5614. "exclude-from-classmap": [
  5615. "/Tests/"
  5616. ]
  5617. },
  5618. "notification-url": "https://packagist.org/downloads/",
  5619. "license": [
  5620. "MIT"
  5621. ],
  5622. "authors": [
  5623. {
  5624. "name": "Fabien Potencier",
  5625. "email": "fabien@symfony.com"
  5626. },
  5627. {
  5628. "name": "Symfony Community",
  5629. "homepage": "https://symfony.com/contributors"
  5630. }
  5631. ],
  5632. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  5633. "homepage": "https://symfony.com",
  5634. "keywords": [
  5635. "notification",
  5636. "notifier"
  5637. ],
  5638. "support": {
  5639. "source": "https://github.com/symfony/notifier/tree/v7.1.5"
  5640. },
  5641. "funding": [
  5642. {
  5643. "url": "https://symfony.com/sponsor",
  5644. "type": "custom"
  5645. },
  5646. {
  5647. "url": "https://github.com/fabpot",
  5648. "type": "github"
  5649. },
  5650. {
  5651. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5652. "type": "tidelift"
  5653. }
  5654. ],
  5655. "time": "2024-09-08T12:32:26+00:00"
  5656. },
  5657. {
  5658. "name": "symfony/options-resolver",
  5659. "version": "v7.1.1",
  5660. "source": {
  5661. "type": "git",
  5662. "url": "https://github.com/symfony/options-resolver.git",
  5663. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55"
  5664. },
  5665. "dist": {
  5666. "type": "zip",
  5667. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5668. "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55",
  5669. "shasum": ""
  5670. },
  5671. "require": {
  5672. "php": ">=8.2",
  5673. "symfony/deprecation-contracts": "^2.5|^3"
  5674. },
  5675. "type": "library",
  5676. "autoload": {
  5677. "psr-4": {
  5678. "Symfony\\Component\\OptionsResolver\\": ""
  5679. },
  5680. "exclude-from-classmap": [
  5681. "/Tests/"
  5682. ]
  5683. },
  5684. "notification-url": "https://packagist.org/downloads/",
  5685. "license": [
  5686. "MIT"
  5687. ],
  5688. "authors": [
  5689. {
  5690. "name": "Fabien Potencier",
  5691. "email": "fabien@symfony.com"
  5692. },
  5693. {
  5694. "name": "Symfony Community",
  5695. "homepage": "https://symfony.com/contributors"
  5696. }
  5697. ],
  5698. "description": "Provides an improved replacement for the array_replace PHP function",
  5699. "homepage": "https://symfony.com",
  5700. "keywords": [
  5701. "config",
  5702. "configuration",
  5703. "options"
  5704. ],
  5705. "support": {
  5706. "source": "https://github.com/symfony/options-resolver/tree/v7.1.1"
  5707. },
  5708. "funding": [
  5709. {
  5710. "url": "https://symfony.com/sponsor",
  5711. "type": "custom"
  5712. },
  5713. {
  5714. "url": "https://github.com/fabpot",
  5715. "type": "github"
  5716. },
  5717. {
  5718. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5719. "type": "tidelift"
  5720. }
  5721. ],
  5722. "time": "2024-05-31T14:57:53+00:00"
  5723. },
  5724. {
  5725. "name": "symfony/password-hasher",
  5726. "version": "v7.1.1",
  5727. "source": {
  5728. "type": "git",
  5729. "url": "https://github.com/symfony/password-hasher.git",
  5730. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662"
  5731. },
  5732. "dist": {
  5733. "type": "zip",
  5734. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  5735. "reference": "4ad96eb7cf9e2f8f133ada95f2b8021769061662",
  5736. "shasum": ""
  5737. },
  5738. "require": {
  5739. "php": ">=8.2"
  5740. },
  5741. "conflict": {
  5742. "symfony/security-core": "<6.4"
  5743. },
  5744. "require-dev": {
  5745. "symfony/console": "^6.4|^7.0",
  5746. "symfony/security-core": "^6.4|^7.0"
  5747. },
  5748. "type": "library",
  5749. "autoload": {
  5750. "psr-4": {
  5751. "Symfony\\Component\\PasswordHasher\\": ""
  5752. },
  5753. "exclude-from-classmap": [
  5754. "/Tests/"
  5755. ]
  5756. },
  5757. "notification-url": "https://packagist.org/downloads/",
  5758. "license": [
  5759. "MIT"
  5760. ],
  5761. "authors": [
  5762. {
  5763. "name": "Robin Chalas",
  5764. "email": "robin.chalas@gmail.com"
  5765. },
  5766. {
  5767. "name": "Symfony Community",
  5768. "homepage": "https://symfony.com/contributors"
  5769. }
  5770. ],
  5771. "description": "Provides password hashing utilities",
  5772. "homepage": "https://symfony.com",
  5773. "keywords": [
  5774. "hashing",
  5775. "password"
  5776. ],
  5777. "support": {
  5778. "source": "https://github.com/symfony/password-hasher/tree/v7.1.1"
  5779. },
  5780. "funding": [
  5781. {
  5782. "url": "https://symfony.com/sponsor",
  5783. "type": "custom"
  5784. },
  5785. {
  5786. "url": "https://github.com/fabpot",
  5787. "type": "github"
  5788. },
  5789. {
  5790. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5791. "type": "tidelift"
  5792. }
  5793. ],
  5794. "time": "2024-05-31T14:57:53+00:00"
  5795. },
  5796. {
  5797. "name": "symfony/polyfill-intl-grapheme",
  5798. "version": "v1.31.0",
  5799. "source": {
  5800. "type": "git",
  5801. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5802. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5803. },
  5804. "dist": {
  5805. "type": "zip",
  5806. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5807. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5808. "shasum": ""
  5809. },
  5810. "require": {
  5811. "php": ">=7.2"
  5812. },
  5813. "suggest": {
  5814. "ext-intl": "For best performance"
  5815. },
  5816. "type": "library",
  5817. "extra": {
  5818. "thanks": {
  5819. "name": "symfony/polyfill",
  5820. "url": "https://github.com/symfony/polyfill"
  5821. }
  5822. },
  5823. "autoload": {
  5824. "files": [
  5825. "bootstrap.php"
  5826. ],
  5827. "psr-4": {
  5828. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5829. }
  5830. },
  5831. "notification-url": "https://packagist.org/downloads/",
  5832. "license": [
  5833. "MIT"
  5834. ],
  5835. "authors": [
  5836. {
  5837. "name": "Nicolas Grekas",
  5838. "email": "p@tchwork.com"
  5839. },
  5840. {
  5841. "name": "Symfony Community",
  5842. "homepage": "https://symfony.com/contributors"
  5843. }
  5844. ],
  5845. "description": "Symfony polyfill for intl's grapheme_* functions",
  5846. "homepage": "https://symfony.com",
  5847. "keywords": [
  5848. "compatibility",
  5849. "grapheme",
  5850. "intl",
  5851. "polyfill",
  5852. "portable",
  5853. "shim"
  5854. ],
  5855. "support": {
  5856. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  5857. },
  5858. "funding": [
  5859. {
  5860. "url": "https://symfony.com/sponsor",
  5861. "type": "custom"
  5862. },
  5863. {
  5864. "url": "https://github.com/fabpot",
  5865. "type": "github"
  5866. },
  5867. {
  5868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5869. "type": "tidelift"
  5870. }
  5871. ],
  5872. "time": "2024-09-09T11:45:10+00:00"
  5873. },
  5874. {
  5875. "name": "symfony/polyfill-intl-icu",
  5876. "version": "v1.31.0",
  5877. "source": {
  5878. "type": "git",
  5879. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5880. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78"
  5881. },
  5882. "dist": {
  5883. "type": "zip",
  5884. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  5885. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  5886. "shasum": ""
  5887. },
  5888. "require": {
  5889. "php": ">=7.2"
  5890. },
  5891. "suggest": {
  5892. "ext-intl": "For best performance and support of other locales than \"en\""
  5893. },
  5894. "type": "library",
  5895. "extra": {
  5896. "thanks": {
  5897. "name": "symfony/polyfill",
  5898. "url": "https://github.com/symfony/polyfill"
  5899. }
  5900. },
  5901. "autoload": {
  5902. "files": [
  5903. "bootstrap.php"
  5904. ],
  5905. "psr-4": {
  5906. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5907. },
  5908. "classmap": [
  5909. "Resources/stubs"
  5910. ],
  5911. "exclude-from-classmap": [
  5912. "/Tests/"
  5913. ]
  5914. },
  5915. "notification-url": "https://packagist.org/downloads/",
  5916. "license": [
  5917. "MIT"
  5918. ],
  5919. "authors": [
  5920. {
  5921. "name": "Nicolas Grekas",
  5922. "email": "p@tchwork.com"
  5923. },
  5924. {
  5925. "name": "Symfony Community",
  5926. "homepage": "https://symfony.com/contributors"
  5927. }
  5928. ],
  5929. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5930. "homepage": "https://symfony.com",
  5931. "keywords": [
  5932. "compatibility",
  5933. "icu",
  5934. "intl",
  5935. "polyfill",
  5936. "portable",
  5937. "shim"
  5938. ],
  5939. "support": {
  5940. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.31.0"
  5941. },
  5942. "funding": [
  5943. {
  5944. "url": "https://symfony.com/sponsor",
  5945. "type": "custom"
  5946. },
  5947. {
  5948. "url": "https://github.com/fabpot",
  5949. "type": "github"
  5950. },
  5951. {
  5952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5953. "type": "tidelift"
  5954. }
  5955. ],
  5956. "time": "2024-09-09T11:45:10+00:00"
  5957. },
  5958. {
  5959. "name": "symfony/polyfill-intl-idn",
  5960. "version": "v1.31.0",
  5961. "source": {
  5962. "type": "git",
  5963. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5964. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  5965. },
  5966. "dist": {
  5967. "type": "zip",
  5968. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  5969. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  5970. "shasum": ""
  5971. },
  5972. "require": {
  5973. "php": ">=7.2",
  5974. "symfony/polyfill-intl-normalizer": "^1.10"
  5975. },
  5976. "suggest": {
  5977. "ext-intl": "For best performance"
  5978. },
  5979. "type": "library",
  5980. "extra": {
  5981. "thanks": {
  5982. "name": "symfony/polyfill",
  5983. "url": "https://github.com/symfony/polyfill"
  5984. }
  5985. },
  5986. "autoload": {
  5987. "files": [
  5988. "bootstrap.php"
  5989. ],
  5990. "psr-4": {
  5991. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5992. }
  5993. },
  5994. "notification-url": "https://packagist.org/downloads/",
  5995. "license": [
  5996. "MIT"
  5997. ],
  5998. "authors": [
  5999. {
  6000. "name": "Laurent Bassin",
  6001. "email": "laurent@bassin.info"
  6002. },
  6003. {
  6004. "name": "Trevor Rowbotham",
  6005. "email": "trevor.rowbotham@pm.me"
  6006. },
  6007. {
  6008. "name": "Symfony Community",
  6009. "homepage": "https://symfony.com/contributors"
  6010. }
  6011. ],
  6012. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6013. "homepage": "https://symfony.com",
  6014. "keywords": [
  6015. "compatibility",
  6016. "idn",
  6017. "intl",
  6018. "polyfill",
  6019. "portable",
  6020. "shim"
  6021. ],
  6022. "support": {
  6023. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  6024. },
  6025. "funding": [
  6026. {
  6027. "url": "https://symfony.com/sponsor",
  6028. "type": "custom"
  6029. },
  6030. {
  6031. "url": "https://github.com/fabpot",
  6032. "type": "github"
  6033. },
  6034. {
  6035. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6036. "type": "tidelift"
  6037. }
  6038. ],
  6039. "time": "2024-09-09T11:45:10+00:00"
  6040. },
  6041. {
  6042. "name": "symfony/polyfill-intl-normalizer",
  6043. "version": "v1.31.0",
  6044. "source": {
  6045. "type": "git",
  6046. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6047. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6048. },
  6049. "dist": {
  6050. "type": "zip",
  6051. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6052. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6053. "shasum": ""
  6054. },
  6055. "require": {
  6056. "php": ">=7.2"
  6057. },
  6058. "suggest": {
  6059. "ext-intl": "For best performance"
  6060. },
  6061. "type": "library",
  6062. "extra": {
  6063. "thanks": {
  6064. "name": "symfony/polyfill",
  6065. "url": "https://github.com/symfony/polyfill"
  6066. }
  6067. },
  6068. "autoload": {
  6069. "files": [
  6070. "bootstrap.php"
  6071. ],
  6072. "psr-4": {
  6073. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6074. },
  6075. "classmap": [
  6076. "Resources/stubs"
  6077. ]
  6078. },
  6079. "notification-url": "https://packagist.org/downloads/",
  6080. "license": [
  6081. "MIT"
  6082. ],
  6083. "authors": [
  6084. {
  6085. "name": "Nicolas Grekas",
  6086. "email": "p@tchwork.com"
  6087. },
  6088. {
  6089. "name": "Symfony Community",
  6090. "homepage": "https://symfony.com/contributors"
  6091. }
  6092. ],
  6093. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6094. "homepage": "https://symfony.com",
  6095. "keywords": [
  6096. "compatibility",
  6097. "intl",
  6098. "normalizer",
  6099. "polyfill",
  6100. "portable",
  6101. "shim"
  6102. ],
  6103. "support": {
  6104. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6105. },
  6106. "funding": [
  6107. {
  6108. "url": "https://symfony.com/sponsor",
  6109. "type": "custom"
  6110. },
  6111. {
  6112. "url": "https://github.com/fabpot",
  6113. "type": "github"
  6114. },
  6115. {
  6116. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6117. "type": "tidelift"
  6118. }
  6119. ],
  6120. "time": "2024-09-09T11:45:10+00:00"
  6121. },
  6122. {
  6123. "name": "symfony/polyfill-mbstring",
  6124. "version": "v1.31.0",
  6125. "source": {
  6126. "type": "git",
  6127. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6128. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6129. },
  6130. "dist": {
  6131. "type": "zip",
  6132. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6133. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6134. "shasum": ""
  6135. },
  6136. "require": {
  6137. "php": ">=7.2"
  6138. },
  6139. "provide": {
  6140. "ext-mbstring": "*"
  6141. },
  6142. "suggest": {
  6143. "ext-mbstring": "For best performance"
  6144. },
  6145. "type": "library",
  6146. "extra": {
  6147. "thanks": {
  6148. "name": "symfony/polyfill",
  6149. "url": "https://github.com/symfony/polyfill"
  6150. }
  6151. },
  6152. "autoload": {
  6153. "files": [
  6154. "bootstrap.php"
  6155. ],
  6156. "psr-4": {
  6157. "Symfony\\Polyfill\\Mbstring\\": ""
  6158. }
  6159. },
  6160. "notification-url": "https://packagist.org/downloads/",
  6161. "license": [
  6162. "MIT"
  6163. ],
  6164. "authors": [
  6165. {
  6166. "name": "Nicolas Grekas",
  6167. "email": "p@tchwork.com"
  6168. },
  6169. {
  6170. "name": "Symfony Community",
  6171. "homepage": "https://symfony.com/contributors"
  6172. }
  6173. ],
  6174. "description": "Symfony polyfill for the Mbstring extension",
  6175. "homepage": "https://symfony.com",
  6176. "keywords": [
  6177. "compatibility",
  6178. "mbstring",
  6179. "polyfill",
  6180. "portable",
  6181. "shim"
  6182. ],
  6183. "support": {
  6184. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6185. },
  6186. "funding": [
  6187. {
  6188. "url": "https://symfony.com/sponsor",
  6189. "type": "custom"
  6190. },
  6191. {
  6192. "url": "https://github.com/fabpot",
  6193. "type": "github"
  6194. },
  6195. {
  6196. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6197. "type": "tidelift"
  6198. }
  6199. ],
  6200. "time": "2024-09-09T11:45:10+00:00"
  6201. },
  6202. {
  6203. "name": "symfony/polyfill-php83",
  6204. "version": "v1.31.0",
  6205. "source": {
  6206. "type": "git",
  6207. "url": "https://github.com/symfony/polyfill-php83.git",
  6208. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  6209. },
  6210. "dist": {
  6211. "type": "zip",
  6212. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  6213. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  6214. "shasum": ""
  6215. },
  6216. "require": {
  6217. "php": ">=7.2"
  6218. },
  6219. "type": "library",
  6220. "extra": {
  6221. "thanks": {
  6222. "name": "symfony/polyfill",
  6223. "url": "https://github.com/symfony/polyfill"
  6224. }
  6225. },
  6226. "autoload": {
  6227. "files": [
  6228. "bootstrap.php"
  6229. ],
  6230. "psr-4": {
  6231. "Symfony\\Polyfill\\Php83\\": ""
  6232. },
  6233. "classmap": [
  6234. "Resources/stubs"
  6235. ]
  6236. },
  6237. "notification-url": "https://packagist.org/downloads/",
  6238. "license": [
  6239. "MIT"
  6240. ],
  6241. "authors": [
  6242. {
  6243. "name": "Nicolas Grekas",
  6244. "email": "p@tchwork.com"
  6245. },
  6246. {
  6247. "name": "Symfony Community",
  6248. "homepage": "https://symfony.com/contributors"
  6249. }
  6250. ],
  6251. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6252. "homepage": "https://symfony.com",
  6253. "keywords": [
  6254. "compatibility",
  6255. "polyfill",
  6256. "portable",
  6257. "shim"
  6258. ],
  6259. "support": {
  6260. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  6261. },
  6262. "funding": [
  6263. {
  6264. "url": "https://symfony.com/sponsor",
  6265. "type": "custom"
  6266. },
  6267. {
  6268. "url": "https://github.com/fabpot",
  6269. "type": "github"
  6270. },
  6271. {
  6272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6273. "type": "tidelift"
  6274. }
  6275. ],
  6276. "time": "2024-09-09T11:45:10+00:00"
  6277. },
  6278. {
  6279. "name": "symfony/process",
  6280. "version": "v7.1.5",
  6281. "source": {
  6282. "type": "git",
  6283. "url": "https://github.com/symfony/process.git",
  6284. "reference": "5c03ee6369281177f07f7c68252a280beccba847"
  6285. },
  6286. "dist": {
  6287. "type": "zip",
  6288. "url": "https://api.github.com/repos/symfony/process/zipball/5c03ee6369281177f07f7c68252a280beccba847",
  6289. "reference": "5c03ee6369281177f07f7c68252a280beccba847",
  6290. "shasum": ""
  6291. },
  6292. "require": {
  6293. "php": ">=8.2"
  6294. },
  6295. "type": "library",
  6296. "autoload": {
  6297. "psr-4": {
  6298. "Symfony\\Component\\Process\\": ""
  6299. },
  6300. "exclude-from-classmap": [
  6301. "/Tests/"
  6302. ]
  6303. },
  6304. "notification-url": "https://packagist.org/downloads/",
  6305. "license": [
  6306. "MIT"
  6307. ],
  6308. "authors": [
  6309. {
  6310. "name": "Fabien Potencier",
  6311. "email": "fabien@symfony.com"
  6312. },
  6313. {
  6314. "name": "Symfony Community",
  6315. "homepage": "https://symfony.com/contributors"
  6316. }
  6317. ],
  6318. "description": "Executes commands in sub-processes",
  6319. "homepage": "https://symfony.com",
  6320. "support": {
  6321. "source": "https://github.com/symfony/process/tree/v7.1.5"
  6322. },
  6323. "funding": [
  6324. {
  6325. "url": "https://symfony.com/sponsor",
  6326. "type": "custom"
  6327. },
  6328. {
  6329. "url": "https://github.com/fabpot",
  6330. "type": "github"
  6331. },
  6332. {
  6333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6334. "type": "tidelift"
  6335. }
  6336. ],
  6337. "time": "2024-09-19T21:48:23+00:00"
  6338. },
  6339. {
  6340. "name": "symfony/property-access",
  6341. "version": "v7.1.4",
  6342. "source": {
  6343. "type": "git",
  6344. "url": "https://github.com/symfony/property-access.git",
  6345. "reference": "6c709f97103355016e5782d0622437ae381012ad"
  6346. },
  6347. "dist": {
  6348. "type": "zip",
  6349. "url": "https://api.github.com/repos/symfony/property-access/zipball/6c709f97103355016e5782d0622437ae381012ad",
  6350. "reference": "6c709f97103355016e5782d0622437ae381012ad",
  6351. "shasum": ""
  6352. },
  6353. "require": {
  6354. "php": ">=8.2",
  6355. "symfony/property-info": "^6.4|^7.0"
  6356. },
  6357. "require-dev": {
  6358. "symfony/cache": "^6.4|^7.0"
  6359. },
  6360. "type": "library",
  6361. "autoload": {
  6362. "psr-4": {
  6363. "Symfony\\Component\\PropertyAccess\\": ""
  6364. },
  6365. "exclude-from-classmap": [
  6366. "/Tests/"
  6367. ]
  6368. },
  6369. "notification-url": "https://packagist.org/downloads/",
  6370. "license": [
  6371. "MIT"
  6372. ],
  6373. "authors": [
  6374. {
  6375. "name": "Fabien Potencier",
  6376. "email": "fabien@symfony.com"
  6377. },
  6378. {
  6379. "name": "Symfony Community",
  6380. "homepage": "https://symfony.com/contributors"
  6381. }
  6382. ],
  6383. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6384. "homepage": "https://symfony.com",
  6385. "keywords": [
  6386. "access",
  6387. "array",
  6388. "extraction",
  6389. "index",
  6390. "injection",
  6391. "object",
  6392. "property",
  6393. "property-path",
  6394. "reflection"
  6395. ],
  6396. "support": {
  6397. "source": "https://github.com/symfony/property-access/tree/v7.1.4"
  6398. },
  6399. "funding": [
  6400. {
  6401. "url": "https://symfony.com/sponsor",
  6402. "type": "custom"
  6403. },
  6404. {
  6405. "url": "https://github.com/fabpot",
  6406. "type": "github"
  6407. },
  6408. {
  6409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6410. "type": "tidelift"
  6411. }
  6412. ],
  6413. "time": "2024-08-30T16:12:47+00:00"
  6414. },
  6415. {
  6416. "name": "symfony/property-info",
  6417. "version": "v7.1.3",
  6418. "source": {
  6419. "type": "git",
  6420. "url": "https://github.com/symfony/property-info.git",
  6421. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b"
  6422. },
  6423. "dist": {
  6424. "type": "zip",
  6425. "url": "https://api.github.com/repos/symfony/property-info/zipball/88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  6426. "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b",
  6427. "shasum": ""
  6428. },
  6429. "require": {
  6430. "php": ">=8.2",
  6431. "symfony/string": "^6.4|^7.0",
  6432. "symfony/type-info": "^7.1"
  6433. },
  6434. "conflict": {
  6435. "phpdocumentor/reflection-docblock": "<5.2",
  6436. "phpdocumentor/type-resolver": "<1.5.1",
  6437. "symfony/dependency-injection": "<6.4",
  6438. "symfony/serializer": "<6.4"
  6439. },
  6440. "require-dev": {
  6441. "phpdocumentor/reflection-docblock": "^5.2",
  6442. "phpstan/phpdoc-parser": "^1.0",
  6443. "symfony/cache": "^6.4|^7.0",
  6444. "symfony/dependency-injection": "^6.4|^7.0",
  6445. "symfony/serializer": "^6.4|^7.0"
  6446. },
  6447. "type": "library",
  6448. "autoload": {
  6449. "psr-4": {
  6450. "Symfony\\Component\\PropertyInfo\\": ""
  6451. },
  6452. "exclude-from-classmap": [
  6453. "/Tests/"
  6454. ]
  6455. },
  6456. "notification-url": "https://packagist.org/downloads/",
  6457. "license": [
  6458. "MIT"
  6459. ],
  6460. "authors": [
  6461. {
  6462. "name": "Kévin Dunglas",
  6463. "email": "dunglas@gmail.com"
  6464. },
  6465. {
  6466. "name": "Symfony Community",
  6467. "homepage": "https://symfony.com/contributors"
  6468. }
  6469. ],
  6470. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6471. "homepage": "https://symfony.com",
  6472. "keywords": [
  6473. "doctrine",
  6474. "phpdoc",
  6475. "property",
  6476. "symfony",
  6477. "type",
  6478. "validator"
  6479. ],
  6480. "support": {
  6481. "source": "https://github.com/symfony/property-info/tree/v7.1.3"
  6482. },
  6483. "funding": [
  6484. {
  6485. "url": "https://symfony.com/sponsor",
  6486. "type": "custom"
  6487. },
  6488. {
  6489. "url": "https://github.com/fabpot",
  6490. "type": "github"
  6491. },
  6492. {
  6493. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6494. "type": "tidelift"
  6495. }
  6496. ],
  6497. "time": "2024-07-26T07:36:36+00:00"
  6498. },
  6499. {
  6500. "name": "symfony/routing",
  6501. "version": "v7.1.4",
  6502. "source": {
  6503. "type": "git",
  6504. "url": "https://github.com/symfony/routing.git",
  6505. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7"
  6506. },
  6507. "dist": {
  6508. "type": "zip",
  6509. "url": "https://api.github.com/repos/symfony/routing/zipball/1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  6510. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  6511. "shasum": ""
  6512. },
  6513. "require": {
  6514. "php": ">=8.2",
  6515. "symfony/deprecation-contracts": "^2.5|^3"
  6516. },
  6517. "conflict": {
  6518. "symfony/config": "<6.4",
  6519. "symfony/dependency-injection": "<6.4",
  6520. "symfony/yaml": "<6.4"
  6521. },
  6522. "require-dev": {
  6523. "psr/log": "^1|^2|^3",
  6524. "symfony/config": "^6.4|^7.0",
  6525. "symfony/dependency-injection": "^6.4|^7.0",
  6526. "symfony/expression-language": "^6.4|^7.0",
  6527. "symfony/http-foundation": "^6.4|^7.0",
  6528. "symfony/yaml": "^6.4|^7.0"
  6529. },
  6530. "type": "library",
  6531. "autoload": {
  6532. "psr-4": {
  6533. "Symfony\\Component\\Routing\\": ""
  6534. },
  6535. "exclude-from-classmap": [
  6536. "/Tests/"
  6537. ]
  6538. },
  6539. "notification-url": "https://packagist.org/downloads/",
  6540. "license": [
  6541. "MIT"
  6542. ],
  6543. "authors": [
  6544. {
  6545. "name": "Fabien Potencier",
  6546. "email": "fabien@symfony.com"
  6547. },
  6548. {
  6549. "name": "Symfony Community",
  6550. "homepage": "https://symfony.com/contributors"
  6551. }
  6552. ],
  6553. "description": "Maps an HTTP request to a set of configuration variables",
  6554. "homepage": "https://symfony.com",
  6555. "keywords": [
  6556. "router",
  6557. "routing",
  6558. "uri",
  6559. "url"
  6560. ],
  6561. "support": {
  6562. "source": "https://github.com/symfony/routing/tree/v7.1.4"
  6563. },
  6564. "funding": [
  6565. {
  6566. "url": "https://symfony.com/sponsor",
  6567. "type": "custom"
  6568. },
  6569. {
  6570. "url": "https://github.com/fabpot",
  6571. "type": "github"
  6572. },
  6573. {
  6574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6575. "type": "tidelift"
  6576. }
  6577. ],
  6578. "time": "2024-08-29T08:16:25+00:00"
  6579. },
  6580. {
  6581. "name": "symfony/runtime",
  6582. "version": "v7.1.1",
  6583. "source": {
  6584. "type": "git",
  6585. "url": "https://github.com/symfony/runtime.git",
  6586. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6"
  6587. },
  6588. "dist": {
  6589. "type": "zip",
  6590. "url": "https://api.github.com/repos/symfony/runtime/zipball/ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  6591. "reference": "ea34522c447dd91a2b31cb330ee4540a56ba53f6",
  6592. "shasum": ""
  6593. },
  6594. "require": {
  6595. "composer-plugin-api": "^1.0|^2.0",
  6596. "php": ">=8.2"
  6597. },
  6598. "conflict": {
  6599. "symfony/dotenv": "<6.4"
  6600. },
  6601. "require-dev": {
  6602. "composer/composer": "^2.6",
  6603. "symfony/console": "^6.4|^7.0",
  6604. "symfony/dotenv": "^6.4|^7.0",
  6605. "symfony/http-foundation": "^6.4|^7.0",
  6606. "symfony/http-kernel": "^6.4|^7.0"
  6607. },
  6608. "type": "composer-plugin",
  6609. "extra": {
  6610. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6611. },
  6612. "autoload": {
  6613. "psr-4": {
  6614. "Symfony\\Component\\Runtime\\": "",
  6615. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6616. },
  6617. "exclude-from-classmap": [
  6618. "/Tests/"
  6619. ]
  6620. },
  6621. "notification-url": "https://packagist.org/downloads/",
  6622. "license": [
  6623. "MIT"
  6624. ],
  6625. "authors": [
  6626. {
  6627. "name": "Nicolas Grekas",
  6628. "email": "p@tchwork.com"
  6629. },
  6630. {
  6631. "name": "Symfony Community",
  6632. "homepage": "https://symfony.com/contributors"
  6633. }
  6634. ],
  6635. "description": "Enables decoupling PHP applications from global state",
  6636. "homepage": "https://symfony.com",
  6637. "keywords": [
  6638. "runtime"
  6639. ],
  6640. "support": {
  6641. "source": "https://github.com/symfony/runtime/tree/v7.1.1"
  6642. },
  6643. "funding": [
  6644. {
  6645. "url": "https://symfony.com/sponsor",
  6646. "type": "custom"
  6647. },
  6648. {
  6649. "url": "https://github.com/fabpot",
  6650. "type": "github"
  6651. },
  6652. {
  6653. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6654. "type": "tidelift"
  6655. }
  6656. ],
  6657. "time": "2024-05-31T14:55:39+00:00"
  6658. },
  6659. {
  6660. "name": "symfony/security-bundle",
  6661. "version": "v7.1.4",
  6662. "source": {
  6663. "type": "git",
  6664. "url": "https://github.com/symfony/security-bundle.git",
  6665. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01"
  6666. },
  6667. "dist": {
  6668. "type": "zip",
  6669. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/5e10107856ff64d477c61fed7bcbb8a16125ea01",
  6670. "reference": "5e10107856ff64d477c61fed7bcbb8a16125ea01",
  6671. "shasum": ""
  6672. },
  6673. "require": {
  6674. "composer-runtime-api": ">=2.1",
  6675. "ext-xml": "*",
  6676. "php": ">=8.2",
  6677. "symfony/clock": "^6.4|^7.0",
  6678. "symfony/config": "^6.4|^7.0",
  6679. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  6680. "symfony/event-dispatcher": "^6.4|^7.0",
  6681. "symfony/http-foundation": "^6.4|^7.0",
  6682. "symfony/http-kernel": "^6.4|^7.0",
  6683. "symfony/password-hasher": "^6.4|^7.0",
  6684. "symfony/security-core": "^6.4|^7.0",
  6685. "symfony/security-csrf": "^6.4|^7.0",
  6686. "symfony/security-http": "^7.1",
  6687. "symfony/service-contracts": "^2.5|^3"
  6688. },
  6689. "conflict": {
  6690. "symfony/browser-kit": "<6.4",
  6691. "symfony/console": "<6.4",
  6692. "symfony/framework-bundle": "<6.4",
  6693. "symfony/http-client": "<6.4",
  6694. "symfony/ldap": "<6.4",
  6695. "symfony/serializer": "<6.4",
  6696. "symfony/twig-bundle": "<6.4",
  6697. "symfony/validator": "<6.4"
  6698. },
  6699. "require-dev": {
  6700. "symfony/asset": "^6.4|^7.0",
  6701. "symfony/browser-kit": "^6.4|^7.0",
  6702. "symfony/console": "^6.4|^7.0",
  6703. "symfony/css-selector": "^6.4|^7.0",
  6704. "symfony/dom-crawler": "^6.4|^7.0",
  6705. "symfony/expression-language": "^6.4|^7.0",
  6706. "symfony/form": "^6.4|^7.0",
  6707. "symfony/framework-bundle": "^6.4|^7.0",
  6708. "symfony/http-client": "^6.4|^7.0",
  6709. "symfony/ldap": "^6.4|^7.0",
  6710. "symfony/process": "^6.4|^7.0",
  6711. "symfony/rate-limiter": "^6.4|^7.0",
  6712. "symfony/serializer": "^6.4|^7.0",
  6713. "symfony/translation": "^6.4|^7.0",
  6714. "symfony/twig-bridge": "^6.4|^7.0",
  6715. "symfony/twig-bundle": "^6.4|^7.0",
  6716. "symfony/validator": "^6.4|^7.0",
  6717. "symfony/yaml": "^6.4|^7.0",
  6718. "twig/twig": "^3.0.4",
  6719. "web-token/jwt-library": "^3.3.2|^4.0"
  6720. },
  6721. "type": "symfony-bundle",
  6722. "autoload": {
  6723. "psr-4": {
  6724. "Symfony\\Bundle\\SecurityBundle\\": ""
  6725. },
  6726. "exclude-from-classmap": [
  6727. "/Tests/"
  6728. ]
  6729. },
  6730. "notification-url": "https://packagist.org/downloads/",
  6731. "license": [
  6732. "MIT"
  6733. ],
  6734. "authors": [
  6735. {
  6736. "name": "Fabien Potencier",
  6737. "email": "fabien@symfony.com"
  6738. },
  6739. {
  6740. "name": "Symfony Community",
  6741. "homepage": "https://symfony.com/contributors"
  6742. }
  6743. ],
  6744. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6745. "homepage": "https://symfony.com",
  6746. "support": {
  6747. "source": "https://github.com/symfony/security-bundle/tree/v7.1.4"
  6748. },
  6749. "funding": [
  6750. {
  6751. "url": "https://symfony.com/sponsor",
  6752. "type": "custom"
  6753. },
  6754. {
  6755. "url": "https://github.com/fabpot",
  6756. "type": "github"
  6757. },
  6758. {
  6759. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6760. "type": "tidelift"
  6761. }
  6762. ],
  6763. "time": "2024-08-20T11:38:55+00:00"
  6764. },
  6765. {
  6766. "name": "symfony/security-core",
  6767. "version": "v7.1.5",
  6768. "source": {
  6769. "type": "git",
  6770. "url": "https://github.com/symfony/security-core.git",
  6771. "reference": "dbeb09f0b786590d126c0da297e2320e66ec353b"
  6772. },
  6773. "dist": {
  6774. "type": "zip",
  6775. "url": "https://api.github.com/repos/symfony/security-core/zipball/dbeb09f0b786590d126c0da297e2320e66ec353b",
  6776. "reference": "dbeb09f0b786590d126c0da297e2320e66ec353b",
  6777. "shasum": ""
  6778. },
  6779. "require": {
  6780. "php": ">=8.2",
  6781. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6782. "symfony/password-hasher": "^6.4|^7.0",
  6783. "symfony/service-contracts": "^2.5|^3"
  6784. },
  6785. "conflict": {
  6786. "symfony/dependency-injection": "<6.4",
  6787. "symfony/event-dispatcher": "<6.4",
  6788. "symfony/http-foundation": "<6.4",
  6789. "symfony/ldap": "<6.4",
  6790. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6791. "symfony/validator": "<6.4"
  6792. },
  6793. "require-dev": {
  6794. "psr/cache": "^1.0|^2.0|^3.0",
  6795. "psr/container": "^1.1|^2.0",
  6796. "psr/log": "^1|^2|^3",
  6797. "symfony/cache": "^6.4|^7.0",
  6798. "symfony/dependency-injection": "^6.4|^7.0",
  6799. "symfony/event-dispatcher": "^6.4|^7.0",
  6800. "symfony/expression-language": "^6.4|^7.0",
  6801. "symfony/http-foundation": "^6.4|^7.0",
  6802. "symfony/ldap": "^6.4|^7.0",
  6803. "symfony/string": "^6.4|^7.0",
  6804. "symfony/translation": "^6.4.3|^7.0.3",
  6805. "symfony/validator": "^6.4|^7.0"
  6806. },
  6807. "type": "library",
  6808. "autoload": {
  6809. "psr-4": {
  6810. "Symfony\\Component\\Security\\Core\\": ""
  6811. },
  6812. "exclude-from-classmap": [
  6813. "/Tests/"
  6814. ]
  6815. },
  6816. "notification-url": "https://packagist.org/downloads/",
  6817. "license": [
  6818. "MIT"
  6819. ],
  6820. "authors": [
  6821. {
  6822. "name": "Fabien Potencier",
  6823. "email": "fabien@symfony.com"
  6824. },
  6825. {
  6826. "name": "Symfony Community",
  6827. "homepage": "https://symfony.com/contributors"
  6828. }
  6829. ],
  6830. "description": "Symfony Security Component - Core Library",
  6831. "homepage": "https://symfony.com",
  6832. "support": {
  6833. "source": "https://github.com/symfony/security-core/tree/v7.1.5"
  6834. },
  6835. "funding": [
  6836. {
  6837. "url": "https://symfony.com/sponsor",
  6838. "type": "custom"
  6839. },
  6840. {
  6841. "url": "https://github.com/fabpot",
  6842. "type": "github"
  6843. },
  6844. {
  6845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6846. "type": "tidelift"
  6847. }
  6848. ],
  6849. "time": "2024-09-20T13:35:23+00:00"
  6850. },
  6851. {
  6852. "name": "symfony/security-csrf",
  6853. "version": "v7.1.1",
  6854. "source": {
  6855. "type": "git",
  6856. "url": "https://github.com/symfony/security-csrf.git",
  6857. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21"
  6858. },
  6859. "dist": {
  6860. "type": "zip",
  6861. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  6862. "reference": "27cd1bce9d7f3457a152a6ca9790712d6954dd21",
  6863. "shasum": ""
  6864. },
  6865. "require": {
  6866. "php": ">=8.2",
  6867. "symfony/security-core": "^6.4|^7.0"
  6868. },
  6869. "conflict": {
  6870. "symfony/http-foundation": "<6.4"
  6871. },
  6872. "require-dev": {
  6873. "symfony/http-foundation": "^6.4|^7.0"
  6874. },
  6875. "type": "library",
  6876. "autoload": {
  6877. "psr-4": {
  6878. "Symfony\\Component\\Security\\Csrf\\": ""
  6879. },
  6880. "exclude-from-classmap": [
  6881. "/Tests/"
  6882. ]
  6883. },
  6884. "notification-url": "https://packagist.org/downloads/",
  6885. "license": [
  6886. "MIT"
  6887. ],
  6888. "authors": [
  6889. {
  6890. "name": "Fabien Potencier",
  6891. "email": "fabien@symfony.com"
  6892. },
  6893. {
  6894. "name": "Symfony Community",
  6895. "homepage": "https://symfony.com/contributors"
  6896. }
  6897. ],
  6898. "description": "Symfony Security Component - CSRF Library",
  6899. "homepage": "https://symfony.com",
  6900. "support": {
  6901. "source": "https://github.com/symfony/security-csrf/tree/v7.1.1"
  6902. },
  6903. "funding": [
  6904. {
  6905. "url": "https://symfony.com/sponsor",
  6906. "type": "custom"
  6907. },
  6908. {
  6909. "url": "https://github.com/fabpot",
  6910. "type": "github"
  6911. },
  6912. {
  6913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6914. "type": "tidelift"
  6915. }
  6916. ],
  6917. "time": "2024-05-31T14:57:53+00:00"
  6918. },
  6919. {
  6920. "name": "symfony/security-http",
  6921. "version": "v7.1.5",
  6922. "source": {
  6923. "type": "git",
  6924. "url": "https://github.com/symfony/security-http.git",
  6925. "reference": "d47c013bccf4b81a1496826d42dfa05da549131a"
  6926. },
  6927. "dist": {
  6928. "type": "zip",
  6929. "url": "https://api.github.com/repos/symfony/security-http/zipball/d47c013bccf4b81a1496826d42dfa05da549131a",
  6930. "reference": "d47c013bccf4b81a1496826d42dfa05da549131a",
  6931. "shasum": ""
  6932. },
  6933. "require": {
  6934. "php": ">=8.2",
  6935. "symfony/deprecation-contracts": "^2.5|^3",
  6936. "symfony/http-foundation": "^6.4|^7.0",
  6937. "symfony/http-kernel": "^6.4|^7.0",
  6938. "symfony/polyfill-mbstring": "~1.0",
  6939. "symfony/property-access": "^6.4|^7.0",
  6940. "symfony/security-core": "^6.4|^7.0",
  6941. "symfony/service-contracts": "^2.5|^3"
  6942. },
  6943. "conflict": {
  6944. "symfony/clock": "<6.4",
  6945. "symfony/event-dispatcher": "<6.4",
  6946. "symfony/http-client-contracts": "<3.0",
  6947. "symfony/security-bundle": "<6.4",
  6948. "symfony/security-csrf": "<6.4"
  6949. },
  6950. "require-dev": {
  6951. "psr/log": "^1|^2|^3",
  6952. "symfony/cache": "^6.4|^7.0",
  6953. "symfony/clock": "^6.4|^7.0",
  6954. "symfony/expression-language": "^6.4|^7.0",
  6955. "symfony/http-client": "^6.4|^7.0",
  6956. "symfony/http-client-contracts": "^3.0",
  6957. "symfony/rate-limiter": "^6.4|^7.0",
  6958. "symfony/routing": "^6.4|^7.0",
  6959. "symfony/security-csrf": "^6.4|^7.0",
  6960. "symfony/translation": "^6.4|^7.0",
  6961. "web-token/jwt-library": "^3.3.2|^4.0"
  6962. },
  6963. "type": "library",
  6964. "autoload": {
  6965. "psr-4": {
  6966. "Symfony\\Component\\Security\\Http\\": ""
  6967. },
  6968. "exclude-from-classmap": [
  6969. "/Tests/"
  6970. ]
  6971. },
  6972. "notification-url": "https://packagist.org/downloads/",
  6973. "license": [
  6974. "MIT"
  6975. ],
  6976. "authors": [
  6977. {
  6978. "name": "Fabien Potencier",
  6979. "email": "fabien@symfony.com"
  6980. },
  6981. {
  6982. "name": "Symfony Community",
  6983. "homepage": "https://symfony.com/contributors"
  6984. }
  6985. ],
  6986. "description": "Symfony Security Component - HTTP Integration",
  6987. "homepage": "https://symfony.com",
  6988. "support": {
  6989. "source": "https://github.com/symfony/security-http/tree/v7.1.5"
  6990. },
  6991. "funding": [
  6992. {
  6993. "url": "https://symfony.com/sponsor",
  6994. "type": "custom"
  6995. },
  6996. {
  6997. "url": "https://github.com/fabpot",
  6998. "type": "github"
  6999. },
  7000. {
  7001. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7002. "type": "tidelift"
  7003. }
  7004. ],
  7005. "time": "2024-09-20T08:28:38+00:00"
  7006. },
  7007. {
  7008. "name": "symfony/serializer",
  7009. "version": "v7.1.5",
  7010. "source": {
  7011. "type": "git",
  7012. "url": "https://github.com/symfony/serializer.git",
  7013. "reference": "71d6e1f70f00752d1469d0f5e83b0a51716f288b"
  7014. },
  7015. "dist": {
  7016. "type": "zip",
  7017. "url": "https://api.github.com/repos/symfony/serializer/zipball/71d6e1f70f00752d1469d0f5e83b0a51716f288b",
  7018. "reference": "71d6e1f70f00752d1469d0f5e83b0a51716f288b",
  7019. "shasum": ""
  7020. },
  7021. "require": {
  7022. "php": ">=8.2",
  7023. "symfony/deprecation-contracts": "^2.5|^3",
  7024. "symfony/polyfill-ctype": "~1.8"
  7025. },
  7026. "conflict": {
  7027. "phpdocumentor/reflection-docblock": "<3.2.2",
  7028. "phpdocumentor/type-resolver": "<1.4.0",
  7029. "symfony/dependency-injection": "<6.4",
  7030. "symfony/property-access": "<6.4",
  7031. "symfony/property-info": "<6.4",
  7032. "symfony/type-info": "<7.1.5",
  7033. "symfony/uid": "<6.4",
  7034. "symfony/validator": "<6.4",
  7035. "symfony/yaml": "<6.4"
  7036. },
  7037. "require-dev": {
  7038. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7039. "phpstan/phpdoc-parser": "^1.0",
  7040. "seld/jsonlint": "^1.10",
  7041. "symfony/cache": "^6.4|^7.0",
  7042. "symfony/config": "^6.4|^7.0",
  7043. "symfony/console": "^6.4|^7.0",
  7044. "symfony/dependency-injection": "^6.4|^7.0",
  7045. "symfony/error-handler": "^6.4|^7.0",
  7046. "symfony/filesystem": "^6.4|^7.0",
  7047. "symfony/form": "^6.4|^7.0",
  7048. "symfony/http-foundation": "^6.4|^7.0",
  7049. "symfony/http-kernel": "^6.4|^7.0",
  7050. "symfony/messenger": "^6.4|^7.0",
  7051. "symfony/mime": "^6.4|^7.0",
  7052. "symfony/property-access": "^6.4|^7.0",
  7053. "symfony/property-info": "^6.4|^7.0",
  7054. "symfony/translation-contracts": "^2.5|^3",
  7055. "symfony/type-info": "^7.1.5",
  7056. "symfony/uid": "^6.4|^7.0",
  7057. "symfony/validator": "^6.4|^7.0",
  7058. "symfony/var-dumper": "^6.4|^7.0",
  7059. "symfony/var-exporter": "^6.4|^7.0",
  7060. "symfony/yaml": "^6.4|^7.0"
  7061. },
  7062. "type": "library",
  7063. "autoload": {
  7064. "psr-4": {
  7065. "Symfony\\Component\\Serializer\\": ""
  7066. },
  7067. "exclude-from-classmap": [
  7068. "/Tests/"
  7069. ]
  7070. },
  7071. "notification-url": "https://packagist.org/downloads/",
  7072. "license": [
  7073. "MIT"
  7074. ],
  7075. "authors": [
  7076. {
  7077. "name": "Fabien Potencier",
  7078. "email": "fabien@symfony.com"
  7079. },
  7080. {
  7081. "name": "Symfony Community",
  7082. "homepage": "https://symfony.com/contributors"
  7083. }
  7084. ],
  7085. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7086. "homepage": "https://symfony.com",
  7087. "support": {
  7088. "source": "https://github.com/symfony/serializer/tree/v7.1.5"
  7089. },
  7090. "funding": [
  7091. {
  7092. "url": "https://symfony.com/sponsor",
  7093. "type": "custom"
  7094. },
  7095. {
  7096. "url": "https://github.com/fabpot",
  7097. "type": "github"
  7098. },
  7099. {
  7100. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7101. "type": "tidelift"
  7102. }
  7103. ],
  7104. "time": "2024-09-20T12:13:15+00:00"
  7105. },
  7106. {
  7107. "name": "symfony/service-contracts",
  7108. "version": "v3.5.0",
  7109. "source": {
  7110. "type": "git",
  7111. "url": "https://github.com/symfony/service-contracts.git",
  7112. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7113. },
  7114. "dist": {
  7115. "type": "zip",
  7116. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7117. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7118. "shasum": ""
  7119. },
  7120. "require": {
  7121. "php": ">=8.1",
  7122. "psr/container": "^1.1|^2.0",
  7123. "symfony/deprecation-contracts": "^2.5|^3"
  7124. },
  7125. "conflict": {
  7126. "ext-psr": "<1.1|>=2"
  7127. },
  7128. "type": "library",
  7129. "extra": {
  7130. "branch-alias": {
  7131. "dev-main": "3.5-dev"
  7132. },
  7133. "thanks": {
  7134. "name": "symfony/contracts",
  7135. "url": "https://github.com/symfony/contracts"
  7136. }
  7137. },
  7138. "autoload": {
  7139. "psr-4": {
  7140. "Symfony\\Contracts\\Service\\": ""
  7141. },
  7142. "exclude-from-classmap": [
  7143. "/Test/"
  7144. ]
  7145. },
  7146. "notification-url": "https://packagist.org/downloads/",
  7147. "license": [
  7148. "MIT"
  7149. ],
  7150. "authors": [
  7151. {
  7152. "name": "Nicolas Grekas",
  7153. "email": "p@tchwork.com"
  7154. },
  7155. {
  7156. "name": "Symfony Community",
  7157. "homepage": "https://symfony.com/contributors"
  7158. }
  7159. ],
  7160. "description": "Generic abstractions related to writing services",
  7161. "homepage": "https://symfony.com",
  7162. "keywords": [
  7163. "abstractions",
  7164. "contracts",
  7165. "decoupling",
  7166. "interfaces",
  7167. "interoperability",
  7168. "standards"
  7169. ],
  7170. "support": {
  7171. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7172. },
  7173. "funding": [
  7174. {
  7175. "url": "https://symfony.com/sponsor",
  7176. "type": "custom"
  7177. },
  7178. {
  7179. "url": "https://github.com/fabpot",
  7180. "type": "github"
  7181. },
  7182. {
  7183. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7184. "type": "tidelift"
  7185. }
  7186. ],
  7187. "time": "2024-04-18T09:32:20+00:00"
  7188. },
  7189. {
  7190. "name": "symfony/stimulus-bundle",
  7191. "version": "v2.21.0",
  7192. "source": {
  7193. "type": "git",
  7194. "url": "https://github.com/symfony/stimulus-bundle.git",
  7195. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48"
  7196. },
  7197. "dist": {
  7198. "type": "zip",
  7199. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/e5f7747b514865719e0990389ce35a9b71bebb48",
  7200. "reference": "e5f7747b514865719e0990389ce35a9b71bebb48",
  7201. "shasum": ""
  7202. },
  7203. "require": {
  7204. "php": ">=8.1",
  7205. "symfony/config": "^5.4|^6.0|^7.0",
  7206. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7207. "symfony/deprecation-contracts": "^2.0|^3.0",
  7208. "symfony/finder": "^5.4|^6.0|^7.0",
  7209. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7210. "twig/twig": "^2.15.3|^3.8"
  7211. },
  7212. "require-dev": {
  7213. "symfony/asset-mapper": "^6.3|^7.0",
  7214. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7215. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7216. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7217. "zenstruck/browser": "^1.4"
  7218. },
  7219. "type": "symfony-bundle",
  7220. "autoload": {
  7221. "psr-4": {
  7222. "Symfony\\UX\\StimulusBundle\\": "src"
  7223. }
  7224. },
  7225. "notification-url": "https://packagist.org/downloads/",
  7226. "license": [
  7227. "MIT"
  7228. ],
  7229. "authors": [
  7230. {
  7231. "name": "Symfony Community",
  7232. "homepage": "https://symfony.com/contributors"
  7233. }
  7234. ],
  7235. "description": "Integration with your Symfony app & Stimulus!",
  7236. "keywords": [
  7237. "symfony-ux"
  7238. ],
  7239. "support": {
  7240. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.21.0"
  7241. },
  7242. "funding": [
  7243. {
  7244. "url": "https://symfony.com/sponsor",
  7245. "type": "custom"
  7246. },
  7247. {
  7248. "url": "https://github.com/fabpot",
  7249. "type": "github"
  7250. },
  7251. {
  7252. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7253. "type": "tidelift"
  7254. }
  7255. ],
  7256. "time": "2024-10-05T22:11:16+00:00"
  7257. },
  7258. {
  7259. "name": "symfony/stopwatch",
  7260. "version": "v7.1.1",
  7261. "source": {
  7262. "type": "git",
  7263. "url": "https://github.com/symfony/stopwatch.git",
  7264. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
  7265. },
  7266. "dist": {
  7267. "type": "zip",
  7268. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  7269. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  7270. "shasum": ""
  7271. },
  7272. "require": {
  7273. "php": ">=8.2",
  7274. "symfony/service-contracts": "^2.5|^3"
  7275. },
  7276. "type": "library",
  7277. "autoload": {
  7278. "psr-4": {
  7279. "Symfony\\Component\\Stopwatch\\": ""
  7280. },
  7281. "exclude-from-classmap": [
  7282. "/Tests/"
  7283. ]
  7284. },
  7285. "notification-url": "https://packagist.org/downloads/",
  7286. "license": [
  7287. "MIT"
  7288. ],
  7289. "authors": [
  7290. {
  7291. "name": "Fabien Potencier",
  7292. "email": "fabien@symfony.com"
  7293. },
  7294. {
  7295. "name": "Symfony Community",
  7296. "homepage": "https://symfony.com/contributors"
  7297. }
  7298. ],
  7299. "description": "Provides a way to profile code",
  7300. "homepage": "https://symfony.com",
  7301. "support": {
  7302. "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
  7303. },
  7304. "funding": [
  7305. {
  7306. "url": "https://symfony.com/sponsor",
  7307. "type": "custom"
  7308. },
  7309. {
  7310. "url": "https://github.com/fabpot",
  7311. "type": "github"
  7312. },
  7313. {
  7314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7315. "type": "tidelift"
  7316. }
  7317. ],
  7318. "time": "2024-05-31T14:57:53+00:00"
  7319. },
  7320. {
  7321. "name": "symfony/string",
  7322. "version": "v7.1.5",
  7323. "source": {
  7324. "type": "git",
  7325. "url": "https://github.com/symfony/string.git",
  7326. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306"
  7327. },
  7328. "dist": {
  7329. "type": "zip",
  7330. "url": "https://api.github.com/repos/symfony/string/zipball/d66f9c343fa894ec2037cc928381df90a7ad4306",
  7331. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306",
  7332. "shasum": ""
  7333. },
  7334. "require": {
  7335. "php": ">=8.2",
  7336. "symfony/polyfill-ctype": "~1.8",
  7337. "symfony/polyfill-intl-grapheme": "~1.0",
  7338. "symfony/polyfill-intl-normalizer": "~1.0",
  7339. "symfony/polyfill-mbstring": "~1.0"
  7340. },
  7341. "conflict": {
  7342. "symfony/translation-contracts": "<2.5"
  7343. },
  7344. "require-dev": {
  7345. "symfony/emoji": "^7.1",
  7346. "symfony/error-handler": "^6.4|^7.0",
  7347. "symfony/http-client": "^6.4|^7.0",
  7348. "symfony/intl": "^6.4|^7.0",
  7349. "symfony/translation-contracts": "^2.5|^3.0",
  7350. "symfony/var-exporter": "^6.4|^7.0"
  7351. },
  7352. "type": "library",
  7353. "autoload": {
  7354. "files": [
  7355. "Resources/functions.php"
  7356. ],
  7357. "psr-4": {
  7358. "Symfony\\Component\\String\\": ""
  7359. },
  7360. "exclude-from-classmap": [
  7361. "/Tests/"
  7362. ]
  7363. },
  7364. "notification-url": "https://packagist.org/downloads/",
  7365. "license": [
  7366. "MIT"
  7367. ],
  7368. "authors": [
  7369. {
  7370. "name": "Nicolas Grekas",
  7371. "email": "p@tchwork.com"
  7372. },
  7373. {
  7374. "name": "Symfony Community",
  7375. "homepage": "https://symfony.com/contributors"
  7376. }
  7377. ],
  7378. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7379. "homepage": "https://symfony.com",
  7380. "keywords": [
  7381. "grapheme",
  7382. "i18n",
  7383. "string",
  7384. "unicode",
  7385. "utf-8",
  7386. "utf8"
  7387. ],
  7388. "support": {
  7389. "source": "https://github.com/symfony/string/tree/v7.1.5"
  7390. },
  7391. "funding": [
  7392. {
  7393. "url": "https://symfony.com/sponsor",
  7394. "type": "custom"
  7395. },
  7396. {
  7397. "url": "https://github.com/fabpot",
  7398. "type": "github"
  7399. },
  7400. {
  7401. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7402. "type": "tidelift"
  7403. }
  7404. ],
  7405. "time": "2024-09-20T08:28:38+00:00"
  7406. },
  7407. {
  7408. "name": "symfony/translation",
  7409. "version": "v7.1.5",
  7410. "source": {
  7411. "type": "git",
  7412. "url": "https://github.com/symfony/translation.git",
  7413. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea"
  7414. },
  7415. "dist": {
  7416. "type": "zip",
  7417. "url": "https://api.github.com/repos/symfony/translation/zipball/235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  7418. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  7419. "shasum": ""
  7420. },
  7421. "require": {
  7422. "php": ">=8.2",
  7423. "symfony/polyfill-mbstring": "~1.0",
  7424. "symfony/translation-contracts": "^2.5|^3.0"
  7425. },
  7426. "conflict": {
  7427. "symfony/config": "<6.4",
  7428. "symfony/console": "<6.4",
  7429. "symfony/dependency-injection": "<6.4",
  7430. "symfony/http-client-contracts": "<2.5",
  7431. "symfony/http-kernel": "<6.4",
  7432. "symfony/service-contracts": "<2.5",
  7433. "symfony/twig-bundle": "<6.4",
  7434. "symfony/yaml": "<6.4"
  7435. },
  7436. "provide": {
  7437. "symfony/translation-implementation": "2.3|3.0"
  7438. },
  7439. "require-dev": {
  7440. "nikic/php-parser": "^4.18|^5.0",
  7441. "psr/log": "^1|^2|^3",
  7442. "symfony/config": "^6.4|^7.0",
  7443. "symfony/console": "^6.4|^7.0",
  7444. "symfony/dependency-injection": "^6.4|^7.0",
  7445. "symfony/finder": "^6.4|^7.0",
  7446. "symfony/http-client-contracts": "^2.5|^3.0",
  7447. "symfony/http-kernel": "^6.4|^7.0",
  7448. "symfony/intl": "^6.4|^7.0",
  7449. "symfony/polyfill-intl-icu": "^1.21",
  7450. "symfony/routing": "^6.4|^7.0",
  7451. "symfony/service-contracts": "^2.5|^3",
  7452. "symfony/yaml": "^6.4|^7.0"
  7453. },
  7454. "type": "library",
  7455. "autoload": {
  7456. "files": [
  7457. "Resources/functions.php"
  7458. ],
  7459. "psr-4": {
  7460. "Symfony\\Component\\Translation\\": ""
  7461. },
  7462. "exclude-from-classmap": [
  7463. "/Tests/"
  7464. ]
  7465. },
  7466. "notification-url": "https://packagist.org/downloads/",
  7467. "license": [
  7468. "MIT"
  7469. ],
  7470. "authors": [
  7471. {
  7472. "name": "Fabien Potencier",
  7473. "email": "fabien@symfony.com"
  7474. },
  7475. {
  7476. "name": "Symfony Community",
  7477. "homepage": "https://symfony.com/contributors"
  7478. }
  7479. ],
  7480. "description": "Provides tools to internationalize your application",
  7481. "homepage": "https://symfony.com",
  7482. "support": {
  7483. "source": "https://github.com/symfony/translation/tree/v7.1.5"
  7484. },
  7485. "funding": [
  7486. {
  7487. "url": "https://symfony.com/sponsor",
  7488. "type": "custom"
  7489. },
  7490. {
  7491. "url": "https://github.com/fabpot",
  7492. "type": "github"
  7493. },
  7494. {
  7495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7496. "type": "tidelift"
  7497. }
  7498. ],
  7499. "time": "2024-09-16T06:30:38+00:00"
  7500. },
  7501. {
  7502. "name": "symfony/translation-contracts",
  7503. "version": "v3.5.0",
  7504. "source": {
  7505. "type": "git",
  7506. "url": "https://github.com/symfony/translation-contracts.git",
  7507. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7508. },
  7509. "dist": {
  7510. "type": "zip",
  7511. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7512. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7513. "shasum": ""
  7514. },
  7515. "require": {
  7516. "php": ">=8.1"
  7517. },
  7518. "type": "library",
  7519. "extra": {
  7520. "branch-alias": {
  7521. "dev-main": "3.5-dev"
  7522. },
  7523. "thanks": {
  7524. "name": "symfony/contracts",
  7525. "url": "https://github.com/symfony/contracts"
  7526. }
  7527. },
  7528. "autoload": {
  7529. "psr-4": {
  7530. "Symfony\\Contracts\\Translation\\": ""
  7531. },
  7532. "exclude-from-classmap": [
  7533. "/Test/"
  7534. ]
  7535. },
  7536. "notification-url": "https://packagist.org/downloads/",
  7537. "license": [
  7538. "MIT"
  7539. ],
  7540. "authors": [
  7541. {
  7542. "name": "Nicolas Grekas",
  7543. "email": "p@tchwork.com"
  7544. },
  7545. {
  7546. "name": "Symfony Community",
  7547. "homepage": "https://symfony.com/contributors"
  7548. }
  7549. ],
  7550. "description": "Generic abstractions related to translation",
  7551. "homepage": "https://symfony.com",
  7552. "keywords": [
  7553. "abstractions",
  7554. "contracts",
  7555. "decoupling",
  7556. "interfaces",
  7557. "interoperability",
  7558. "standards"
  7559. ],
  7560. "support": {
  7561. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7562. },
  7563. "funding": [
  7564. {
  7565. "url": "https://symfony.com/sponsor",
  7566. "type": "custom"
  7567. },
  7568. {
  7569. "url": "https://github.com/fabpot",
  7570. "type": "github"
  7571. },
  7572. {
  7573. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7574. "type": "tidelift"
  7575. }
  7576. ],
  7577. "time": "2024-04-18T09:32:20+00:00"
  7578. },
  7579. {
  7580. "name": "symfony/twig-bridge",
  7581. "version": "v7.1.5",
  7582. "source": {
  7583. "type": "git",
  7584. "url": "https://github.com/symfony/twig-bridge.git",
  7585. "reference": "e997e5025b53c0f7b17632802daefdd6a04540ae"
  7586. },
  7587. "dist": {
  7588. "type": "zip",
  7589. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/e997e5025b53c0f7b17632802daefdd6a04540ae",
  7590. "reference": "e997e5025b53c0f7b17632802daefdd6a04540ae",
  7591. "shasum": ""
  7592. },
  7593. "require": {
  7594. "php": ">=8.2",
  7595. "symfony/translation-contracts": "^2.5|^3",
  7596. "twig/twig": "^3.9"
  7597. },
  7598. "conflict": {
  7599. "phpdocumentor/reflection-docblock": "<3.2.2",
  7600. "phpdocumentor/type-resolver": "<1.4.0",
  7601. "symfony/console": "<6.4",
  7602. "symfony/form": "<6.4",
  7603. "symfony/http-foundation": "<6.4",
  7604. "symfony/http-kernel": "<6.4",
  7605. "symfony/mime": "<6.4",
  7606. "symfony/serializer": "<6.4",
  7607. "symfony/translation": "<6.4",
  7608. "symfony/workflow": "<6.4"
  7609. },
  7610. "require-dev": {
  7611. "egulias/email-validator": "^2.1.10|^3|^4",
  7612. "league/html-to-markdown": "^5.0",
  7613. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7614. "symfony/asset": "^6.4|^7.0",
  7615. "symfony/asset-mapper": "^6.4|^7.0",
  7616. "symfony/console": "^6.4|^7.0",
  7617. "symfony/dependency-injection": "^6.4|^7.0",
  7618. "symfony/emoji": "^7.1",
  7619. "symfony/expression-language": "^6.4|^7.0",
  7620. "symfony/finder": "^6.4|^7.0",
  7621. "symfony/form": "^6.4|^7.0",
  7622. "symfony/html-sanitizer": "^6.4|^7.0",
  7623. "symfony/http-foundation": "^6.4|^7.0",
  7624. "symfony/http-kernel": "^6.4|^7.0",
  7625. "symfony/intl": "^6.4|^7.0",
  7626. "symfony/mime": "^6.4|^7.0",
  7627. "symfony/polyfill-intl-icu": "~1.0",
  7628. "symfony/property-info": "^6.4|^7.0",
  7629. "symfony/routing": "^6.4|^7.0",
  7630. "symfony/security-acl": "^2.8|^3.0",
  7631. "symfony/security-core": "^6.4|^7.0",
  7632. "symfony/security-csrf": "^6.4|^7.0",
  7633. "symfony/security-http": "^6.4|^7.0",
  7634. "symfony/serializer": "^6.4.3|^7.0.3",
  7635. "symfony/stopwatch": "^6.4|^7.0",
  7636. "symfony/translation": "^6.4|^7.0",
  7637. "symfony/web-link": "^6.4|^7.0",
  7638. "symfony/workflow": "^6.4|^7.0",
  7639. "symfony/yaml": "^6.4|^7.0",
  7640. "twig/cssinliner-extra": "^2.12|^3",
  7641. "twig/inky-extra": "^2.12|^3",
  7642. "twig/markdown-extra": "^2.12|^3"
  7643. },
  7644. "type": "symfony-bridge",
  7645. "autoload": {
  7646. "psr-4": {
  7647. "Symfony\\Bridge\\Twig\\": ""
  7648. },
  7649. "exclude-from-classmap": [
  7650. "/Tests/"
  7651. ]
  7652. },
  7653. "notification-url": "https://packagist.org/downloads/",
  7654. "license": [
  7655. "MIT"
  7656. ],
  7657. "authors": [
  7658. {
  7659. "name": "Fabien Potencier",
  7660. "email": "fabien@symfony.com"
  7661. },
  7662. {
  7663. "name": "Symfony Community",
  7664. "homepage": "https://symfony.com/contributors"
  7665. }
  7666. ],
  7667. "description": "Provides integration for Twig with various Symfony components",
  7668. "homepage": "https://symfony.com",
  7669. "support": {
  7670. "source": "https://github.com/symfony/twig-bridge/tree/v7.1.5"
  7671. },
  7672. "funding": [
  7673. {
  7674. "url": "https://symfony.com/sponsor",
  7675. "type": "custom"
  7676. },
  7677. {
  7678. "url": "https://github.com/fabpot",
  7679. "type": "github"
  7680. },
  7681. {
  7682. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7683. "type": "tidelift"
  7684. }
  7685. ],
  7686. "time": "2024-09-15T06:48:17+00:00"
  7687. },
  7688. {
  7689. "name": "symfony/twig-bundle",
  7690. "version": "v7.1.5",
  7691. "source": {
  7692. "type": "git",
  7693. "url": "https://github.com/symfony/twig-bundle.git",
  7694. "reference": "4e6afd0dc8396f16861b682f3b854ff6e24bfb7e"
  7695. },
  7696. "dist": {
  7697. "type": "zip",
  7698. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/4e6afd0dc8396f16861b682f3b854ff6e24bfb7e",
  7699. "reference": "4e6afd0dc8396f16861b682f3b854ff6e24bfb7e",
  7700. "shasum": ""
  7701. },
  7702. "require": {
  7703. "composer-runtime-api": ">=2.1",
  7704. "php": ">=8.2",
  7705. "symfony/config": "^6.4|^7.0",
  7706. "symfony/dependency-injection": "^6.4|^7.0",
  7707. "symfony/http-foundation": "^6.4|^7.0",
  7708. "symfony/http-kernel": "^6.4|^7.0",
  7709. "symfony/twig-bridge": "^6.4|^7.0",
  7710. "twig/twig": "^3.0.4"
  7711. },
  7712. "conflict": {
  7713. "symfony/framework-bundle": "<6.4",
  7714. "symfony/translation": "<6.4"
  7715. },
  7716. "require-dev": {
  7717. "symfony/asset": "^6.4|^7.0",
  7718. "symfony/expression-language": "^6.4|^7.0",
  7719. "symfony/finder": "^6.4|^7.0",
  7720. "symfony/form": "^6.4|^7.0",
  7721. "symfony/framework-bundle": "^6.4|^7.0",
  7722. "symfony/routing": "^6.4|^7.0",
  7723. "symfony/stopwatch": "^6.4|^7.0",
  7724. "symfony/translation": "^6.4|^7.0",
  7725. "symfony/web-link": "^6.4|^7.0",
  7726. "symfony/yaml": "^6.4|^7.0"
  7727. },
  7728. "type": "symfony-bundle",
  7729. "autoload": {
  7730. "psr-4": {
  7731. "Symfony\\Bundle\\TwigBundle\\": ""
  7732. },
  7733. "exclude-from-classmap": [
  7734. "/Tests/"
  7735. ]
  7736. },
  7737. "notification-url": "https://packagist.org/downloads/",
  7738. "license": [
  7739. "MIT"
  7740. ],
  7741. "authors": [
  7742. {
  7743. "name": "Fabien Potencier",
  7744. "email": "fabien@symfony.com"
  7745. },
  7746. {
  7747. "name": "Symfony Community",
  7748. "homepage": "https://symfony.com/contributors"
  7749. }
  7750. ],
  7751. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7752. "homepage": "https://symfony.com",
  7753. "support": {
  7754. "source": "https://github.com/symfony/twig-bundle/tree/v7.1.5"
  7755. },
  7756. "funding": [
  7757. {
  7758. "url": "https://symfony.com/sponsor",
  7759. "type": "custom"
  7760. },
  7761. {
  7762. "url": "https://github.com/fabpot",
  7763. "type": "github"
  7764. },
  7765. {
  7766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7767. "type": "tidelift"
  7768. }
  7769. ],
  7770. "time": "2024-09-08T12:32:26+00:00"
  7771. },
  7772. {
  7773. "name": "symfony/type-info",
  7774. "version": "v7.1.5",
  7775. "source": {
  7776. "type": "git",
  7777. "url": "https://github.com/symfony/type-info.git",
  7778. "reference": "9f6094aa900d2c06bd61576a6f279d4ac441515f"
  7779. },
  7780. "dist": {
  7781. "type": "zip",
  7782. "url": "https://api.github.com/repos/symfony/type-info/zipball/9f6094aa900d2c06bd61576a6f279d4ac441515f",
  7783. "reference": "9f6094aa900d2c06bd61576a6f279d4ac441515f",
  7784. "shasum": ""
  7785. },
  7786. "require": {
  7787. "php": ">=8.2",
  7788. "psr/container": "^1.1|^2.0"
  7789. },
  7790. "conflict": {
  7791. "phpstan/phpdoc-parser": "<1.0",
  7792. "symfony/dependency-injection": "<6.4",
  7793. "symfony/property-info": "<6.4"
  7794. },
  7795. "require-dev": {
  7796. "phpstan/phpdoc-parser": "^1.0",
  7797. "symfony/dependency-injection": "^6.4|^7.0",
  7798. "symfony/property-info": "^6.4|^7.0"
  7799. },
  7800. "type": "library",
  7801. "autoload": {
  7802. "psr-4": {
  7803. "Symfony\\Component\\TypeInfo\\": ""
  7804. },
  7805. "exclude-from-classmap": [
  7806. "/Tests/"
  7807. ]
  7808. },
  7809. "notification-url": "https://packagist.org/downloads/",
  7810. "license": [
  7811. "MIT"
  7812. ],
  7813. "authors": [
  7814. {
  7815. "name": "Mathias Arlaud",
  7816. "email": "mathias.arlaud@gmail.com"
  7817. },
  7818. {
  7819. "name": "Baptiste LEDUC",
  7820. "email": "baptiste.leduc@gmail.com"
  7821. },
  7822. {
  7823. "name": "Symfony Community",
  7824. "homepage": "https://symfony.com/contributors"
  7825. }
  7826. ],
  7827. "description": "Extracts PHP types information.",
  7828. "homepage": "https://symfony.com",
  7829. "keywords": [
  7830. "PHPStan",
  7831. "phpdoc",
  7832. "symfony",
  7833. "type"
  7834. ],
  7835. "support": {
  7836. "source": "https://github.com/symfony/type-info/tree/v7.1.5"
  7837. },
  7838. "funding": [
  7839. {
  7840. "url": "https://symfony.com/sponsor",
  7841. "type": "custom"
  7842. },
  7843. {
  7844. "url": "https://github.com/fabpot",
  7845. "type": "github"
  7846. },
  7847. {
  7848. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7849. "type": "tidelift"
  7850. }
  7851. ],
  7852. "time": "2024-09-19T21:48:23+00:00"
  7853. },
  7854. {
  7855. "name": "symfony/ux-turbo",
  7856. "version": "v2.21.0",
  7857. "source": {
  7858. "type": "git",
  7859. "url": "https://github.com/symfony/ux-turbo.git",
  7860. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c"
  7861. },
  7862. "dist": {
  7863. "type": "zip",
  7864. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  7865. "reference": "075c609e54fc421c6b1c1974e46e9a8b2d44277c",
  7866. "shasum": ""
  7867. },
  7868. "require": {
  7869. "php": ">=8.1",
  7870. "symfony/stimulus-bundle": "^2.9.1"
  7871. },
  7872. "conflict": {
  7873. "symfony/flex": "<1.13"
  7874. },
  7875. "require-dev": {
  7876. "dbrekelmans/bdi": "dev-main",
  7877. "doctrine/doctrine-bundle": "^2.4.3",
  7878. "doctrine/orm": "^2.8 | 3.0",
  7879. "phpstan/phpstan": "^1.10",
  7880. "symfony/asset-mapper": "^6.4|^7.0",
  7881. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  7882. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7883. "symfony/form": "^5.4|^6.0|^7.0",
  7884. "symfony/framework-bundle": "^6.4|^7.0",
  7885. "symfony/mercure-bundle": "^0.3.7",
  7886. "symfony/messenger": "^5.4|^6.0|^7.0",
  7887. "symfony/panther": "^2.1",
  7888. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7889. "symfony/process": "^5.4|6.3.*|^7.0",
  7890. "symfony/property-access": "^5.4|^6.0|^7.0",
  7891. "symfony/security-core": "^5.4|^6.0|^7.0",
  7892. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7893. "symfony/twig-bundle": "^6.4|^7.0",
  7894. "symfony/ux-twig-component": "^2.21",
  7895. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  7896. },
  7897. "type": "symfony-bundle",
  7898. "extra": {
  7899. "thanks": {
  7900. "name": "symfony/ux",
  7901. "url": "https://github.com/symfony/ux"
  7902. }
  7903. },
  7904. "autoload": {
  7905. "psr-4": {
  7906. "Symfony\\UX\\Turbo\\": "src/"
  7907. }
  7908. },
  7909. "notification-url": "https://packagist.org/downloads/",
  7910. "license": [
  7911. "MIT"
  7912. ],
  7913. "authors": [
  7914. {
  7915. "name": "Kévin Dunglas",
  7916. "email": "kevin@dunglas.fr"
  7917. },
  7918. {
  7919. "name": "Symfony Community",
  7920. "homepage": "https://symfony.com/contributors"
  7921. }
  7922. ],
  7923. "description": "Hotwire Turbo integration for Symfony",
  7924. "homepage": "https://symfony.com",
  7925. "keywords": [
  7926. "hotwire",
  7927. "javascript",
  7928. "mercure",
  7929. "symfony-ux",
  7930. "turbo",
  7931. "turbo-stream"
  7932. ],
  7933. "support": {
  7934. "source": "https://github.com/symfony/ux-turbo/tree/v2.21.0"
  7935. },
  7936. "funding": [
  7937. {
  7938. "url": "https://symfony.com/sponsor",
  7939. "type": "custom"
  7940. },
  7941. {
  7942. "url": "https://github.com/fabpot",
  7943. "type": "github"
  7944. },
  7945. {
  7946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7947. "type": "tidelift"
  7948. }
  7949. ],
  7950. "time": "2024-10-21T19:07:02+00:00"
  7951. },
  7952. {
  7953. "name": "symfony/validator",
  7954. "version": "v7.1.5",
  7955. "source": {
  7956. "type": "git",
  7957. "url": "https://github.com/symfony/validator.git",
  7958. "reference": "e57592782dc2a86997477f28164c51af53512ad8"
  7959. },
  7960. "dist": {
  7961. "type": "zip",
  7962. "url": "https://api.github.com/repos/symfony/validator/zipball/e57592782dc2a86997477f28164c51af53512ad8",
  7963. "reference": "e57592782dc2a86997477f28164c51af53512ad8",
  7964. "shasum": ""
  7965. },
  7966. "require": {
  7967. "php": ">=8.2",
  7968. "symfony/deprecation-contracts": "^2.5|^3",
  7969. "symfony/polyfill-ctype": "~1.8",
  7970. "symfony/polyfill-mbstring": "~1.0",
  7971. "symfony/polyfill-php83": "^1.27",
  7972. "symfony/translation-contracts": "^2.5|^3"
  7973. },
  7974. "conflict": {
  7975. "doctrine/lexer": "<1.1",
  7976. "symfony/dependency-injection": "<6.4",
  7977. "symfony/doctrine-bridge": "<7.0",
  7978. "symfony/expression-language": "<6.4",
  7979. "symfony/http-kernel": "<6.4",
  7980. "symfony/intl": "<6.4",
  7981. "symfony/property-info": "<6.4",
  7982. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7983. "symfony/yaml": "<6.4"
  7984. },
  7985. "require-dev": {
  7986. "egulias/email-validator": "^2.1.10|^3|^4",
  7987. "symfony/cache": "^6.4|^7.0",
  7988. "symfony/config": "^6.4|^7.0",
  7989. "symfony/console": "^6.4|^7.0",
  7990. "symfony/dependency-injection": "^6.4|^7.0",
  7991. "symfony/expression-language": "^6.4|^7.0",
  7992. "symfony/finder": "^6.4|^7.0",
  7993. "symfony/http-client": "^6.4|^7.0",
  7994. "symfony/http-foundation": "^6.4|^7.0",
  7995. "symfony/http-kernel": "^6.4|^7.0",
  7996. "symfony/intl": "^6.4|^7.0",
  7997. "symfony/mime": "^6.4|^7.0",
  7998. "symfony/property-access": "^6.4|^7.0",
  7999. "symfony/property-info": "^6.4|^7.0",
  8000. "symfony/translation": "^6.4.3|^7.0.3",
  8001. "symfony/type-info": "^7.1",
  8002. "symfony/yaml": "^6.4|^7.0"
  8003. },
  8004. "type": "library",
  8005. "autoload": {
  8006. "psr-4": {
  8007. "Symfony\\Component\\Validator\\": ""
  8008. },
  8009. "exclude-from-classmap": [
  8010. "/Tests/",
  8011. "/Resources/bin/"
  8012. ]
  8013. },
  8014. "notification-url": "https://packagist.org/downloads/",
  8015. "license": [
  8016. "MIT"
  8017. ],
  8018. "authors": [
  8019. {
  8020. "name": "Fabien Potencier",
  8021. "email": "fabien@symfony.com"
  8022. },
  8023. {
  8024. "name": "Symfony Community",
  8025. "homepage": "https://symfony.com/contributors"
  8026. }
  8027. ],
  8028. "description": "Provides tools to validate values",
  8029. "homepage": "https://symfony.com",
  8030. "support": {
  8031. "source": "https://github.com/symfony/validator/tree/v7.1.5"
  8032. },
  8033. "funding": [
  8034. {
  8035. "url": "https://symfony.com/sponsor",
  8036. "type": "custom"
  8037. },
  8038. {
  8039. "url": "https://github.com/fabpot",
  8040. "type": "github"
  8041. },
  8042. {
  8043. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8044. "type": "tidelift"
  8045. }
  8046. ],
  8047. "time": "2024-09-20T08:28:38+00:00"
  8048. },
  8049. {
  8050. "name": "symfony/var-dumper",
  8051. "version": "v7.1.5",
  8052. "source": {
  8053. "type": "git",
  8054. "url": "https://github.com/symfony/var-dumper.git",
  8055. "reference": "e20e03889539fd4e4211e14d2179226c513c010d"
  8056. },
  8057. "dist": {
  8058. "type": "zip",
  8059. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e20e03889539fd4e4211e14d2179226c513c010d",
  8060. "reference": "e20e03889539fd4e4211e14d2179226c513c010d",
  8061. "shasum": ""
  8062. },
  8063. "require": {
  8064. "php": ">=8.2",
  8065. "symfony/polyfill-mbstring": "~1.0"
  8066. },
  8067. "conflict": {
  8068. "symfony/console": "<6.4"
  8069. },
  8070. "require-dev": {
  8071. "ext-iconv": "*",
  8072. "symfony/console": "^6.4|^7.0",
  8073. "symfony/http-kernel": "^6.4|^7.0",
  8074. "symfony/process": "^6.4|^7.0",
  8075. "symfony/uid": "^6.4|^7.0",
  8076. "twig/twig": "^3.0.4"
  8077. },
  8078. "bin": [
  8079. "Resources/bin/var-dump-server"
  8080. ],
  8081. "type": "library",
  8082. "autoload": {
  8083. "files": [
  8084. "Resources/functions/dump.php"
  8085. ],
  8086. "psr-4": {
  8087. "Symfony\\Component\\VarDumper\\": ""
  8088. },
  8089. "exclude-from-classmap": [
  8090. "/Tests/"
  8091. ]
  8092. },
  8093. "notification-url": "https://packagist.org/downloads/",
  8094. "license": [
  8095. "MIT"
  8096. ],
  8097. "authors": [
  8098. {
  8099. "name": "Nicolas Grekas",
  8100. "email": "p@tchwork.com"
  8101. },
  8102. {
  8103. "name": "Symfony Community",
  8104. "homepage": "https://symfony.com/contributors"
  8105. }
  8106. ],
  8107. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8108. "homepage": "https://symfony.com",
  8109. "keywords": [
  8110. "debug",
  8111. "dump"
  8112. ],
  8113. "support": {
  8114. "source": "https://github.com/symfony/var-dumper/tree/v7.1.5"
  8115. },
  8116. "funding": [
  8117. {
  8118. "url": "https://symfony.com/sponsor",
  8119. "type": "custom"
  8120. },
  8121. {
  8122. "url": "https://github.com/fabpot",
  8123. "type": "github"
  8124. },
  8125. {
  8126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8127. "type": "tidelift"
  8128. }
  8129. ],
  8130. "time": "2024-09-16T10:07:02+00:00"
  8131. },
  8132. {
  8133. "name": "symfony/var-exporter",
  8134. "version": "v7.1.2",
  8135. "source": {
  8136. "type": "git",
  8137. "url": "https://github.com/symfony/var-exporter.git",
  8138. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c"
  8139. },
  8140. "dist": {
  8141. "type": "zip",
  8142. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b80a669a2264609f07f1667f891dbfca25eba44c",
  8143. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c",
  8144. "shasum": ""
  8145. },
  8146. "require": {
  8147. "php": ">=8.2"
  8148. },
  8149. "require-dev": {
  8150. "symfony/property-access": "^6.4|^7.0",
  8151. "symfony/serializer": "^6.4|^7.0",
  8152. "symfony/var-dumper": "^6.4|^7.0"
  8153. },
  8154. "type": "library",
  8155. "autoload": {
  8156. "psr-4": {
  8157. "Symfony\\Component\\VarExporter\\": ""
  8158. },
  8159. "exclude-from-classmap": [
  8160. "/Tests/"
  8161. ]
  8162. },
  8163. "notification-url": "https://packagist.org/downloads/",
  8164. "license": [
  8165. "MIT"
  8166. ],
  8167. "authors": [
  8168. {
  8169. "name": "Nicolas Grekas",
  8170. "email": "p@tchwork.com"
  8171. },
  8172. {
  8173. "name": "Symfony Community",
  8174. "homepage": "https://symfony.com/contributors"
  8175. }
  8176. ],
  8177. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8178. "homepage": "https://symfony.com",
  8179. "keywords": [
  8180. "clone",
  8181. "construct",
  8182. "export",
  8183. "hydrate",
  8184. "instantiate",
  8185. "lazy-loading",
  8186. "proxy",
  8187. "serialize"
  8188. ],
  8189. "support": {
  8190. "source": "https://github.com/symfony/var-exporter/tree/v7.1.2"
  8191. },
  8192. "funding": [
  8193. {
  8194. "url": "https://symfony.com/sponsor",
  8195. "type": "custom"
  8196. },
  8197. {
  8198. "url": "https://github.com/fabpot",
  8199. "type": "github"
  8200. },
  8201. {
  8202. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8203. "type": "tidelift"
  8204. }
  8205. ],
  8206. "time": "2024-06-28T08:00:31+00:00"
  8207. },
  8208. {
  8209. "name": "symfony/web-link",
  8210. "version": "v7.1.1",
  8211. "source": {
  8212. "type": "git",
  8213. "url": "https://github.com/symfony/web-link.git",
  8214. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f"
  8215. },
  8216. "dist": {
  8217. "type": "zip",
  8218. "url": "https://api.github.com/repos/symfony/web-link/zipball/63f90aa0054bfd9a091d2f5cf465958f1030638f",
  8219. "reference": "63f90aa0054bfd9a091d2f5cf465958f1030638f",
  8220. "shasum": ""
  8221. },
  8222. "require": {
  8223. "php": ">=8.2",
  8224. "psr/link": "^1.1|^2.0"
  8225. },
  8226. "conflict": {
  8227. "symfony/http-kernel": "<6.4"
  8228. },
  8229. "provide": {
  8230. "psr/link-implementation": "1.0|2.0"
  8231. },
  8232. "require-dev": {
  8233. "symfony/http-kernel": "^6.4|^7.0"
  8234. },
  8235. "type": "library",
  8236. "autoload": {
  8237. "psr-4": {
  8238. "Symfony\\Component\\WebLink\\": ""
  8239. },
  8240. "exclude-from-classmap": [
  8241. "/Tests/"
  8242. ]
  8243. },
  8244. "notification-url": "https://packagist.org/downloads/",
  8245. "license": [
  8246. "MIT"
  8247. ],
  8248. "authors": [
  8249. {
  8250. "name": "Kévin Dunglas",
  8251. "email": "dunglas@gmail.com"
  8252. },
  8253. {
  8254. "name": "Symfony Community",
  8255. "homepage": "https://symfony.com/contributors"
  8256. }
  8257. ],
  8258. "description": "Manages links between resources",
  8259. "homepage": "https://symfony.com",
  8260. "keywords": [
  8261. "dns-prefetch",
  8262. "http",
  8263. "http2",
  8264. "link",
  8265. "performance",
  8266. "prefetch",
  8267. "preload",
  8268. "prerender",
  8269. "psr13",
  8270. "push"
  8271. ],
  8272. "support": {
  8273. "source": "https://github.com/symfony/web-link/tree/v7.1.1"
  8274. },
  8275. "funding": [
  8276. {
  8277. "url": "https://symfony.com/sponsor",
  8278. "type": "custom"
  8279. },
  8280. {
  8281. "url": "https://github.com/fabpot",
  8282. "type": "github"
  8283. },
  8284. {
  8285. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8286. "type": "tidelift"
  8287. }
  8288. ],
  8289. "time": "2024-05-31T14:57:53+00:00"
  8290. },
  8291. {
  8292. "name": "symfony/workflow",
  8293. "version": "v7.1.1",
  8294. "source": {
  8295. "type": "git",
  8296. "url": "https://github.com/symfony/workflow.git",
  8297. "reference": "bc9a36fdd6a6fab9f630bd73b428aa06917e17e8"
  8298. },
  8299. "dist": {
  8300. "type": "zip",
  8301. "url": "https://api.github.com/repos/symfony/workflow/zipball/bc9a36fdd6a6fab9f630bd73b428aa06917e17e8",
  8302. "reference": "bc9a36fdd6a6fab9f630bd73b428aa06917e17e8",
  8303. "shasum": ""
  8304. },
  8305. "require": {
  8306. "php": ">=8.2"
  8307. },
  8308. "conflict": {
  8309. "symfony/event-dispatcher": "<6.4"
  8310. },
  8311. "require-dev": {
  8312. "psr/log": "^1|^2|^3",
  8313. "symfony/dependency-injection": "^6.4|^7.0",
  8314. "symfony/error-handler": "^6.4|^7.0",
  8315. "symfony/event-dispatcher": "^6.4|^7.0",
  8316. "symfony/expression-language": "^6.4|^7.0",
  8317. "symfony/http-kernel": "^6.4|^7.0",
  8318. "symfony/security-core": "^6.4|^7.0",
  8319. "symfony/stopwatch": "^6.4|^7.0",
  8320. "symfony/validator": "^6.4|^7.0"
  8321. },
  8322. "type": "library",
  8323. "autoload": {
  8324. "psr-4": {
  8325. "Symfony\\Component\\Workflow\\": ""
  8326. },
  8327. "exclude-from-classmap": [
  8328. "/Tests/"
  8329. ]
  8330. },
  8331. "notification-url": "https://packagist.org/downloads/",
  8332. "license": [
  8333. "MIT"
  8334. ],
  8335. "authors": [
  8336. {
  8337. "name": "Fabien Potencier",
  8338. "email": "fabien@symfony.com"
  8339. },
  8340. {
  8341. "name": "Grégoire Pineau",
  8342. "email": "lyrixx@lyrixx.info"
  8343. },
  8344. {
  8345. "name": "Symfony Community",
  8346. "homepage": "https://symfony.com/contributors"
  8347. }
  8348. ],
  8349. "description": "Provides tools for managing a workflow or finite state machine",
  8350. "homepage": "https://symfony.com",
  8351. "keywords": [
  8352. "petrinet",
  8353. "place",
  8354. "state",
  8355. "statemachine",
  8356. "transition",
  8357. "workflow"
  8358. ],
  8359. "support": {
  8360. "source": "https://github.com/symfony/workflow/tree/v7.1.1"
  8361. },
  8362. "funding": [
  8363. {
  8364. "url": "https://symfony.com/sponsor",
  8365. "type": "custom"
  8366. },
  8367. {
  8368. "url": "https://github.com/fabpot",
  8369. "type": "github"
  8370. },
  8371. {
  8372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8373. "type": "tidelift"
  8374. }
  8375. ],
  8376. "time": "2024-05-31T14:57:53+00:00"
  8377. },
  8378. {
  8379. "name": "symfony/yaml",
  8380. "version": "v7.1.5",
  8381. "source": {
  8382. "type": "git",
  8383. "url": "https://github.com/symfony/yaml.git",
  8384. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4"
  8385. },
  8386. "dist": {
  8387. "type": "zip",
  8388. "url": "https://api.github.com/repos/symfony/yaml/zipball/4e561c316e135e053bd758bf3b3eb291d9919de4",
  8389. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4",
  8390. "shasum": ""
  8391. },
  8392. "require": {
  8393. "php": ">=8.2",
  8394. "symfony/polyfill-ctype": "^1.8"
  8395. },
  8396. "conflict": {
  8397. "symfony/console": "<6.4"
  8398. },
  8399. "require-dev": {
  8400. "symfony/console": "^6.4|^7.0"
  8401. },
  8402. "bin": [
  8403. "Resources/bin/yaml-lint"
  8404. ],
  8405. "type": "library",
  8406. "autoload": {
  8407. "psr-4": {
  8408. "Symfony\\Component\\Yaml\\": ""
  8409. },
  8410. "exclude-from-classmap": [
  8411. "/Tests/"
  8412. ]
  8413. },
  8414. "notification-url": "https://packagist.org/downloads/",
  8415. "license": [
  8416. "MIT"
  8417. ],
  8418. "authors": [
  8419. {
  8420. "name": "Fabien Potencier",
  8421. "email": "fabien@symfony.com"
  8422. },
  8423. {
  8424. "name": "Symfony Community",
  8425. "homepage": "https://symfony.com/contributors"
  8426. }
  8427. ],
  8428. "description": "Loads and dumps YAML files",
  8429. "homepage": "https://symfony.com",
  8430. "support": {
  8431. "source": "https://github.com/symfony/yaml/tree/v7.1.5"
  8432. },
  8433. "funding": [
  8434. {
  8435. "url": "https://symfony.com/sponsor",
  8436. "type": "custom"
  8437. },
  8438. {
  8439. "url": "https://github.com/fabpot",
  8440. "type": "github"
  8441. },
  8442. {
  8443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8444. "type": "tidelift"
  8445. }
  8446. ],
  8447. "time": "2024-09-17T12:49:58+00:00"
  8448. },
  8449. {
  8450. "name": "twig/extra-bundle",
  8451. "version": "v3.13.0",
  8452. "source": {
  8453. "type": "git",
  8454. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8455. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5"
  8456. },
  8457. "dist": {
  8458. "type": "zip",
  8459. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  8460. "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
  8461. "shasum": ""
  8462. },
  8463. "require": {
  8464. "php": ">=8.0.2",
  8465. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  8466. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  8467. "twig/twig": "^3.0|^4.0"
  8468. },
  8469. "require-dev": {
  8470. "league/commonmark": "^1.0|^2.0",
  8471. "symfony/phpunit-bridge": "^6.4|^7.0",
  8472. "twig/cache-extra": "^3.0",
  8473. "twig/cssinliner-extra": "^3.0",
  8474. "twig/html-extra": "^3.0",
  8475. "twig/inky-extra": "^3.0",
  8476. "twig/intl-extra": "^3.0",
  8477. "twig/markdown-extra": "^3.0",
  8478. "twig/string-extra": "^3.0"
  8479. },
  8480. "type": "symfony-bundle",
  8481. "autoload": {
  8482. "psr-4": {
  8483. "Twig\\Extra\\TwigExtraBundle\\": ""
  8484. },
  8485. "exclude-from-classmap": [
  8486. "/Tests/"
  8487. ]
  8488. },
  8489. "notification-url": "https://packagist.org/downloads/",
  8490. "license": [
  8491. "MIT"
  8492. ],
  8493. "authors": [
  8494. {
  8495. "name": "Fabien Potencier",
  8496. "email": "fabien@symfony.com",
  8497. "homepage": "http://fabien.potencier.org",
  8498. "role": "Lead Developer"
  8499. }
  8500. ],
  8501. "description": "A Symfony bundle for extra Twig extensions",
  8502. "homepage": "https://twig.symfony.com",
  8503. "keywords": [
  8504. "bundle",
  8505. "extra",
  8506. "twig"
  8507. ],
  8508. "support": {
  8509. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.13.0"
  8510. },
  8511. "funding": [
  8512. {
  8513. "url": "https://github.com/fabpot",
  8514. "type": "github"
  8515. },
  8516. {
  8517. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8518. "type": "tidelift"
  8519. }
  8520. ],
  8521. "time": "2024-09-01T20:39:12+00:00"
  8522. },
  8523. {
  8524. "name": "twig/intl-extra",
  8525. "version": "v3.13.0",
  8526. "source": {
  8527. "type": "git",
  8528. "url": "https://github.com/twigphp/intl-extra.git",
  8529. "reference": "1b8d78c5db08bdc61015fd55009d2e84b3aa7e38"
  8530. },
  8531. "dist": {
  8532. "type": "zip",
  8533. "url": "https://api.github.com/repos/twigphp/intl-extra/zipball/1b8d78c5db08bdc61015fd55009d2e84b3aa7e38",
  8534. "reference": "1b8d78c5db08bdc61015fd55009d2e84b3aa7e38",
  8535. "shasum": ""
  8536. },
  8537. "require": {
  8538. "php": ">=8.0.2",
  8539. "symfony/intl": "^5.4|^6.4|^7.0",
  8540. "twig/twig": "^3.13|^4.0"
  8541. },
  8542. "require-dev": {
  8543. "symfony/phpunit-bridge": "^6.4|^7.0"
  8544. },
  8545. "type": "library",
  8546. "autoload": {
  8547. "psr-4": {
  8548. "Twig\\Extra\\Intl\\": ""
  8549. },
  8550. "exclude-from-classmap": [
  8551. "/Tests/"
  8552. ]
  8553. },
  8554. "notification-url": "https://packagist.org/downloads/",
  8555. "license": [
  8556. "MIT"
  8557. ],
  8558. "authors": [
  8559. {
  8560. "name": "Fabien Potencier",
  8561. "email": "fabien@symfony.com",
  8562. "homepage": "http://fabien.potencier.org",
  8563. "role": "Lead Developer"
  8564. }
  8565. ],
  8566. "description": "A Twig extension for Intl",
  8567. "homepage": "https://twig.symfony.com",
  8568. "keywords": [
  8569. "intl",
  8570. "twig"
  8571. ],
  8572. "support": {
  8573. "source": "https://github.com/twigphp/intl-extra/tree/v3.13.0"
  8574. },
  8575. "funding": [
  8576. {
  8577. "url": "https://github.com/fabpot",
  8578. "type": "github"
  8579. },
  8580. {
  8581. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8582. "type": "tidelift"
  8583. }
  8584. ],
  8585. "time": "2024-09-03T13:08:40+00:00"
  8586. },
  8587. {
  8588. "name": "twig/markdown-extra",
  8589. "version": "v3.13.0",
  8590. "source": {
  8591. "type": "git",
  8592. "url": "https://github.com/twigphp/markdown-extra.git",
  8593. "reference": "25f23c02936f8c7157a8413154c06a462c9c20d3"
  8594. },
  8595. "dist": {
  8596. "type": "zip",
  8597. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/25f23c02936f8c7157a8413154c06a462c9c20d3",
  8598. "reference": "25f23c02936f8c7157a8413154c06a462c9c20d3",
  8599. "shasum": ""
  8600. },
  8601. "require": {
  8602. "php": ">=8.0.2",
  8603. "symfony/deprecation-contracts": "^2.5|^3",
  8604. "twig/twig": "^3.13|^4.0"
  8605. },
  8606. "require-dev": {
  8607. "erusev/parsedown": "^1.7",
  8608. "league/commonmark": "^1.0|^2.0",
  8609. "league/html-to-markdown": "^4.8|^5.0",
  8610. "michelf/php-markdown": "^1.8|^2.0",
  8611. "symfony/phpunit-bridge": "^6.4|^7.0"
  8612. },
  8613. "type": "library",
  8614. "autoload": {
  8615. "files": [
  8616. "Resources/functions.php"
  8617. ],
  8618. "psr-4": {
  8619. "Twig\\Extra\\Markdown\\": ""
  8620. },
  8621. "exclude-from-classmap": [
  8622. "/Tests/"
  8623. ]
  8624. },
  8625. "notification-url": "https://packagist.org/downloads/",
  8626. "license": [
  8627. "MIT"
  8628. ],
  8629. "authors": [
  8630. {
  8631. "name": "Fabien Potencier",
  8632. "email": "fabien@symfony.com",
  8633. "homepage": "http://fabien.potencier.org",
  8634. "role": "Lead Developer"
  8635. }
  8636. ],
  8637. "description": "A Twig extension for Markdown",
  8638. "homepage": "https://twig.symfony.com",
  8639. "keywords": [
  8640. "html",
  8641. "markdown",
  8642. "twig"
  8643. ],
  8644. "support": {
  8645. "source": "https://github.com/twigphp/markdown-extra/tree/v3.13.0"
  8646. },
  8647. "funding": [
  8648. {
  8649. "url": "https://github.com/fabpot",
  8650. "type": "github"
  8651. },
  8652. {
  8653. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8654. "type": "tidelift"
  8655. }
  8656. ],
  8657. "time": "2024-09-03T20:17:35+00:00"
  8658. },
  8659. {
  8660. "name": "twig/twig",
  8661. "version": "v3.14.0",
  8662. "source": {
  8663. "type": "git",
  8664. "url": "https://github.com/twigphp/Twig.git",
  8665. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72"
  8666. },
  8667. "dist": {
  8668. "type": "zip",
  8669. "url": "https://api.github.com/repos/twigphp/Twig/zipball/126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  8670. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  8671. "shasum": ""
  8672. },
  8673. "require": {
  8674. "php": ">=8.0.2",
  8675. "symfony/deprecation-contracts": "^2.5|^3",
  8676. "symfony/polyfill-ctype": "^1.8",
  8677. "symfony/polyfill-mbstring": "^1.3",
  8678. "symfony/polyfill-php81": "^1.29"
  8679. },
  8680. "require-dev": {
  8681. "psr/container": "^1.0|^2.0",
  8682. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8683. },
  8684. "type": "library",
  8685. "autoload": {
  8686. "files": [
  8687. "src/Resources/core.php",
  8688. "src/Resources/debug.php",
  8689. "src/Resources/escaper.php",
  8690. "src/Resources/string_loader.php"
  8691. ],
  8692. "psr-4": {
  8693. "Twig\\": "src/"
  8694. }
  8695. },
  8696. "notification-url": "https://packagist.org/downloads/",
  8697. "license": [
  8698. "BSD-3-Clause"
  8699. ],
  8700. "authors": [
  8701. {
  8702. "name": "Fabien Potencier",
  8703. "email": "fabien@symfony.com",
  8704. "homepage": "http://fabien.potencier.org",
  8705. "role": "Lead Developer"
  8706. },
  8707. {
  8708. "name": "Twig Team",
  8709. "role": "Contributors"
  8710. },
  8711. {
  8712. "name": "Armin Ronacher",
  8713. "email": "armin.ronacher@active-4.com",
  8714. "role": "Project Founder"
  8715. }
  8716. ],
  8717. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8718. "homepage": "https://twig.symfony.com",
  8719. "keywords": [
  8720. "templating"
  8721. ],
  8722. "support": {
  8723. "issues": "https://github.com/twigphp/Twig/issues",
  8724. "source": "https://github.com/twigphp/Twig/tree/v3.14.0"
  8725. },
  8726. "funding": [
  8727. {
  8728. "url": "https://github.com/fabpot",
  8729. "type": "github"
  8730. },
  8731. {
  8732. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8733. "type": "tidelift"
  8734. }
  8735. ],
  8736. "time": "2024-09-09T17:55:12+00:00"
  8737. },
  8738. {
  8739. "name": "webmozart/assert",
  8740. "version": "1.11.0",
  8741. "source": {
  8742. "type": "git",
  8743. "url": "https://github.com/webmozarts/assert.git",
  8744. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8745. },
  8746. "dist": {
  8747. "type": "zip",
  8748. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8749. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8750. "shasum": ""
  8751. },
  8752. "require": {
  8753. "ext-ctype": "*",
  8754. "php": "^7.2 || ^8.0"
  8755. },
  8756. "conflict": {
  8757. "phpstan/phpstan": "<0.12.20",
  8758. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8759. },
  8760. "require-dev": {
  8761. "phpunit/phpunit": "^8.5.13"
  8762. },
  8763. "type": "library",
  8764. "extra": {
  8765. "branch-alias": {
  8766. "dev-master": "1.10-dev"
  8767. }
  8768. },
  8769. "autoload": {
  8770. "psr-4": {
  8771. "Webmozart\\Assert\\": "src/"
  8772. }
  8773. },
  8774. "notification-url": "https://packagist.org/downloads/",
  8775. "license": [
  8776. "MIT"
  8777. ],
  8778. "authors": [
  8779. {
  8780. "name": "Bernhard Schussek",
  8781. "email": "bschussek@gmail.com"
  8782. }
  8783. ],
  8784. "description": "Assertions to validate method input/output with nice error messages.",
  8785. "keywords": [
  8786. "assert",
  8787. "check",
  8788. "validate"
  8789. ],
  8790. "support": {
  8791. "issues": "https://github.com/webmozarts/assert/issues",
  8792. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8793. },
  8794. "time": "2022-06-03T18:03:27+00:00"
  8795. }
  8796. ],
  8797. "packages-dev": [
  8798. {
  8799. "name": "fakerphp/faker",
  8800. "version": "v1.23.1",
  8801. "source": {
  8802. "type": "git",
  8803. "url": "https://github.com/FakerPHP/Faker.git",
  8804. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8805. },
  8806. "dist": {
  8807. "type": "zip",
  8808. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8809. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8810. "shasum": ""
  8811. },
  8812. "require": {
  8813. "php": "^7.4 || ^8.0",
  8814. "psr/container": "^1.0 || ^2.0",
  8815. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8816. },
  8817. "conflict": {
  8818. "fzaninotto/faker": "*"
  8819. },
  8820. "require-dev": {
  8821. "bamarni/composer-bin-plugin": "^1.4.1",
  8822. "doctrine/persistence": "^1.3 || ^2.0",
  8823. "ext-intl": "*",
  8824. "phpunit/phpunit": "^9.5.26",
  8825. "symfony/phpunit-bridge": "^5.4.16"
  8826. },
  8827. "suggest": {
  8828. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8829. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8830. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8831. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8832. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8833. },
  8834. "type": "library",
  8835. "autoload": {
  8836. "psr-4": {
  8837. "Faker\\": "src/Faker/"
  8838. }
  8839. },
  8840. "notification-url": "https://packagist.org/downloads/",
  8841. "license": [
  8842. "MIT"
  8843. ],
  8844. "authors": [
  8845. {
  8846. "name": "François Zaninotto"
  8847. }
  8848. ],
  8849. "description": "Faker is a PHP library that generates fake data for you.",
  8850. "keywords": [
  8851. "data",
  8852. "faker",
  8853. "fixtures"
  8854. ],
  8855. "support": {
  8856. "issues": "https://github.com/FakerPHP/Faker/issues",
  8857. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8858. },
  8859. "time": "2024-01-02T13:46:09+00:00"
  8860. },
  8861. {
  8862. "name": "masterminds/html5",
  8863. "version": "2.9.0",
  8864. "source": {
  8865. "type": "git",
  8866. "url": "https://github.com/Masterminds/html5-php.git",
  8867. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  8868. },
  8869. "dist": {
  8870. "type": "zip",
  8871. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  8872. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  8873. "shasum": ""
  8874. },
  8875. "require": {
  8876. "ext-dom": "*",
  8877. "php": ">=5.3.0"
  8878. },
  8879. "require-dev": {
  8880. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  8881. },
  8882. "type": "library",
  8883. "extra": {
  8884. "branch-alias": {
  8885. "dev-master": "2.7-dev"
  8886. }
  8887. },
  8888. "autoload": {
  8889. "psr-4": {
  8890. "Masterminds\\": "src"
  8891. }
  8892. },
  8893. "notification-url": "https://packagist.org/downloads/",
  8894. "license": [
  8895. "MIT"
  8896. ],
  8897. "authors": [
  8898. {
  8899. "name": "Matt Butcher",
  8900. "email": "technosophos@gmail.com"
  8901. },
  8902. {
  8903. "name": "Matt Farina",
  8904. "email": "matt@mattfarina.com"
  8905. },
  8906. {
  8907. "name": "Asmir Mustafic",
  8908. "email": "goetas@gmail.com"
  8909. }
  8910. ],
  8911. "description": "An HTML5 parser and serializer.",
  8912. "homepage": "http://masterminds.github.io/html5-php",
  8913. "keywords": [
  8914. "HTML5",
  8915. "dom",
  8916. "html",
  8917. "parser",
  8918. "querypath",
  8919. "serializer",
  8920. "xml"
  8921. ],
  8922. "support": {
  8923. "issues": "https://github.com/Masterminds/html5-php/issues",
  8924. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  8925. },
  8926. "time": "2024-03-31T07:05:07+00:00"
  8927. },
  8928. {
  8929. "name": "myclabs/deep-copy",
  8930. "version": "1.12.0",
  8931. "source": {
  8932. "type": "git",
  8933. "url": "https://github.com/myclabs/DeepCopy.git",
  8934. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  8935. },
  8936. "dist": {
  8937. "type": "zip",
  8938. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8939. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8940. "shasum": ""
  8941. },
  8942. "require": {
  8943. "php": "^7.1 || ^8.0"
  8944. },
  8945. "conflict": {
  8946. "doctrine/collections": "<1.6.8",
  8947. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8948. },
  8949. "require-dev": {
  8950. "doctrine/collections": "^1.6.8",
  8951. "doctrine/common": "^2.13.3 || ^3.2.2",
  8952. "phpspec/prophecy": "^1.10",
  8953. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8954. },
  8955. "type": "library",
  8956. "autoload": {
  8957. "files": [
  8958. "src/DeepCopy/deep_copy.php"
  8959. ],
  8960. "psr-4": {
  8961. "DeepCopy\\": "src/DeepCopy/"
  8962. }
  8963. },
  8964. "notification-url": "https://packagist.org/downloads/",
  8965. "license": [
  8966. "MIT"
  8967. ],
  8968. "description": "Create deep copies (clones) of your objects",
  8969. "keywords": [
  8970. "clone",
  8971. "copy",
  8972. "duplicate",
  8973. "object",
  8974. "object graph"
  8975. ],
  8976. "support": {
  8977. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8978. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  8979. },
  8980. "funding": [
  8981. {
  8982. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8983. "type": "tidelift"
  8984. }
  8985. ],
  8986. "time": "2024-06-12T14:39:25+00:00"
  8987. },
  8988. {
  8989. "name": "nikic/php-parser",
  8990. "version": "v5.3.1",
  8991. "source": {
  8992. "type": "git",
  8993. "url": "https://github.com/nikic/PHP-Parser.git",
  8994. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  8995. },
  8996. "dist": {
  8997. "type": "zip",
  8998. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  8999. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  9000. "shasum": ""
  9001. },
  9002. "require": {
  9003. "ext-ctype": "*",
  9004. "ext-json": "*",
  9005. "ext-tokenizer": "*",
  9006. "php": ">=7.4"
  9007. },
  9008. "require-dev": {
  9009. "ircmaxell/php-yacc": "^0.0.7",
  9010. "phpunit/phpunit": "^9.0"
  9011. },
  9012. "bin": [
  9013. "bin/php-parse"
  9014. ],
  9015. "type": "library",
  9016. "extra": {
  9017. "branch-alias": {
  9018. "dev-master": "5.0-dev"
  9019. }
  9020. },
  9021. "autoload": {
  9022. "psr-4": {
  9023. "PhpParser\\": "lib/PhpParser"
  9024. }
  9025. },
  9026. "notification-url": "https://packagist.org/downloads/",
  9027. "license": [
  9028. "BSD-3-Clause"
  9029. ],
  9030. "authors": [
  9031. {
  9032. "name": "Nikita Popov"
  9033. }
  9034. ],
  9035. "description": "A PHP parser written in PHP",
  9036. "keywords": [
  9037. "parser",
  9038. "php"
  9039. ],
  9040. "support": {
  9041. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9042. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  9043. },
  9044. "time": "2024-10-08T18:51:32+00:00"
  9045. },
  9046. {
  9047. "name": "phar-io/manifest",
  9048. "version": "2.0.4",
  9049. "source": {
  9050. "type": "git",
  9051. "url": "https://github.com/phar-io/manifest.git",
  9052. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9053. },
  9054. "dist": {
  9055. "type": "zip",
  9056. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9057. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9058. "shasum": ""
  9059. },
  9060. "require": {
  9061. "ext-dom": "*",
  9062. "ext-libxml": "*",
  9063. "ext-phar": "*",
  9064. "ext-xmlwriter": "*",
  9065. "phar-io/version": "^3.0.1",
  9066. "php": "^7.2 || ^8.0"
  9067. },
  9068. "type": "library",
  9069. "extra": {
  9070. "branch-alias": {
  9071. "dev-master": "2.0.x-dev"
  9072. }
  9073. },
  9074. "autoload": {
  9075. "classmap": [
  9076. "src/"
  9077. ]
  9078. },
  9079. "notification-url": "https://packagist.org/downloads/",
  9080. "license": [
  9081. "BSD-3-Clause"
  9082. ],
  9083. "authors": [
  9084. {
  9085. "name": "Arne Blankerts",
  9086. "email": "arne@blankerts.de",
  9087. "role": "Developer"
  9088. },
  9089. {
  9090. "name": "Sebastian Heuer",
  9091. "email": "sebastian@phpeople.de",
  9092. "role": "Developer"
  9093. },
  9094. {
  9095. "name": "Sebastian Bergmann",
  9096. "email": "sebastian@phpunit.de",
  9097. "role": "Developer"
  9098. }
  9099. ],
  9100. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9101. "support": {
  9102. "issues": "https://github.com/phar-io/manifest/issues",
  9103. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9104. },
  9105. "funding": [
  9106. {
  9107. "url": "https://github.com/theseer",
  9108. "type": "github"
  9109. }
  9110. ],
  9111. "time": "2024-03-03T12:33:53+00:00"
  9112. },
  9113. {
  9114. "name": "phar-io/version",
  9115. "version": "3.2.1",
  9116. "source": {
  9117. "type": "git",
  9118. "url": "https://github.com/phar-io/version.git",
  9119. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9120. },
  9121. "dist": {
  9122. "type": "zip",
  9123. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9124. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9125. "shasum": ""
  9126. },
  9127. "require": {
  9128. "php": "^7.2 || ^8.0"
  9129. },
  9130. "type": "library",
  9131. "autoload": {
  9132. "classmap": [
  9133. "src/"
  9134. ]
  9135. },
  9136. "notification-url": "https://packagist.org/downloads/",
  9137. "license": [
  9138. "BSD-3-Clause"
  9139. ],
  9140. "authors": [
  9141. {
  9142. "name": "Arne Blankerts",
  9143. "email": "arne@blankerts.de",
  9144. "role": "Developer"
  9145. },
  9146. {
  9147. "name": "Sebastian Heuer",
  9148. "email": "sebastian@phpeople.de",
  9149. "role": "Developer"
  9150. },
  9151. {
  9152. "name": "Sebastian Bergmann",
  9153. "email": "sebastian@phpunit.de",
  9154. "role": "Developer"
  9155. }
  9156. ],
  9157. "description": "Library for handling version information and constraints",
  9158. "support": {
  9159. "issues": "https://github.com/phar-io/version/issues",
  9160. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9161. },
  9162. "time": "2022-02-21T01:04:05+00:00"
  9163. },
  9164. {
  9165. "name": "phpunit/php-code-coverage",
  9166. "version": "9.2.32",
  9167. "source": {
  9168. "type": "git",
  9169. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9170. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  9171. },
  9172. "dist": {
  9173. "type": "zip",
  9174. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9175. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9176. "shasum": ""
  9177. },
  9178. "require": {
  9179. "ext-dom": "*",
  9180. "ext-libxml": "*",
  9181. "ext-xmlwriter": "*",
  9182. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9183. "php": ">=7.3",
  9184. "phpunit/php-file-iterator": "^3.0.6",
  9185. "phpunit/php-text-template": "^2.0.4",
  9186. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  9187. "sebastian/complexity": "^2.0.3",
  9188. "sebastian/environment": "^5.1.5",
  9189. "sebastian/lines-of-code": "^1.0.4",
  9190. "sebastian/version": "^3.0.2",
  9191. "theseer/tokenizer": "^1.2.3"
  9192. },
  9193. "require-dev": {
  9194. "phpunit/phpunit": "^9.6"
  9195. },
  9196. "suggest": {
  9197. "ext-pcov": "PHP extension that provides line coverage",
  9198. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9199. },
  9200. "type": "library",
  9201. "extra": {
  9202. "branch-alias": {
  9203. "dev-main": "9.2.x-dev"
  9204. }
  9205. },
  9206. "autoload": {
  9207. "classmap": [
  9208. "src/"
  9209. ]
  9210. },
  9211. "notification-url": "https://packagist.org/downloads/",
  9212. "license": [
  9213. "BSD-3-Clause"
  9214. ],
  9215. "authors": [
  9216. {
  9217. "name": "Sebastian Bergmann",
  9218. "email": "sebastian@phpunit.de",
  9219. "role": "lead"
  9220. }
  9221. ],
  9222. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9223. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9224. "keywords": [
  9225. "coverage",
  9226. "testing",
  9227. "xunit"
  9228. ],
  9229. "support": {
  9230. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9231. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9232. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9233. },
  9234. "funding": [
  9235. {
  9236. "url": "https://github.com/sebastianbergmann",
  9237. "type": "github"
  9238. }
  9239. ],
  9240. "time": "2024-08-22T04:23:01+00:00"
  9241. },
  9242. {
  9243. "name": "phpunit/php-file-iterator",
  9244. "version": "3.0.6",
  9245. "source": {
  9246. "type": "git",
  9247. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9248. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9249. },
  9250. "dist": {
  9251. "type": "zip",
  9252. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9253. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9254. "shasum": ""
  9255. },
  9256. "require": {
  9257. "php": ">=7.3"
  9258. },
  9259. "require-dev": {
  9260. "phpunit/phpunit": "^9.3"
  9261. },
  9262. "type": "library",
  9263. "extra": {
  9264. "branch-alias": {
  9265. "dev-master": "3.0-dev"
  9266. }
  9267. },
  9268. "autoload": {
  9269. "classmap": [
  9270. "src/"
  9271. ]
  9272. },
  9273. "notification-url": "https://packagist.org/downloads/",
  9274. "license": [
  9275. "BSD-3-Clause"
  9276. ],
  9277. "authors": [
  9278. {
  9279. "name": "Sebastian Bergmann",
  9280. "email": "sebastian@phpunit.de",
  9281. "role": "lead"
  9282. }
  9283. ],
  9284. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9285. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9286. "keywords": [
  9287. "filesystem",
  9288. "iterator"
  9289. ],
  9290. "support": {
  9291. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9292. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9293. },
  9294. "funding": [
  9295. {
  9296. "url": "https://github.com/sebastianbergmann",
  9297. "type": "github"
  9298. }
  9299. ],
  9300. "time": "2021-12-02T12:48:52+00:00"
  9301. },
  9302. {
  9303. "name": "phpunit/php-invoker",
  9304. "version": "3.1.1",
  9305. "source": {
  9306. "type": "git",
  9307. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9308. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9309. },
  9310. "dist": {
  9311. "type": "zip",
  9312. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9313. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9314. "shasum": ""
  9315. },
  9316. "require": {
  9317. "php": ">=7.3"
  9318. },
  9319. "require-dev": {
  9320. "ext-pcntl": "*",
  9321. "phpunit/phpunit": "^9.3"
  9322. },
  9323. "suggest": {
  9324. "ext-pcntl": "*"
  9325. },
  9326. "type": "library",
  9327. "extra": {
  9328. "branch-alias": {
  9329. "dev-master": "3.1-dev"
  9330. }
  9331. },
  9332. "autoload": {
  9333. "classmap": [
  9334. "src/"
  9335. ]
  9336. },
  9337. "notification-url": "https://packagist.org/downloads/",
  9338. "license": [
  9339. "BSD-3-Clause"
  9340. ],
  9341. "authors": [
  9342. {
  9343. "name": "Sebastian Bergmann",
  9344. "email": "sebastian@phpunit.de",
  9345. "role": "lead"
  9346. }
  9347. ],
  9348. "description": "Invoke callables with a timeout",
  9349. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9350. "keywords": [
  9351. "process"
  9352. ],
  9353. "support": {
  9354. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9355. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9356. },
  9357. "funding": [
  9358. {
  9359. "url": "https://github.com/sebastianbergmann",
  9360. "type": "github"
  9361. }
  9362. ],
  9363. "time": "2020-09-28T05:58:55+00:00"
  9364. },
  9365. {
  9366. "name": "phpunit/php-text-template",
  9367. "version": "2.0.4",
  9368. "source": {
  9369. "type": "git",
  9370. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9371. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9372. },
  9373. "dist": {
  9374. "type": "zip",
  9375. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9376. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9377. "shasum": ""
  9378. },
  9379. "require": {
  9380. "php": ">=7.3"
  9381. },
  9382. "require-dev": {
  9383. "phpunit/phpunit": "^9.3"
  9384. },
  9385. "type": "library",
  9386. "extra": {
  9387. "branch-alias": {
  9388. "dev-master": "2.0-dev"
  9389. }
  9390. },
  9391. "autoload": {
  9392. "classmap": [
  9393. "src/"
  9394. ]
  9395. },
  9396. "notification-url": "https://packagist.org/downloads/",
  9397. "license": [
  9398. "BSD-3-Clause"
  9399. ],
  9400. "authors": [
  9401. {
  9402. "name": "Sebastian Bergmann",
  9403. "email": "sebastian@phpunit.de",
  9404. "role": "lead"
  9405. }
  9406. ],
  9407. "description": "Simple template engine.",
  9408. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9409. "keywords": [
  9410. "template"
  9411. ],
  9412. "support": {
  9413. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9414. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9415. },
  9416. "funding": [
  9417. {
  9418. "url": "https://github.com/sebastianbergmann",
  9419. "type": "github"
  9420. }
  9421. ],
  9422. "time": "2020-10-26T05:33:50+00:00"
  9423. },
  9424. {
  9425. "name": "phpunit/php-timer",
  9426. "version": "5.0.3",
  9427. "source": {
  9428. "type": "git",
  9429. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9430. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9431. },
  9432. "dist": {
  9433. "type": "zip",
  9434. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9435. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9436. "shasum": ""
  9437. },
  9438. "require": {
  9439. "php": ">=7.3"
  9440. },
  9441. "require-dev": {
  9442. "phpunit/phpunit": "^9.3"
  9443. },
  9444. "type": "library",
  9445. "extra": {
  9446. "branch-alias": {
  9447. "dev-master": "5.0-dev"
  9448. }
  9449. },
  9450. "autoload": {
  9451. "classmap": [
  9452. "src/"
  9453. ]
  9454. },
  9455. "notification-url": "https://packagist.org/downloads/",
  9456. "license": [
  9457. "BSD-3-Clause"
  9458. ],
  9459. "authors": [
  9460. {
  9461. "name": "Sebastian Bergmann",
  9462. "email": "sebastian@phpunit.de",
  9463. "role": "lead"
  9464. }
  9465. ],
  9466. "description": "Utility class for timing",
  9467. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9468. "keywords": [
  9469. "timer"
  9470. ],
  9471. "support": {
  9472. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9473. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9474. },
  9475. "funding": [
  9476. {
  9477. "url": "https://github.com/sebastianbergmann",
  9478. "type": "github"
  9479. }
  9480. ],
  9481. "time": "2020-10-26T13:16:10+00:00"
  9482. },
  9483. {
  9484. "name": "phpunit/phpunit",
  9485. "version": "9.6.21",
  9486. "source": {
  9487. "type": "git",
  9488. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9489. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa"
  9490. },
  9491. "dist": {
  9492. "type": "zip",
  9493. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  9494. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  9495. "shasum": ""
  9496. },
  9497. "require": {
  9498. "doctrine/instantiator": "^1.5.0 || ^2",
  9499. "ext-dom": "*",
  9500. "ext-json": "*",
  9501. "ext-libxml": "*",
  9502. "ext-mbstring": "*",
  9503. "ext-xml": "*",
  9504. "ext-xmlwriter": "*",
  9505. "myclabs/deep-copy": "^1.12.0",
  9506. "phar-io/manifest": "^2.0.4",
  9507. "phar-io/version": "^3.2.1",
  9508. "php": ">=7.3",
  9509. "phpunit/php-code-coverage": "^9.2.32",
  9510. "phpunit/php-file-iterator": "^3.0.6",
  9511. "phpunit/php-invoker": "^3.1.1",
  9512. "phpunit/php-text-template": "^2.0.4",
  9513. "phpunit/php-timer": "^5.0.3",
  9514. "sebastian/cli-parser": "^1.0.2",
  9515. "sebastian/code-unit": "^1.0.8",
  9516. "sebastian/comparator": "^4.0.8",
  9517. "sebastian/diff": "^4.0.6",
  9518. "sebastian/environment": "^5.1.5",
  9519. "sebastian/exporter": "^4.0.6",
  9520. "sebastian/global-state": "^5.0.7",
  9521. "sebastian/object-enumerator": "^4.0.4",
  9522. "sebastian/resource-operations": "^3.0.4",
  9523. "sebastian/type": "^3.2.1",
  9524. "sebastian/version": "^3.0.2"
  9525. },
  9526. "suggest": {
  9527. "ext-soap": "To be able to generate mocks based on WSDL files",
  9528. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9529. },
  9530. "bin": [
  9531. "phpunit"
  9532. ],
  9533. "type": "library",
  9534. "extra": {
  9535. "branch-alias": {
  9536. "dev-master": "9.6-dev"
  9537. }
  9538. },
  9539. "autoload": {
  9540. "files": [
  9541. "src/Framework/Assert/Functions.php"
  9542. ],
  9543. "classmap": [
  9544. "src/"
  9545. ]
  9546. },
  9547. "notification-url": "https://packagist.org/downloads/",
  9548. "license": [
  9549. "BSD-3-Clause"
  9550. ],
  9551. "authors": [
  9552. {
  9553. "name": "Sebastian Bergmann",
  9554. "email": "sebastian@phpunit.de",
  9555. "role": "lead"
  9556. }
  9557. ],
  9558. "description": "The PHP Unit Testing framework.",
  9559. "homepage": "https://phpunit.de/",
  9560. "keywords": [
  9561. "phpunit",
  9562. "testing",
  9563. "xunit"
  9564. ],
  9565. "support": {
  9566. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9567. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9568. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.21"
  9569. },
  9570. "funding": [
  9571. {
  9572. "url": "https://phpunit.de/sponsors.html",
  9573. "type": "custom"
  9574. },
  9575. {
  9576. "url": "https://github.com/sebastianbergmann",
  9577. "type": "github"
  9578. },
  9579. {
  9580. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9581. "type": "tidelift"
  9582. }
  9583. ],
  9584. "time": "2024-09-19T10:50:18+00:00"
  9585. },
  9586. {
  9587. "name": "sebastian/cli-parser",
  9588. "version": "1.0.2",
  9589. "source": {
  9590. "type": "git",
  9591. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9592. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9593. },
  9594. "dist": {
  9595. "type": "zip",
  9596. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9597. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9598. "shasum": ""
  9599. },
  9600. "require": {
  9601. "php": ">=7.3"
  9602. },
  9603. "require-dev": {
  9604. "phpunit/phpunit": "^9.3"
  9605. },
  9606. "type": "library",
  9607. "extra": {
  9608. "branch-alias": {
  9609. "dev-master": "1.0-dev"
  9610. }
  9611. },
  9612. "autoload": {
  9613. "classmap": [
  9614. "src/"
  9615. ]
  9616. },
  9617. "notification-url": "https://packagist.org/downloads/",
  9618. "license": [
  9619. "BSD-3-Clause"
  9620. ],
  9621. "authors": [
  9622. {
  9623. "name": "Sebastian Bergmann",
  9624. "email": "sebastian@phpunit.de",
  9625. "role": "lead"
  9626. }
  9627. ],
  9628. "description": "Library for parsing CLI options",
  9629. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9630. "support": {
  9631. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9632. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9633. },
  9634. "funding": [
  9635. {
  9636. "url": "https://github.com/sebastianbergmann",
  9637. "type": "github"
  9638. }
  9639. ],
  9640. "time": "2024-03-02T06:27:43+00:00"
  9641. },
  9642. {
  9643. "name": "sebastian/code-unit",
  9644. "version": "1.0.8",
  9645. "source": {
  9646. "type": "git",
  9647. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9648. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9649. },
  9650. "dist": {
  9651. "type": "zip",
  9652. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9653. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9654. "shasum": ""
  9655. },
  9656. "require": {
  9657. "php": ">=7.3"
  9658. },
  9659. "require-dev": {
  9660. "phpunit/phpunit": "^9.3"
  9661. },
  9662. "type": "library",
  9663. "extra": {
  9664. "branch-alias": {
  9665. "dev-master": "1.0-dev"
  9666. }
  9667. },
  9668. "autoload": {
  9669. "classmap": [
  9670. "src/"
  9671. ]
  9672. },
  9673. "notification-url": "https://packagist.org/downloads/",
  9674. "license": [
  9675. "BSD-3-Clause"
  9676. ],
  9677. "authors": [
  9678. {
  9679. "name": "Sebastian Bergmann",
  9680. "email": "sebastian@phpunit.de",
  9681. "role": "lead"
  9682. }
  9683. ],
  9684. "description": "Collection of value objects that represent the PHP code units",
  9685. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9686. "support": {
  9687. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9688. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9689. },
  9690. "funding": [
  9691. {
  9692. "url": "https://github.com/sebastianbergmann",
  9693. "type": "github"
  9694. }
  9695. ],
  9696. "time": "2020-10-26T13:08:54+00:00"
  9697. },
  9698. {
  9699. "name": "sebastian/code-unit-reverse-lookup",
  9700. "version": "2.0.3",
  9701. "source": {
  9702. "type": "git",
  9703. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9704. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9705. },
  9706. "dist": {
  9707. "type": "zip",
  9708. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9709. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9710. "shasum": ""
  9711. },
  9712. "require": {
  9713. "php": ">=7.3"
  9714. },
  9715. "require-dev": {
  9716. "phpunit/phpunit": "^9.3"
  9717. },
  9718. "type": "library",
  9719. "extra": {
  9720. "branch-alias": {
  9721. "dev-master": "2.0-dev"
  9722. }
  9723. },
  9724. "autoload": {
  9725. "classmap": [
  9726. "src/"
  9727. ]
  9728. },
  9729. "notification-url": "https://packagist.org/downloads/",
  9730. "license": [
  9731. "BSD-3-Clause"
  9732. ],
  9733. "authors": [
  9734. {
  9735. "name": "Sebastian Bergmann",
  9736. "email": "sebastian@phpunit.de"
  9737. }
  9738. ],
  9739. "description": "Looks up which function or method a line of code belongs to",
  9740. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9741. "support": {
  9742. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9743. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9744. },
  9745. "funding": [
  9746. {
  9747. "url": "https://github.com/sebastianbergmann",
  9748. "type": "github"
  9749. }
  9750. ],
  9751. "time": "2020-09-28T05:30:19+00:00"
  9752. },
  9753. {
  9754. "name": "sebastian/comparator",
  9755. "version": "4.0.8",
  9756. "source": {
  9757. "type": "git",
  9758. "url": "https://github.com/sebastianbergmann/comparator.git",
  9759. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9760. },
  9761. "dist": {
  9762. "type": "zip",
  9763. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9764. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9765. "shasum": ""
  9766. },
  9767. "require": {
  9768. "php": ">=7.3",
  9769. "sebastian/diff": "^4.0",
  9770. "sebastian/exporter": "^4.0"
  9771. },
  9772. "require-dev": {
  9773. "phpunit/phpunit": "^9.3"
  9774. },
  9775. "type": "library",
  9776. "extra": {
  9777. "branch-alias": {
  9778. "dev-master": "4.0-dev"
  9779. }
  9780. },
  9781. "autoload": {
  9782. "classmap": [
  9783. "src/"
  9784. ]
  9785. },
  9786. "notification-url": "https://packagist.org/downloads/",
  9787. "license": [
  9788. "BSD-3-Clause"
  9789. ],
  9790. "authors": [
  9791. {
  9792. "name": "Sebastian Bergmann",
  9793. "email": "sebastian@phpunit.de"
  9794. },
  9795. {
  9796. "name": "Jeff Welch",
  9797. "email": "whatthejeff@gmail.com"
  9798. },
  9799. {
  9800. "name": "Volker Dusch",
  9801. "email": "github@wallbash.com"
  9802. },
  9803. {
  9804. "name": "Bernhard Schussek",
  9805. "email": "bschussek@2bepublished.at"
  9806. }
  9807. ],
  9808. "description": "Provides the functionality to compare PHP values for equality",
  9809. "homepage": "https://github.com/sebastianbergmann/comparator",
  9810. "keywords": [
  9811. "comparator",
  9812. "compare",
  9813. "equality"
  9814. ],
  9815. "support": {
  9816. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9817. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9818. },
  9819. "funding": [
  9820. {
  9821. "url": "https://github.com/sebastianbergmann",
  9822. "type": "github"
  9823. }
  9824. ],
  9825. "time": "2022-09-14T12:41:17+00:00"
  9826. },
  9827. {
  9828. "name": "sebastian/complexity",
  9829. "version": "2.0.3",
  9830. "source": {
  9831. "type": "git",
  9832. "url": "https://github.com/sebastianbergmann/complexity.git",
  9833. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9834. },
  9835. "dist": {
  9836. "type": "zip",
  9837. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9838. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9839. "shasum": ""
  9840. },
  9841. "require": {
  9842. "nikic/php-parser": "^4.18 || ^5.0",
  9843. "php": ">=7.3"
  9844. },
  9845. "require-dev": {
  9846. "phpunit/phpunit": "^9.3"
  9847. },
  9848. "type": "library",
  9849. "extra": {
  9850. "branch-alias": {
  9851. "dev-master": "2.0-dev"
  9852. }
  9853. },
  9854. "autoload": {
  9855. "classmap": [
  9856. "src/"
  9857. ]
  9858. },
  9859. "notification-url": "https://packagist.org/downloads/",
  9860. "license": [
  9861. "BSD-3-Clause"
  9862. ],
  9863. "authors": [
  9864. {
  9865. "name": "Sebastian Bergmann",
  9866. "email": "sebastian@phpunit.de",
  9867. "role": "lead"
  9868. }
  9869. ],
  9870. "description": "Library for calculating the complexity of PHP code units",
  9871. "homepage": "https://github.com/sebastianbergmann/complexity",
  9872. "support": {
  9873. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9874. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9875. },
  9876. "funding": [
  9877. {
  9878. "url": "https://github.com/sebastianbergmann",
  9879. "type": "github"
  9880. }
  9881. ],
  9882. "time": "2023-12-22T06:19:30+00:00"
  9883. },
  9884. {
  9885. "name": "sebastian/diff",
  9886. "version": "4.0.6",
  9887. "source": {
  9888. "type": "git",
  9889. "url": "https://github.com/sebastianbergmann/diff.git",
  9890. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9891. },
  9892. "dist": {
  9893. "type": "zip",
  9894. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9895. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9896. "shasum": ""
  9897. },
  9898. "require": {
  9899. "php": ">=7.3"
  9900. },
  9901. "require-dev": {
  9902. "phpunit/phpunit": "^9.3",
  9903. "symfony/process": "^4.2 || ^5"
  9904. },
  9905. "type": "library",
  9906. "extra": {
  9907. "branch-alias": {
  9908. "dev-master": "4.0-dev"
  9909. }
  9910. },
  9911. "autoload": {
  9912. "classmap": [
  9913. "src/"
  9914. ]
  9915. },
  9916. "notification-url": "https://packagist.org/downloads/",
  9917. "license": [
  9918. "BSD-3-Clause"
  9919. ],
  9920. "authors": [
  9921. {
  9922. "name": "Sebastian Bergmann",
  9923. "email": "sebastian@phpunit.de"
  9924. },
  9925. {
  9926. "name": "Kore Nordmann",
  9927. "email": "mail@kore-nordmann.de"
  9928. }
  9929. ],
  9930. "description": "Diff implementation",
  9931. "homepage": "https://github.com/sebastianbergmann/diff",
  9932. "keywords": [
  9933. "diff",
  9934. "udiff",
  9935. "unidiff",
  9936. "unified diff"
  9937. ],
  9938. "support": {
  9939. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9940. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9941. },
  9942. "funding": [
  9943. {
  9944. "url": "https://github.com/sebastianbergmann",
  9945. "type": "github"
  9946. }
  9947. ],
  9948. "time": "2024-03-02T06:30:58+00:00"
  9949. },
  9950. {
  9951. "name": "sebastian/environment",
  9952. "version": "5.1.5",
  9953. "source": {
  9954. "type": "git",
  9955. "url": "https://github.com/sebastianbergmann/environment.git",
  9956. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9957. },
  9958. "dist": {
  9959. "type": "zip",
  9960. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9961. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9962. "shasum": ""
  9963. },
  9964. "require": {
  9965. "php": ">=7.3"
  9966. },
  9967. "require-dev": {
  9968. "phpunit/phpunit": "^9.3"
  9969. },
  9970. "suggest": {
  9971. "ext-posix": "*"
  9972. },
  9973. "type": "library",
  9974. "extra": {
  9975. "branch-alias": {
  9976. "dev-master": "5.1-dev"
  9977. }
  9978. },
  9979. "autoload": {
  9980. "classmap": [
  9981. "src/"
  9982. ]
  9983. },
  9984. "notification-url": "https://packagist.org/downloads/",
  9985. "license": [
  9986. "BSD-3-Clause"
  9987. ],
  9988. "authors": [
  9989. {
  9990. "name": "Sebastian Bergmann",
  9991. "email": "sebastian@phpunit.de"
  9992. }
  9993. ],
  9994. "description": "Provides functionality to handle HHVM/PHP environments",
  9995. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9996. "keywords": [
  9997. "Xdebug",
  9998. "environment",
  9999. "hhvm"
  10000. ],
  10001. "support": {
  10002. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10003. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10004. },
  10005. "funding": [
  10006. {
  10007. "url": "https://github.com/sebastianbergmann",
  10008. "type": "github"
  10009. }
  10010. ],
  10011. "time": "2023-02-03T06:03:51+00:00"
  10012. },
  10013. {
  10014. "name": "sebastian/exporter",
  10015. "version": "4.0.6",
  10016. "source": {
  10017. "type": "git",
  10018. "url": "https://github.com/sebastianbergmann/exporter.git",
  10019. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  10020. },
  10021. "dist": {
  10022. "type": "zip",
  10023. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  10024. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  10025. "shasum": ""
  10026. },
  10027. "require": {
  10028. "php": ">=7.3",
  10029. "sebastian/recursion-context": "^4.0"
  10030. },
  10031. "require-dev": {
  10032. "ext-mbstring": "*",
  10033. "phpunit/phpunit": "^9.3"
  10034. },
  10035. "type": "library",
  10036. "extra": {
  10037. "branch-alias": {
  10038. "dev-master": "4.0-dev"
  10039. }
  10040. },
  10041. "autoload": {
  10042. "classmap": [
  10043. "src/"
  10044. ]
  10045. },
  10046. "notification-url": "https://packagist.org/downloads/",
  10047. "license": [
  10048. "BSD-3-Clause"
  10049. ],
  10050. "authors": [
  10051. {
  10052. "name": "Sebastian Bergmann",
  10053. "email": "sebastian@phpunit.de"
  10054. },
  10055. {
  10056. "name": "Jeff Welch",
  10057. "email": "whatthejeff@gmail.com"
  10058. },
  10059. {
  10060. "name": "Volker Dusch",
  10061. "email": "github@wallbash.com"
  10062. },
  10063. {
  10064. "name": "Adam Harvey",
  10065. "email": "aharvey@php.net"
  10066. },
  10067. {
  10068. "name": "Bernhard Schussek",
  10069. "email": "bschussek@gmail.com"
  10070. }
  10071. ],
  10072. "description": "Provides the functionality to export PHP variables for visualization",
  10073. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10074. "keywords": [
  10075. "export",
  10076. "exporter"
  10077. ],
  10078. "support": {
  10079. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10080. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  10081. },
  10082. "funding": [
  10083. {
  10084. "url": "https://github.com/sebastianbergmann",
  10085. "type": "github"
  10086. }
  10087. ],
  10088. "time": "2024-03-02T06:33:00+00:00"
  10089. },
  10090. {
  10091. "name": "sebastian/global-state",
  10092. "version": "5.0.7",
  10093. "source": {
  10094. "type": "git",
  10095. "url": "https://github.com/sebastianbergmann/global-state.git",
  10096. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  10097. },
  10098. "dist": {
  10099. "type": "zip",
  10100. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10101. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10102. "shasum": ""
  10103. },
  10104. "require": {
  10105. "php": ">=7.3",
  10106. "sebastian/object-reflector": "^2.0",
  10107. "sebastian/recursion-context": "^4.0"
  10108. },
  10109. "require-dev": {
  10110. "ext-dom": "*",
  10111. "phpunit/phpunit": "^9.3"
  10112. },
  10113. "suggest": {
  10114. "ext-uopz": "*"
  10115. },
  10116. "type": "library",
  10117. "extra": {
  10118. "branch-alias": {
  10119. "dev-master": "5.0-dev"
  10120. }
  10121. },
  10122. "autoload": {
  10123. "classmap": [
  10124. "src/"
  10125. ]
  10126. },
  10127. "notification-url": "https://packagist.org/downloads/",
  10128. "license": [
  10129. "BSD-3-Clause"
  10130. ],
  10131. "authors": [
  10132. {
  10133. "name": "Sebastian Bergmann",
  10134. "email": "sebastian@phpunit.de"
  10135. }
  10136. ],
  10137. "description": "Snapshotting of global state",
  10138. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10139. "keywords": [
  10140. "global state"
  10141. ],
  10142. "support": {
  10143. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10144. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  10145. },
  10146. "funding": [
  10147. {
  10148. "url": "https://github.com/sebastianbergmann",
  10149. "type": "github"
  10150. }
  10151. ],
  10152. "time": "2024-03-02T06:35:11+00:00"
  10153. },
  10154. {
  10155. "name": "sebastian/lines-of-code",
  10156. "version": "1.0.4",
  10157. "source": {
  10158. "type": "git",
  10159. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10160. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10161. },
  10162. "dist": {
  10163. "type": "zip",
  10164. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10165. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10166. "shasum": ""
  10167. },
  10168. "require": {
  10169. "nikic/php-parser": "^4.18 || ^5.0",
  10170. "php": ">=7.3"
  10171. },
  10172. "require-dev": {
  10173. "phpunit/phpunit": "^9.3"
  10174. },
  10175. "type": "library",
  10176. "extra": {
  10177. "branch-alias": {
  10178. "dev-master": "1.0-dev"
  10179. }
  10180. },
  10181. "autoload": {
  10182. "classmap": [
  10183. "src/"
  10184. ]
  10185. },
  10186. "notification-url": "https://packagist.org/downloads/",
  10187. "license": [
  10188. "BSD-3-Clause"
  10189. ],
  10190. "authors": [
  10191. {
  10192. "name": "Sebastian Bergmann",
  10193. "email": "sebastian@phpunit.de",
  10194. "role": "lead"
  10195. }
  10196. ],
  10197. "description": "Library for counting the lines of code in PHP source code",
  10198. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10199. "support": {
  10200. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10201. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10202. },
  10203. "funding": [
  10204. {
  10205. "url": "https://github.com/sebastianbergmann",
  10206. "type": "github"
  10207. }
  10208. ],
  10209. "time": "2023-12-22T06:20:34+00:00"
  10210. },
  10211. {
  10212. "name": "sebastian/object-enumerator",
  10213. "version": "4.0.4",
  10214. "source": {
  10215. "type": "git",
  10216. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10217. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10218. },
  10219. "dist": {
  10220. "type": "zip",
  10221. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10222. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10223. "shasum": ""
  10224. },
  10225. "require": {
  10226. "php": ">=7.3",
  10227. "sebastian/object-reflector": "^2.0",
  10228. "sebastian/recursion-context": "^4.0"
  10229. },
  10230. "require-dev": {
  10231. "phpunit/phpunit": "^9.3"
  10232. },
  10233. "type": "library",
  10234. "extra": {
  10235. "branch-alias": {
  10236. "dev-master": "4.0-dev"
  10237. }
  10238. },
  10239. "autoload": {
  10240. "classmap": [
  10241. "src/"
  10242. ]
  10243. },
  10244. "notification-url": "https://packagist.org/downloads/",
  10245. "license": [
  10246. "BSD-3-Clause"
  10247. ],
  10248. "authors": [
  10249. {
  10250. "name": "Sebastian Bergmann",
  10251. "email": "sebastian@phpunit.de"
  10252. }
  10253. ],
  10254. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10255. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10256. "support": {
  10257. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10258. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10259. },
  10260. "funding": [
  10261. {
  10262. "url": "https://github.com/sebastianbergmann",
  10263. "type": "github"
  10264. }
  10265. ],
  10266. "time": "2020-10-26T13:12:34+00:00"
  10267. },
  10268. {
  10269. "name": "sebastian/object-reflector",
  10270. "version": "2.0.4",
  10271. "source": {
  10272. "type": "git",
  10273. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10274. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10275. },
  10276. "dist": {
  10277. "type": "zip",
  10278. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10279. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10280. "shasum": ""
  10281. },
  10282. "require": {
  10283. "php": ">=7.3"
  10284. },
  10285. "require-dev": {
  10286. "phpunit/phpunit": "^9.3"
  10287. },
  10288. "type": "library",
  10289. "extra": {
  10290. "branch-alias": {
  10291. "dev-master": "2.0-dev"
  10292. }
  10293. },
  10294. "autoload": {
  10295. "classmap": [
  10296. "src/"
  10297. ]
  10298. },
  10299. "notification-url": "https://packagist.org/downloads/",
  10300. "license": [
  10301. "BSD-3-Clause"
  10302. ],
  10303. "authors": [
  10304. {
  10305. "name": "Sebastian Bergmann",
  10306. "email": "sebastian@phpunit.de"
  10307. }
  10308. ],
  10309. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10310. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10311. "support": {
  10312. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10313. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10314. },
  10315. "funding": [
  10316. {
  10317. "url": "https://github.com/sebastianbergmann",
  10318. "type": "github"
  10319. }
  10320. ],
  10321. "time": "2020-10-26T13:14:26+00:00"
  10322. },
  10323. {
  10324. "name": "sebastian/recursion-context",
  10325. "version": "4.0.5",
  10326. "source": {
  10327. "type": "git",
  10328. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10329. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10330. },
  10331. "dist": {
  10332. "type": "zip",
  10333. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10334. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10335. "shasum": ""
  10336. },
  10337. "require": {
  10338. "php": ">=7.3"
  10339. },
  10340. "require-dev": {
  10341. "phpunit/phpunit": "^9.3"
  10342. },
  10343. "type": "library",
  10344. "extra": {
  10345. "branch-alias": {
  10346. "dev-master": "4.0-dev"
  10347. }
  10348. },
  10349. "autoload": {
  10350. "classmap": [
  10351. "src/"
  10352. ]
  10353. },
  10354. "notification-url": "https://packagist.org/downloads/",
  10355. "license": [
  10356. "BSD-3-Clause"
  10357. ],
  10358. "authors": [
  10359. {
  10360. "name": "Sebastian Bergmann",
  10361. "email": "sebastian@phpunit.de"
  10362. },
  10363. {
  10364. "name": "Jeff Welch",
  10365. "email": "whatthejeff@gmail.com"
  10366. },
  10367. {
  10368. "name": "Adam Harvey",
  10369. "email": "aharvey@php.net"
  10370. }
  10371. ],
  10372. "description": "Provides functionality to recursively process PHP variables",
  10373. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10374. "support": {
  10375. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10376. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10377. },
  10378. "funding": [
  10379. {
  10380. "url": "https://github.com/sebastianbergmann",
  10381. "type": "github"
  10382. }
  10383. ],
  10384. "time": "2023-02-03T06:07:39+00:00"
  10385. },
  10386. {
  10387. "name": "sebastian/resource-operations",
  10388. "version": "3.0.4",
  10389. "source": {
  10390. "type": "git",
  10391. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10392. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10393. },
  10394. "dist": {
  10395. "type": "zip",
  10396. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10397. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10398. "shasum": ""
  10399. },
  10400. "require": {
  10401. "php": ">=7.3"
  10402. },
  10403. "require-dev": {
  10404. "phpunit/phpunit": "^9.0"
  10405. },
  10406. "type": "library",
  10407. "extra": {
  10408. "branch-alias": {
  10409. "dev-main": "3.0-dev"
  10410. }
  10411. },
  10412. "autoload": {
  10413. "classmap": [
  10414. "src/"
  10415. ]
  10416. },
  10417. "notification-url": "https://packagist.org/downloads/",
  10418. "license": [
  10419. "BSD-3-Clause"
  10420. ],
  10421. "authors": [
  10422. {
  10423. "name": "Sebastian Bergmann",
  10424. "email": "sebastian@phpunit.de"
  10425. }
  10426. ],
  10427. "description": "Provides a list of PHP built-in functions that operate on resources",
  10428. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10429. "support": {
  10430. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10431. },
  10432. "funding": [
  10433. {
  10434. "url": "https://github.com/sebastianbergmann",
  10435. "type": "github"
  10436. }
  10437. ],
  10438. "time": "2024-03-14T16:00:52+00:00"
  10439. },
  10440. {
  10441. "name": "sebastian/type",
  10442. "version": "3.2.1",
  10443. "source": {
  10444. "type": "git",
  10445. "url": "https://github.com/sebastianbergmann/type.git",
  10446. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10447. },
  10448. "dist": {
  10449. "type": "zip",
  10450. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10451. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10452. "shasum": ""
  10453. },
  10454. "require": {
  10455. "php": ">=7.3"
  10456. },
  10457. "require-dev": {
  10458. "phpunit/phpunit": "^9.5"
  10459. },
  10460. "type": "library",
  10461. "extra": {
  10462. "branch-alias": {
  10463. "dev-master": "3.2-dev"
  10464. }
  10465. },
  10466. "autoload": {
  10467. "classmap": [
  10468. "src/"
  10469. ]
  10470. },
  10471. "notification-url": "https://packagist.org/downloads/",
  10472. "license": [
  10473. "BSD-3-Clause"
  10474. ],
  10475. "authors": [
  10476. {
  10477. "name": "Sebastian Bergmann",
  10478. "email": "sebastian@phpunit.de",
  10479. "role": "lead"
  10480. }
  10481. ],
  10482. "description": "Collection of value objects that represent the types of the PHP type system",
  10483. "homepage": "https://github.com/sebastianbergmann/type",
  10484. "support": {
  10485. "issues": "https://github.com/sebastianbergmann/type/issues",
  10486. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10487. },
  10488. "funding": [
  10489. {
  10490. "url": "https://github.com/sebastianbergmann",
  10491. "type": "github"
  10492. }
  10493. ],
  10494. "time": "2023-02-03T06:13:03+00:00"
  10495. },
  10496. {
  10497. "name": "sebastian/version",
  10498. "version": "3.0.2",
  10499. "source": {
  10500. "type": "git",
  10501. "url": "https://github.com/sebastianbergmann/version.git",
  10502. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10503. },
  10504. "dist": {
  10505. "type": "zip",
  10506. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10507. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10508. "shasum": ""
  10509. },
  10510. "require": {
  10511. "php": ">=7.3"
  10512. },
  10513. "type": "library",
  10514. "extra": {
  10515. "branch-alias": {
  10516. "dev-master": "3.0-dev"
  10517. }
  10518. },
  10519. "autoload": {
  10520. "classmap": [
  10521. "src/"
  10522. ]
  10523. },
  10524. "notification-url": "https://packagist.org/downloads/",
  10525. "license": [
  10526. "BSD-3-Clause"
  10527. ],
  10528. "authors": [
  10529. {
  10530. "name": "Sebastian Bergmann",
  10531. "email": "sebastian@phpunit.de",
  10532. "role": "lead"
  10533. }
  10534. ],
  10535. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10536. "homepage": "https://github.com/sebastianbergmann/version",
  10537. "support": {
  10538. "issues": "https://github.com/sebastianbergmann/version/issues",
  10539. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10540. },
  10541. "funding": [
  10542. {
  10543. "url": "https://github.com/sebastianbergmann",
  10544. "type": "github"
  10545. }
  10546. ],
  10547. "time": "2020-09-28T06:39:44+00:00"
  10548. },
  10549. {
  10550. "name": "symfony/browser-kit",
  10551. "version": "v7.1.1",
  10552. "source": {
  10553. "type": "git",
  10554. "url": "https://github.com/symfony/browser-kit.git",
  10555. "reference": "9c13742e3175b5815e272b981876ae329bec2040"
  10556. },
  10557. "dist": {
  10558. "type": "zip",
  10559. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9c13742e3175b5815e272b981876ae329bec2040",
  10560. "reference": "9c13742e3175b5815e272b981876ae329bec2040",
  10561. "shasum": ""
  10562. },
  10563. "require": {
  10564. "php": ">=8.2",
  10565. "symfony/dom-crawler": "^6.4|^7.0"
  10566. },
  10567. "require-dev": {
  10568. "symfony/css-selector": "^6.4|^7.0",
  10569. "symfony/http-client": "^6.4|^7.0",
  10570. "symfony/mime": "^6.4|^7.0",
  10571. "symfony/process": "^6.4|^7.0"
  10572. },
  10573. "type": "library",
  10574. "autoload": {
  10575. "psr-4": {
  10576. "Symfony\\Component\\BrowserKit\\": ""
  10577. },
  10578. "exclude-from-classmap": [
  10579. "/Tests/"
  10580. ]
  10581. },
  10582. "notification-url": "https://packagist.org/downloads/",
  10583. "license": [
  10584. "MIT"
  10585. ],
  10586. "authors": [
  10587. {
  10588. "name": "Fabien Potencier",
  10589. "email": "fabien@symfony.com"
  10590. },
  10591. {
  10592. "name": "Symfony Community",
  10593. "homepage": "https://symfony.com/contributors"
  10594. }
  10595. ],
  10596. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10597. "homepage": "https://symfony.com",
  10598. "support": {
  10599. "source": "https://github.com/symfony/browser-kit/tree/v7.1.1"
  10600. },
  10601. "funding": [
  10602. {
  10603. "url": "https://symfony.com/sponsor",
  10604. "type": "custom"
  10605. },
  10606. {
  10607. "url": "https://github.com/fabpot",
  10608. "type": "github"
  10609. },
  10610. {
  10611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10612. "type": "tidelift"
  10613. }
  10614. ],
  10615. "time": "2024-05-31T14:57:53+00:00"
  10616. },
  10617. {
  10618. "name": "symfony/css-selector",
  10619. "version": "v7.1.1",
  10620. "source": {
  10621. "type": "git",
  10622. "url": "https://github.com/symfony/css-selector.git",
  10623. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  10624. },
  10625. "dist": {
  10626. "type": "zip",
  10627. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  10628. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  10629. "shasum": ""
  10630. },
  10631. "require": {
  10632. "php": ">=8.2"
  10633. },
  10634. "type": "library",
  10635. "autoload": {
  10636. "psr-4": {
  10637. "Symfony\\Component\\CssSelector\\": ""
  10638. },
  10639. "exclude-from-classmap": [
  10640. "/Tests/"
  10641. ]
  10642. },
  10643. "notification-url": "https://packagist.org/downloads/",
  10644. "license": [
  10645. "MIT"
  10646. ],
  10647. "authors": [
  10648. {
  10649. "name": "Fabien Potencier",
  10650. "email": "fabien@symfony.com"
  10651. },
  10652. {
  10653. "name": "Jean-François Simon",
  10654. "email": "jeanfrancois.simon@sensiolabs.com"
  10655. },
  10656. {
  10657. "name": "Symfony Community",
  10658. "homepage": "https://symfony.com/contributors"
  10659. }
  10660. ],
  10661. "description": "Converts CSS selectors to XPath expressions",
  10662. "homepage": "https://symfony.com",
  10663. "support": {
  10664. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  10665. },
  10666. "funding": [
  10667. {
  10668. "url": "https://symfony.com/sponsor",
  10669. "type": "custom"
  10670. },
  10671. {
  10672. "url": "https://github.com/fabpot",
  10673. "type": "github"
  10674. },
  10675. {
  10676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10677. "type": "tidelift"
  10678. }
  10679. ],
  10680. "time": "2024-05-31T14:57:53+00:00"
  10681. },
  10682. {
  10683. "name": "symfony/debug-bundle",
  10684. "version": "v7.1.1",
  10685. "source": {
  10686. "type": "git",
  10687. "url": "https://github.com/symfony/debug-bundle.git",
  10688. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f"
  10689. },
  10690. "dist": {
  10691. "type": "zip",
  10692. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/aa024d28ce7ce0c6a16ee57c066838bece92893f",
  10693. "reference": "aa024d28ce7ce0c6a16ee57c066838bece92893f",
  10694. "shasum": ""
  10695. },
  10696. "require": {
  10697. "ext-xml": "*",
  10698. "php": ">=8.2",
  10699. "symfony/dependency-injection": "^6.4|^7.0",
  10700. "symfony/http-kernel": "^6.4|^7.0",
  10701. "symfony/twig-bridge": "^6.4|^7.0",
  10702. "symfony/var-dumper": "^6.4|^7.0"
  10703. },
  10704. "conflict": {
  10705. "symfony/config": "<6.4",
  10706. "symfony/dependency-injection": "<6.4"
  10707. },
  10708. "require-dev": {
  10709. "symfony/config": "^6.4|^7.0",
  10710. "symfony/web-profiler-bundle": "^6.4|^7.0"
  10711. },
  10712. "type": "symfony-bundle",
  10713. "autoload": {
  10714. "psr-4": {
  10715. "Symfony\\Bundle\\DebugBundle\\": ""
  10716. },
  10717. "exclude-from-classmap": [
  10718. "/Tests/"
  10719. ]
  10720. },
  10721. "notification-url": "https://packagist.org/downloads/",
  10722. "license": [
  10723. "MIT"
  10724. ],
  10725. "authors": [
  10726. {
  10727. "name": "Fabien Potencier",
  10728. "email": "fabien@symfony.com"
  10729. },
  10730. {
  10731. "name": "Symfony Community",
  10732. "homepage": "https://symfony.com/contributors"
  10733. }
  10734. ],
  10735. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10736. "homepage": "https://symfony.com",
  10737. "support": {
  10738. "source": "https://github.com/symfony/debug-bundle/tree/v7.1.1"
  10739. },
  10740. "funding": [
  10741. {
  10742. "url": "https://symfony.com/sponsor",
  10743. "type": "custom"
  10744. },
  10745. {
  10746. "url": "https://github.com/fabpot",
  10747. "type": "github"
  10748. },
  10749. {
  10750. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10751. "type": "tidelift"
  10752. }
  10753. ],
  10754. "time": "2024-05-31T14:55:39+00:00"
  10755. },
  10756. {
  10757. "name": "symfony/dom-crawler",
  10758. "version": "v7.1.5",
  10759. "source": {
  10760. "type": "git",
  10761. "url": "https://github.com/symfony/dom-crawler.git",
  10762. "reference": "b92af238457a7cdd2738f941cd525d76313e8283"
  10763. },
  10764. "dist": {
  10765. "type": "zip",
  10766. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b92af238457a7cdd2738f941cd525d76313e8283",
  10767. "reference": "b92af238457a7cdd2738f941cd525d76313e8283",
  10768. "shasum": ""
  10769. },
  10770. "require": {
  10771. "masterminds/html5": "^2.6",
  10772. "php": ">=8.2",
  10773. "symfony/polyfill-ctype": "~1.8",
  10774. "symfony/polyfill-mbstring": "~1.0"
  10775. },
  10776. "require-dev": {
  10777. "symfony/css-selector": "^6.4|^7.0"
  10778. },
  10779. "type": "library",
  10780. "autoload": {
  10781. "psr-4": {
  10782. "Symfony\\Component\\DomCrawler\\": ""
  10783. },
  10784. "exclude-from-classmap": [
  10785. "/Tests/"
  10786. ]
  10787. },
  10788. "notification-url": "https://packagist.org/downloads/",
  10789. "license": [
  10790. "MIT"
  10791. ],
  10792. "authors": [
  10793. {
  10794. "name": "Fabien Potencier",
  10795. "email": "fabien@symfony.com"
  10796. },
  10797. {
  10798. "name": "Symfony Community",
  10799. "homepage": "https://symfony.com/contributors"
  10800. }
  10801. ],
  10802. "description": "Eases DOM navigation for HTML and XML documents",
  10803. "homepage": "https://symfony.com",
  10804. "support": {
  10805. "source": "https://github.com/symfony/dom-crawler/tree/v7.1.5"
  10806. },
  10807. "funding": [
  10808. {
  10809. "url": "https://symfony.com/sponsor",
  10810. "type": "custom"
  10811. },
  10812. {
  10813. "url": "https://github.com/fabpot",
  10814. "type": "github"
  10815. },
  10816. {
  10817. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10818. "type": "tidelift"
  10819. }
  10820. ],
  10821. "time": "2024-09-15T06:48:17+00:00"
  10822. },
  10823. {
  10824. "name": "symfony/maker-bundle",
  10825. "version": "v1.61.0",
  10826. "source": {
  10827. "type": "git",
  10828. "url": "https://github.com/symfony/maker-bundle.git",
  10829. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18"
  10830. },
  10831. "dist": {
  10832. "type": "zip",
  10833. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  10834. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  10835. "shasum": ""
  10836. },
  10837. "require": {
  10838. "doctrine/inflector": "^2.0",
  10839. "nikic/php-parser": "^4.18|^5.0",
  10840. "php": ">=8.1",
  10841. "symfony/config": "^6.4|^7.0",
  10842. "symfony/console": "^6.4|^7.0",
  10843. "symfony/dependency-injection": "^6.4|^7.0",
  10844. "symfony/deprecation-contracts": "^2.2|^3",
  10845. "symfony/filesystem": "^6.4|^7.0",
  10846. "symfony/finder": "^6.4|^7.0",
  10847. "symfony/framework-bundle": "^6.4|^7.0",
  10848. "symfony/http-kernel": "^6.4|^7.0",
  10849. "symfony/process": "^6.4|^7.0"
  10850. },
  10851. "conflict": {
  10852. "doctrine/doctrine-bundle": "<2.10",
  10853. "doctrine/orm": "<2.15"
  10854. },
  10855. "require-dev": {
  10856. "composer/semver": "^3.0",
  10857. "doctrine/doctrine-bundle": "^2.5.0",
  10858. "doctrine/orm": "^2.15|^3",
  10859. "symfony/http-client": "^6.4|^7.0",
  10860. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  10861. "symfony/security-core": "^6.4|^7.0",
  10862. "symfony/yaml": "^6.4|^7.0",
  10863. "twig/twig": "^3.0|^4.x-dev"
  10864. },
  10865. "type": "symfony-bundle",
  10866. "extra": {
  10867. "branch-alias": {
  10868. "dev-main": "1.x-dev"
  10869. }
  10870. },
  10871. "autoload": {
  10872. "psr-4": {
  10873. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10874. }
  10875. },
  10876. "notification-url": "https://packagist.org/downloads/",
  10877. "license": [
  10878. "MIT"
  10879. ],
  10880. "authors": [
  10881. {
  10882. "name": "Symfony Community",
  10883. "homepage": "https://symfony.com/contributors"
  10884. }
  10885. ],
  10886. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10887. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10888. "keywords": [
  10889. "code generator",
  10890. "dev",
  10891. "generator",
  10892. "scaffold",
  10893. "scaffolding"
  10894. ],
  10895. "support": {
  10896. "issues": "https://github.com/symfony/maker-bundle/issues",
  10897. "source": "https://github.com/symfony/maker-bundle/tree/v1.61.0"
  10898. },
  10899. "funding": [
  10900. {
  10901. "url": "https://symfony.com/sponsor",
  10902. "type": "custom"
  10903. },
  10904. {
  10905. "url": "https://github.com/fabpot",
  10906. "type": "github"
  10907. },
  10908. {
  10909. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10910. "type": "tidelift"
  10911. }
  10912. ],
  10913. "time": "2024-08-29T22:50:23+00:00"
  10914. },
  10915. {
  10916. "name": "symfony/phpunit-bridge",
  10917. "version": "v7.1.4",
  10918. "source": {
  10919. "type": "git",
  10920. "url": "https://github.com/symfony/phpunit-bridge.git",
  10921. "reference": "e876eb90e32a8fc4c4911d458e09f88d65877d1c"
  10922. },
  10923. "dist": {
  10924. "type": "zip",
  10925. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/e876eb90e32a8fc4c4911d458e09f88d65877d1c",
  10926. "reference": "e876eb90e32a8fc4c4911d458e09f88d65877d1c",
  10927. "shasum": ""
  10928. },
  10929. "require": {
  10930. "php": ">=7.2.5"
  10931. },
  10932. "conflict": {
  10933. "phpunit/phpunit": "<7.5|9.1.2"
  10934. },
  10935. "require-dev": {
  10936. "symfony/deprecation-contracts": "^2.5|^3.0",
  10937. "symfony/error-handler": "^5.4|^6.4|^7.0",
  10938. "symfony/polyfill-php81": "^1.27"
  10939. },
  10940. "bin": [
  10941. "bin/simple-phpunit"
  10942. ],
  10943. "type": "symfony-bridge",
  10944. "extra": {
  10945. "thanks": {
  10946. "name": "phpunit/phpunit",
  10947. "url": "https://github.com/sebastianbergmann/phpunit"
  10948. }
  10949. },
  10950. "autoload": {
  10951. "files": [
  10952. "bootstrap.php"
  10953. ],
  10954. "psr-4": {
  10955. "Symfony\\Bridge\\PhpUnit\\": ""
  10956. },
  10957. "exclude-from-classmap": [
  10958. "/Tests/",
  10959. "/bin/"
  10960. ]
  10961. },
  10962. "notification-url": "https://packagist.org/downloads/",
  10963. "license": [
  10964. "MIT"
  10965. ],
  10966. "authors": [
  10967. {
  10968. "name": "Nicolas Grekas",
  10969. "email": "p@tchwork.com"
  10970. },
  10971. {
  10972. "name": "Symfony Community",
  10973. "homepage": "https://symfony.com/contributors"
  10974. }
  10975. ],
  10976. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  10977. "homepage": "https://symfony.com",
  10978. "support": {
  10979. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.1.4"
  10980. },
  10981. "funding": [
  10982. {
  10983. "url": "https://symfony.com/sponsor",
  10984. "type": "custom"
  10985. },
  10986. {
  10987. "url": "https://github.com/fabpot",
  10988. "type": "github"
  10989. },
  10990. {
  10991. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10992. "type": "tidelift"
  10993. }
  10994. ],
  10995. "time": "2024-08-13T14:28:19+00:00"
  10996. },
  10997. {
  10998. "name": "symfony/web-profiler-bundle",
  10999. "version": "v7.1.4",
  11000. "source": {
  11001. "type": "git",
  11002. "url": "https://github.com/symfony/web-profiler-bundle.git",
  11003. "reference": "3cfc775277a8f2dacdd0f72d196bc87b272a763f"
  11004. },
  11005. "dist": {
  11006. "type": "zip",
  11007. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/3cfc775277a8f2dacdd0f72d196bc87b272a763f",
  11008. "reference": "3cfc775277a8f2dacdd0f72d196bc87b272a763f",
  11009. "shasum": ""
  11010. },
  11011. "require": {
  11012. "php": ">=8.2",
  11013. "symfony/config": "^6.4|^7.0",
  11014. "symfony/framework-bundle": "^6.4|^7.0",
  11015. "symfony/http-kernel": "^6.4|^7.0",
  11016. "symfony/routing": "^6.4|^7.0",
  11017. "symfony/twig-bundle": "^6.4|^7.0",
  11018. "twig/twig": "^3.10"
  11019. },
  11020. "conflict": {
  11021. "symfony/form": "<6.4",
  11022. "symfony/mailer": "<6.4",
  11023. "symfony/messenger": "<6.4"
  11024. },
  11025. "require-dev": {
  11026. "symfony/browser-kit": "^6.4|^7.0",
  11027. "symfony/console": "^6.4|^7.0",
  11028. "symfony/css-selector": "^6.4|^7.0",
  11029. "symfony/stopwatch": "^6.4|^7.0"
  11030. },
  11031. "type": "symfony-bundle",
  11032. "autoload": {
  11033. "psr-4": {
  11034. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  11035. },
  11036. "exclude-from-classmap": [
  11037. "/Tests/"
  11038. ]
  11039. },
  11040. "notification-url": "https://packagist.org/downloads/",
  11041. "license": [
  11042. "MIT"
  11043. ],
  11044. "authors": [
  11045. {
  11046. "name": "Fabien Potencier",
  11047. "email": "fabien@symfony.com"
  11048. },
  11049. {
  11050. "name": "Symfony Community",
  11051. "homepage": "https://symfony.com/contributors"
  11052. }
  11053. ],
  11054. "description": "Provides a development tool that gives detailed information about the execution of any request",
  11055. "homepage": "https://symfony.com",
  11056. "keywords": [
  11057. "dev"
  11058. ],
  11059. "support": {
  11060. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.1.4"
  11061. },
  11062. "funding": [
  11063. {
  11064. "url": "https://symfony.com/sponsor",
  11065. "type": "custom"
  11066. },
  11067. {
  11068. "url": "https://github.com/fabpot",
  11069. "type": "github"
  11070. },
  11071. {
  11072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11073. "type": "tidelift"
  11074. }
  11075. ],
  11076. "time": "2024-08-12T09:59:40+00:00"
  11077. },
  11078. {
  11079. "name": "theseer/tokenizer",
  11080. "version": "1.2.3",
  11081. "source": {
  11082. "type": "git",
  11083. "url": "https://github.com/theseer/tokenizer.git",
  11084. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11085. },
  11086. "dist": {
  11087. "type": "zip",
  11088. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11089. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11090. "shasum": ""
  11091. },
  11092. "require": {
  11093. "ext-dom": "*",
  11094. "ext-tokenizer": "*",
  11095. "ext-xmlwriter": "*",
  11096. "php": "^7.2 || ^8.0"
  11097. },
  11098. "type": "library",
  11099. "autoload": {
  11100. "classmap": [
  11101. "src/"
  11102. ]
  11103. },
  11104. "notification-url": "https://packagist.org/downloads/",
  11105. "license": [
  11106. "BSD-3-Clause"
  11107. ],
  11108. "authors": [
  11109. {
  11110. "name": "Arne Blankerts",
  11111. "email": "arne@blankerts.de",
  11112. "role": "Developer"
  11113. }
  11114. ],
  11115. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11116. "support": {
  11117. "issues": "https://github.com/theseer/tokenizer/issues",
  11118. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11119. },
  11120. "funding": [
  11121. {
  11122. "url": "https://github.com/theseer",
  11123. "type": "github"
  11124. }
  11125. ],
  11126. "time": "2024-03-03T12:36:25+00:00"
  11127. }
  11128. ],
  11129. "aliases": [],
  11130. "minimum-stability": "stable",
  11131. "stability-flags": [],
  11132. "prefer-stable": true,
  11133. "prefer-lowest": false,
  11134. "platform": {
  11135. "php": ">=8.2",
  11136. "ext-ctype": "*",
  11137. "ext-iconv": "*"
  11138. },
  11139. "platform-dev": [],
  11140. "plugin-api-version": "2.6.0"
  11141. }